[jira] [Resolved] (FLEX-33330) An easier way of managing the locales for the InstallApache application

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-0?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-0.
--

Resolution: Fixed

Has been donated.

 An easier way of managing the locales for the InstallApache application
 ---

 Key: FLEX-0
 URL: https://issues.apache.org/jira/browse/FLEX-0
 Project: Apache Flex
  Issue Type: Improvement
  Components: InstallApacheFlex
Reporter: Roland Zwaga
Priority: Minor
  Labels: InstallApacheFlex, utility
 Fix For: InstallApacheFlex 1.1

 Attachments: ApacheFlexInstallerLocaleEditor-v1.0.1.zip, 
 RuntimeLocale.as


 Right now updating the translation for an existing locale, or creating a new 
 locale for the InstallApache application involves quite a bit of 
 copy/pasting. While the list of locales grows this problem will grow with it, 
 IMHO.
 To try and combat this complexity I've created a small AIR application which 
 is capable of loading, parsing and editing the RuntimeLocale.as (which 
 contains all of the locale data) file of the InstallApache project.
 I'll attach both an FXP export of the FlashBuilder project as well as an AIR 
 installer for the application.
 Should folks find the app useful I'll be happy to donate the code to Apache 
 Flex.
 A huge credit goes out to Michael Schmalle who created the asblocks library 
 (https://github.com/teotigraphix/as3-commons-asblocks) which takes care of 
 the parsing and editing of actionscript source files.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33237) UIComponent#resourceManager_changeHandler() should be protected scope.

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33237?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33237:
-

Labels: easyfix  (was: )

 UIComponent#resourceManager_changeHandler() should be protected scope.
 --

 Key: FLEX-33237
 URL: https://issues.apache.org/jira/browse/FLEX-33237
 Project: Apache Flex
  Issue Type: Bug
  Components: Profiler
Affects Versions: Apache Flex 4.8 (parity release)
Reporter: Shigeru Nakagaki
Priority: Minor
  Labels: easyfix

 UIComponent add event listener at constructor with weak reference. So it may 
 be cleared sometime.
 But in profiling mode, it still exists. It is a real garbage. And it is 
 annoying to me.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33131) rendererDescriptionMap is private, should be made protected to allow customizing the grid for conditional spanning rows and columns

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33131?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33131:
-

Labels: easyfix features  (was: features)

 rendererDescriptionMap is private, should be made protected to allow 
 customizing the grid for conditional spanning rows and columns
 ---

 Key: FLEX-33131
 URL: https://issues.apache.org/jira/browse/FLEX-33131
 Project: Apache Flex
  Issue Type: New Feature
  Components: ADG:ColumnSpanning, Advanced Data Grid
Affects Versions: Adobe Flex SDK 4.6 (Release), Apache Flex Next
 Environment: All Operating Systems, General Hardware
Reporter: Ashish Desai
Priority: Minor
  Labels: easyfix, features
 Fix For: Adobe Flex SDK Next

 Attachments: LabelRenderer.as

   Original Estimate: 0.5h
  Remaining Estimate: 0.5h

 rendererDescriptionMap is a private property maintaining an internal copy of 
 the renderer descriptions in addition to the renderer provider. Making this 
 property protected can allow users to inherit this property and allow 
 conditional row and column spanning. ItemRenderers in the rendererProvider 
 Array can then use this property to conditionally set the row span or column 
 span for individual rows  columns respectively. Attached is the sample of a 
 renderer for a hacked data grid.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33120) Please check support for ExactValue initializer

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33120?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33120:
-

Labels: easyfix  (was: )

 Please check support for ExactValue initializer
 ---

 Key: FLEX-33120
 URL: https://issues.apache.org/jira/browse/FLEX-33120
 Project: Apache Flex
  Issue Type: Improvement
Reporter: Alex Harui
Priority: Minor
  Labels: easyfix
 Attachments: exactValue.patch


 I've done my own improvement for MXML to support any values for property 
 initializer WITHOUT bindings, for example:
 Was:
 TextField xmlns=flash.text.* autoSize={TextFieldAutoSize.CENTER} /
 is generated into:
 private function _MyOwnFlexFrameworkTest_TextField1_i() : flash.text.TextField
 {
 var temp : flash.text.TextField = new flash.text.TextField();
 _MyOwnFlexFrameworkTest_TextField1 = temp;
 mx.binding.BindingManager.executeBindings(this, 
 _MyOwnFlexFrameworkTest_TextField1, _MyOwnFlexFrameworkTest_TextField1);
 return temp;
 }
 //  binding mgmt
 private function _MyOwnFlexFrameworkTest_bindingsSetup():Array
 {
 var result:Array = [];
 result[0] = new mx.binding.Binding(this,
 function():String
 {
 var result:* = (TextFieldAutoSize.CENTER);
 return (result == undefined ? null : String(result));
 },
 null,
 _MyOwnFlexFrameworkTest_TextField1.autoSize
 );
 return result;
 }
 now:
 TextField xmlns=flash.text.* autoSize=${TextFieldAutoSize.CENTER} /
 give us such result:
 private function _MyOwnFlexFrameworkTest_TextField1_i() : flash.text.TextField
 {
 var temp : flash.text.TextField = new flash.text.TextField();
 temp.autoSize = TextFieldAutoSize.CENTER;
 _MyOwnFlexFrameworkTest_TextField1 = temp;
 mx.binding.BindingManager.executeBindings(this, 
 _MyOwnFlexFrameworkTest_TextField1, _MyOwnFlexFrameworkTest_TextField1);
 return temp;
 }
 this implementation is similar to twoWay bindings and written in the same way.
 btw, sorry for my English, I'm Russian.
 Thanks

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (FLEX-33117) Removing dependency to a contrib library in the MXML download/build script

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33117?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33117.
--

Resolution: Fixed

 Removing dependency to a contrib library in the MXML download/build script
 --

 Key: FLEX-33117
 URL: https://issues.apache.org/jira/browse/FLEX-33117
 Project: Apache Flex
  Issue Type: Improvement
 Environment: All systems, I guess.
Reporter: Alex Harui
Priority: Minor
  Labels: Ant,Build
 Attachments: build.patch


 the modules/downloads.xml Ant build script is relying on a contrib library 
 for performing some trivial tasks. I suggest removing this dependency because 
 less dependencies is better then more dependencies :) It complicates somewhat 
 the build process (users are requested to download and set up a contrib 
 library, which is nor automatic neither straight-forward.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33107) ValidateAll method of Validator class should return a Vector, not an array

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33107?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33107:
-

Labels: easyfix  (was: )

 ValidateAll method of Validator class should return a Vector, not an array
 --

 Key: FLEX-33107
 URL: https://issues.apache.org/jira/browse/FLEX-33107
 Project: Apache Flex
  Issue Type: Improvement
  Components: Project Management
Reporter: jeff tapper
Priority: Minor
  Labels: easyfix
   Original Estimate: 0.5h
  Remaining Estimate: 0.5h



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33420) poppedViewReturnedObject destroyed too early

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33420?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33420:
-

Labels: easyfix poppedViewReturnedObject viewActivate  (was: 
poppedViewReturnedObject viewActivate)

 poppedViewReturnedObject destroyed too early
 

 Key: FLEX-33420
 URL: https://issues.apache.org/jira/browse/FLEX-33420
 Project: Apache Flex
  Issue Type: Bug
  Components: Mobile: ViewNavigator
Affects Versions: Adobe Flex SDK 4.6 (Release)
 Environment: general
Reporter: Morten Gorm Madsen
Priority: Trivial
  Labels: easyfix, poppedViewReturnedObject, viewActivate

 Description of poppedViewReturnedObject:
 This object is guaranteed to be valid when the new view receives the 
 codeadd/code event, and is destroyed after the view receives a 
 codeviewActivate/code event./p
 The last part is wrong - poppedViewReturnedObject is destroyed BEFORE the 
 viewActivate event occurs.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (FLEX-33084) Packages

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33084?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33084.
--

Resolution: Fixed

 Packages
 

 Key: FLEX-33084
 URL: https://issues.apache.org/jira/browse/FLEX-33084
 Project: Apache Flex
  Issue Type: Question
  Components: Project Management
 Environment: SDKS
Reporter: Fernando
Priority: Trivial
   Original Estimate: 1h
  Remaining Estimate: 1h

 all packages of flex will change name?
 ex: mx.managers to org.apache.flex.managers ?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (FLEX-33237) UIComponent#resourceManager_changeHandler() should be protected scope.

2013-03-10 Thread Justin Mclean (JIRA)

[ 
https://issues.apache.org/jira/browse/FLEX-33237?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13598487#comment-13598487
 ] 

Justin Mclean commented on FLEX-33237:
--

Perhaps in removedFromStageHandler the event listener could be removed, after 
that point I don't think the component cares if the resources are changed or 
not.

 UIComponent#resourceManager_changeHandler() should be protected scope.
 --

 Key: FLEX-33237
 URL: https://issues.apache.org/jira/browse/FLEX-33237
 Project: Apache Flex
  Issue Type: Bug
  Components: Profiler
Affects Versions: Apache Flex 4.8 (parity release)
Reporter: Shigeru Nakagaki
Priority: Minor
  Labels: easyfix

 UIComponent add event listener at constructor with weak reference. So it may 
 be cleared sometime.
 But in profiling mode, it still exists. It is a real garbage. And it is 
 annoying to me.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Issue Comment Deleted] (FLEX-33092) Add NOTICE file to root

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33092?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33092:
-

Comment: was deleted

(was: NOTICE is no longer required as we now a top level project)

 Add NOTICE file to root
 ---

 Key: FLEX-33092
 URL: https://issues.apache.org/jira/browse/FLEX-33092
 Project: Apache Flex
  Issue Type: Task
Reporter: Christophe Herreman
 Attachments: NOTICE


 Some of the build scripts for the jars were updated to include the LICENSE 
 and NOTICE files. These are copied from the root dir, but the NOTICE file is 
 missing. This results in a failing build.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-22768) Comments and an assertion for calcCheckBits

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-22768?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-22768:
-

Assignee: (was: Adobe JIRA)

 Comments and an assertion for calcCheckBits
 ---

 Key: FLEX-22768
 URL: https://issues.apache.org/jira/browse/FLEX-22768
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-27388) Flex SDK should support backward compatibility for double-dot releases

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-27388?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-27388:
-

Assignee: (was: Adobe JIRA)

 Flex SDK should support backward compatibility for double-dot releases
 --

 Key: FLEX-27388
 URL: https://issues.apache.org/jira/browse/FLEX-27388
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25641) Removing (removeChild()) then re-adding (addChild()) a TextArea recalls old formatting bug fix

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25641?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25641:
-

Assignee: (was: Adobe JIRA)

 Removing (removeChild()) then re-adding (addChild()) a TextArea recalls old 
 formatting bug fix
 --

 Key: FLEX-25641
 URL: https://issues.apache.org/jira/browse/FLEX-25641
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-30458) QTP scripting cannot get value of DataGrid rows when selectable=false

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-30458?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-30458:
-

Assignee: (was: Adobe JIRA)

 QTP scripting cannot get value of DataGrid rows when selectable=false
 -

 Key: FLEX-30458
 URL: https://issues.apache.org/jira/browse/FLEX-30458
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-23489) layout.elementRemoved() should get a reference to the item/element removed

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-23489?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-23489:
-

Assignee: (was: Adobe JIRA)

 layout.elementRemoved() should get a reference to the item/element removed
 --

 Key: FLEX-23489
 URL: https://issues.apache.org/jira/browse/FLEX-23489
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25571) Ability to Draw Cubic Bezier Curves Needed

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25571:
-

Assignee: (was: Adobe JIRA)

 Ability to Draw Cubic Bezier Curves Needed
 --

 Key: FLEX-25571
 URL: https://issues.apache.org/jira/browse/FLEX-25571
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25112) Add the ability to create soft and phantom object references wrap objects

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25112?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25112:
-

Assignee: (was: Adobe JIRA)

 Add the ability to create soft and phantom object references  wrap objects
 ---

 Key: FLEX-25112
 URL: https://issues.apache.org/jira/browse/FLEX-25112
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-23457) potential fix

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-23457?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-23457:
-

Assignee: (was: Adobe JIRA)

 potential fix
 -

 Key: FLEX-23457
 URL: https://issues.apache.org/jira/browse/FLEX-23457
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-23519) potential fix

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-23519?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-23519:
-

Assignee: (was: Adobe JIRA)

 potential fix
 -

 Key: FLEX-23519
 URL: https://issues.apache.org/jira/browse/FLEX-23519
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-27665) Add the ability to remove the invalidation lifecycle

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-27665?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-27665:
-

Assignee: (was: Adobe JIRA)

 Add the ability to remove the invalidation lifecycle
 

 Key: FLEX-27665
 URL: https://issues.apache.org/jira/browse/FLEX-27665
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-23679) IFilePromise addition for Socket and FileStream please

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-23679?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-23679:
-

Assignee: (was: Adobe JIRA)

 IFilePromise addition for Socket and FileStream please
 --

 Key: FLEX-23679
 URL: https://issues.apache.org/jira/browse/FLEX-23679
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25344) The MobileIconItemRenderer and MobileItemRenderer should offer variable font sizes and multi-line support

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25344?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25344:
-

Assignee: (was: Adobe JIRA)

 The MobileIconItemRenderer and MobileItemRenderer should offer variable font 
 sizes and multi-line support
 -

 Key: FLEX-25344
 URL: https://issues.apache.org/jira/browse/FLEX-25344
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-27606) UIBackgroundModes support for iOS

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-27606?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-27606:
-

Assignee: (was: Adobe JIRA)

 UIBackgroundModes support for iOS
 -

 Key: FLEX-27606
 URL: https://issues.apache.org/jira/browse/FLEX-27606
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-28034) ListCollectionView internalRefresh not available to extended class

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-28034?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-28034:
-

Assignee: (was: Adobe JIRA)

 ListCollectionView internalRefresh not available to extended class
 --

 Key: FLEX-28034
 URL: https://issues.apache.org/jira/browse/FLEX-28034
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-26696) TypeError occured in UpdateDisplayList function of ButtonSkin.as and CheckBoxIcon.as

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-26696?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-26696:
-

Assignee: (was: Adobe JIRA)

 TypeError occured in UpdateDisplayList function of ButtonSkin.as and 
 CheckBoxIcon.as
 

 Key: FLEX-26696
 URL: https://issues.apache.org/jira/browse/FLEX-26696
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-24281) Remove the private methods in ScrollBarBase unless they are

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-24281?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-24281:
-

Assignee: (was: Adobe JIRA)

 Remove the private methods in ScrollBarBase unless they are
 ---

 Key: FLEX-24281
 URL: https://issues.apache.org/jira/browse/FLEX-24281
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-27088) [Localization:Hisoft]:ENU:Core-Function:no check when compiling mxml or as files which include custom metadata tag

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-27088?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-27088:
-

Assignee: (was: Adobe JIRA)

 [Localization:Hisoft]:ENU:Core-Function:no check when compiling mxml or as 
 files which include custom metadata tag
 --

 Key: FLEX-27088
 URL: https://issues.apache.org/jira/browse/FLEX-27088
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-24772) AIR SDK and Mac OSX Spaces

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-24772?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-24772:
-

Assignee: (was: Adobe JIRA)

 AIR SDK and Mac OSX Spaces
 --

 Key: FLEX-24772
 URL: https://issues.apache.org/jira/browse/FLEX-24772
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-27049) Support for device-width and device-height CSS Media Queries

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-27049?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-27049:
-

Assignee: (was: Adobe JIRA)

 Support for device-width and device-height CSS Media Queries
 

 Key: FLEX-27049
 URL: https://issues.apache.org/jira/browse/FLEX-27049
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-26124) Ability to horizontally scroll a wide TabBar

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-26124?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-26124:
-

Assignee: (was: Adobe JIRA)

 Ability to horizontally scroll a wide TabBar
 

 Key: FLEX-26124
 URL: https://issues.apache.org/jira/browse/FLEX-26124
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-23648) fixes tab-cycle in non-continuous radio-button layouts

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-23648?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-23648:
-

Assignee: (was: Adobe JIRA)

 fixes tab-cycle in non-continuous radio-button layouts
 --

 Key: FLEX-23648
 URL: https://issues.apache.org/jira/browse/FLEX-23648
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33007) Patch for UID change plus Patch for memory leaks

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33007?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33007:
-

Assignee: (was: Adobe JIRA)

 Patch for UID change plus Patch for memory leaks
 

 Key: FLEX-33007
 URL: https://issues.apache.org/jira/browse/FLEX-33007
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-30275) Ability to replay events on invisible objects

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-30275?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-30275:
-

Assignee: (was: Adobe JIRA)

 Ability to replay events on invisible objects
 -

 Key: FLEX-30275
 URL: https://issues.apache.org/jira/browse/FLEX-30275
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-30429) More complicated control support

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-30429?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-30429:
-

Assignee: (was: Adobe JIRA)

 More complicated control support
 

 Key: FLEX-30429
 URL: https://issues.apache.org/jira/browse/FLEX-30429
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33036) 16 bits black and white images support

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33036?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33036:
-

Assignee: (was: Adobe JIRA)

 16 bits black and white images support
 --

 Key: FLEX-33036
 URL: https://issues.apache.org/jira/browse/FLEX-33036
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-32654) Column Chart // itemClick Event // pushes an error #1034 [INSIST UPDATE to RELEASE]

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-32654?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-32654:
-

Assignee: (was: Adobe JIRA)

 Column Chart // itemClick Event // pushes an error #1034 [INSIST UPDATE to 
 RELEASE]
 ---

 Key: FLEX-32654
 URL: https://issues.apache.org/jira/browse/FLEX-32654
 Project: Apache Flex
  Issue Type: Bug
Affects Versions: Adobe Flex SDK Previous
 Environment: Affected OS(s): Windows
 Affected OS(s): Windows XP
 Language Found: English
Reporter: Adobe JIRA

 * Sudhir Manjunath: Please ACTUALLY read the issue BEFORE TAKING ACTION 
 *
 // WHY WAS THIS REACTIVATED? //
 The code snippet below (which handles the 1034 error) also prevents a HSlider 
 event. This means my users can't use the HSLIDER to control the chart's 
 number of viewable months because the error handler prevents the event.
 I found this issue during debug mode, when I was trying to assess why the 
 HSLIDER was not working. Again, it turns out the code snippett 
 (chartErrorHandler1034) below actually prohibits other change events in the 
 chart.
 In other words, the resolution for this matter is not satisfactory since it 
 causes more issues than it resolves.
 // FROM PREVIOUS:
 Found in Version: Flex Builder 3, Version 3, build 3.0.194161
 **I found at least 2 other recorded iterations of this issue within this Bug 
 database. It's unacceptable to me and my customers to rely on a critical flex 
 component and find it's not working. Being able to click on chart columns are 
 an intregal part of this component.
 Steps to reproduce:
 1. Create a Column Chart, connect it to a viable dataprovider
 2. Add the an itemClick event with the chart tag mx:ColumnChart id=myChart 
 itemClick=chartChange(event.hitData.item)/
 3. Complie the chart
 4. Click on the bar
  
  Actual Results:
  Error #1034 is displayed in a dialog box. See error.TXT attachment.
  
  Expected Results:
  This should cause an event trigger and execute a function or declare a 
 variable.
  
  Workaround (if any):
 **The code below is the temporary workaround, but is unacceptable as it 
 prevents other events as well. For instance, the change= event trigger for 
 the HSlider component doesn't work because of the work around below.
 private function chartErrorHandler1034():void
 {
 vbChartCY.addEventListener(ChartItemEvent.CHANGE, chartItemEventChange, true, 
 0, true);
 }
   
 private function chartItemEventChange(event:Event):void
 {
 event.stopImmediatePropagation();
 }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-24354) toRadians/toDegrees helper methods

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-24354?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-24354:
-

Assignee: (was: Adobe JIRA)

 toRadians/toDegrees helper methods
 --

 Key: FLEX-24354
 URL: https://issues.apache.org/jira/browse/FLEX-24354
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-24773) SkinParts are public but not as useful as they could be. Make these Bindable.

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-24773?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-24773:
-

Assignee: (was: Adobe JIRA)

 SkinParts are public but not as useful as they could be. Make these Bindable.
 -

 Key: FLEX-24773
 URL: https://issues.apache.org/jira/browse/FLEX-24773
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-28939) Push Notifications in iOS using Flex Mobile

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-28939?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-28939:
-

Assignee: (was: Adobe JIRA)

 Push Notifications in iOS using Flex Mobile
 ---

 Key: FLEX-28939
 URL: https://issues.apache.org/jira/browse/FLEX-28939
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25817) file url scheme should always be accessible

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25817?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25817:
-

Assignee: (was: Adobe JIRA)

 file url scheme should always be accessible
 ---

 Key: FLEX-25817
 URL: https://issues.apache.org/jira/browse/FLEX-25817
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33008) Patch for HierarchicalViewCollection used in Tree control

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33008?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33008:
-

Assignee: (was: Adobe JIRA)

 Patch for HierarchicalViewCollection used in Tree control
 -

 Key: FLEX-33008
 URL: https://issues.apache.org/jira/browse/FLEX-33008
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33369) Windows with custom chrome are partially offscreen when maximized

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33369:
-

Assignee: (was: Adobe JIRA)

 Windows with custom chrome are partially offscreen when maximized
 -

 Key: FLEX-33369
 URL: https://issues.apache.org/jira/browse/FLEX-33369
 Project: Apache Flex
  Issue Type: Bug
  Components: Spark: WindowedApplication
Affects Versions: Adobe Flex SDK 4.6 (Release), Apache Flex 4.9.0
 Environment: Affected OS(s): Windows
 Affected OS(s): Windows 7
 Language Found: English
Reporter: Fabio Todaro
 Attachments: ChromeTest.zip


 Steps to reproduce:
 1. Create an AIR application with custom chrome and transparent (with a 
 WindowedApplicationSkin).
 2. Run the application.
 3. Maximize the application.
  
 Actual Results:
  The window is enlarged larger than the actual desktop, shoving about 5px 
 offscreen (and onto other screens in dual-monitor setups.)
  
 Expected Results:
  The window should resize to the proper size.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25640) Patch to add ability to enable/disable for each ButtonBar component

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25640?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25640:
-

Assignee: (was: Adobe JIRA)

 Patch to add ability to enable/disable for each ButtonBar component
 ---

 Key: FLEX-25640
 URL: https://issues.apache.org/jira/browse/FLEX-25640
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-24486) TLF 2.0 Feature request, make flating images clickable

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-24486?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-24486:
-

Assignee: (was: Adobe JIRA)

 TLF 2.0 Feature request, make flating images clickable
 --

 Key: FLEX-24486
 URL: https://issues.apache.org/jira/browse/FLEX-24486
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-32990) PlotChart draws values which are not interactive when in between zero values

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-32990?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-32990:
-

Assignee: (was: Adobe JIRA)

 PlotChart draws values which are not interactive when in between zero values
 

 Key: FLEX-32990
 URL: https://issues.apache.org/jira/browse/FLEX-32990
 Project: Apache Flex
  Issue Type: Bug
Affects Versions: Adobe Flex SDK 4.1 (Release)
 Environment: Affected OS(s): Windows
 Affected OS(s): Windows XP
 Language Found: English
Reporter: Adobe JIRA

 Steps to reproduce:
 1. Create a new Flex project in FlashBuilder
 2. Replace the application's MXML content with the attached version
  
 Actual Results:
 The datapoint having y-Value 1 is drawn but is not interactive.
  
 Expected Results:
 The datapoint having y-Value 1 should react when hovering over it, should be 
 clickable and should display a tooltip.
  
 Workaround (if any):
 -
 Could be possibly related to FLEXDMV-1899. However the workaround suggested 
 in this issues has no effect.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25884) Post Flex SDKs with AIR SDK pre-overlaid

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25884?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25884:
-

Assignee: (was: Adobe JIRA)

 Post Flex SDKs with AIR SDK pre-overlaid
 

 Key: FLEX-25884
 URL: https://issues.apache.org/jira/browse/FLEX-25884
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-24197) Email Validator allows for invalid email addresses

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-24197?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-24197:
-

Assignee: (was: Adobe JIRA)

 Email Validator allows for invalid email addresses
 --

 Key: FLEX-24197
 URL: https://issues.apache.org/jira/browse/FLEX-24197
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-27972) Use Stage3D hardware accelerated display for 2D display of Flex components

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-27972?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-27972:
-

Assignee: (was: Adobe JIRA)

 Use Stage3D hardware accelerated display for 2D display of Flex components
 --

 Key: FLEX-27972
 URL: https://issues.apache.org/jira/browse/FLEX-27972
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-24953) Flex SDK - Generation of Flow charts and UML activity diagrams from program source code (Flex File)

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-24953?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-24953:
-

Assignee: (was: Adobe JIRA)

 Flex SDK - Generation of Flow charts and UML activity diagrams from program 
 source code (Flex File)
 ---

 Key: FLEX-24953
 URL: https://issues.apache.org/jira/browse/FLEX-24953
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25988) Potential fix

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25988?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25988:
-

Assignee: (was: Adobe JIRA)

 Potential fix
 -

 Key: FLEX-25988
 URL: https://issues.apache.org/jira/browse/FLEX-25988
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-23516) Patch for SDK-16738

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-23516?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-23516:
-

Assignee: (was: Adobe JIRA)

 Patch for SDK-16738
 ---

 Key: FLEX-23516
 URL: https://issues.apache.org/jira/browse/FLEX-23516
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-23926) Top level menu items should be displayed over multiple rows if they don't fit

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-23926?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-23926:
-

Assignee: (was: Adobe JIRA)

 Top level menu items should be displayed over multiple rows if they don't fit
 -

 Key: FLEX-23926
 URL: https://issues.apache.org/jira/browse/FLEX-23926
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-30403) Make SparkSkinnableComponentAutomationImpl useful

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-30403?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-30403:
-

Assignee: (was: Adobe JIRA)

 Make SparkSkinnableComponentAutomationImpl useful
 -

 Key: FLEX-30403
 URL: https://issues.apache.org/jira/browse/FLEX-30403
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33009) 7-15-2011 Patch for AdvancedDataGrid and Tree

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33009?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33009:
-

Assignee: (was: Adobe JIRA)

 7-15-2011 Patch for AdvancedDataGrid and Tree
 -

 Key: FLEX-33009
 URL: https://issues.apache.org/jira/browse/FLEX-33009
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33042) Support for Gauge(Dial) Charts

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33042?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33042:
-

Assignee: (was: Adobe JIRA)

 Support for Gauge(Dial) Charts
 --

 Key: FLEX-33042
 URL: https://issues.apache.org/jira/browse/FLEX-33042
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25650) Separate structure and appearance better

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25650:
-

Assignee: (was: Adobe JIRA)

 Separate structure and appearance better
 

 Key: FLEX-25650
 URL: https://issues.apache.org/jira/browse/FLEX-25650
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33006) Patch to HierarchicalCollectionView

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33006?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33006:
-

Assignee: (was: Adobe JIRA)

 Patch to HierarchicalCollectionView
 ---

 Key: FLEX-33006
 URL: https://issues.apache.org/jira/browse/FLEX-33006
 Project: Apache Flex
  Issue Type: Task
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-28932) Add an API to SQLConnection to retrieve attached databases aliases

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-28932?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-28932:
-

Assignee: (was: Adobe JIRA)

 Add an API to SQLConnection to retrieve attached databases aliases
 --

 Key: FLEX-28932
 URL: https://issues.apache.org/jira/browse/FLEX-28932
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-25807) Ability to embed FLV asset

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-25807?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-25807:
-

Assignee: (was: Adobe JIRA)

 Ability to embed FLV asset
 --

 Key: FLEX-25807
 URL: https://issues.apache.org/jira/browse/FLEX-25807
 Project: Apache Flex
  Issue Type: New Feature
Affects Versions: Adobe Flex SDK Previous
 Environment: Language Found: English
Reporter: Adobe JIRA



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (FLEX-33414) Null textInput in ComboBox

2013-03-10 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33414?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33414.
--

   Resolution: Fixed
Fix Version/s: Apache Flex 4.10.0

Fixed in SVN check in 1454998.

 Null textInput in ComboBox
 --

 Key: FLEX-33414
 URL: https://issues.apache.org/jira/browse/FLEX-33414
 Project: Apache Flex
  Issue Type: Bug
  Components: Spark: ComboBox
Affects Versions: Adobe Flex SDK Previous, Apache Flex 4.9.0
Reporter: Harbs
Assignee: Justin Mclean
Priority: Minor
  Labels: easyfix
 Fix For: Apache Flex 4.10.0


 commitProperties does a check that textInput in not bull, but at the end of 
 the function assumes it's not null:
 // Clear the TextInput because we were programmatically set to 
 NO_SELECTION
 // We call this after super.commitProperties because commitSelection 
 might have
 // changed the value to NO_SELECTION
 if (selectedIndexChanged  selectedIndex == NO_SELECTION)
 textInput.text = ;
 I have a situation where textInput was null and caused an error there.
 I propose moving the code up into the scope of the check for textInput like 
 this:
 override protected function commitProperties():void
 {
 // Keep track of whether selectedIndex was programmatically changed
 var selectedIndexChanged:Boolean = _proposedSelectedIndex != 
 NO_PROPOSED_SELECTION;
 
 // If selectedIndex was set to CUSTOM_SELECTED_ITEM, and no 
 selectedItem was specified,
 // then don't change the selectedIndex
 if (_proposedSelectedIndex == CUSTOM_SELECTED_ITEM  
 _pendingSelectedItem == undefined)
 {
 _proposedSelectedIndex = NO_PROPOSED_SELECTION;
 }
 
 super.commitProperties();
 
 if (textInput)
 {
 if (maxCharsChanged)
 {
 textInput.maxChars = _maxChars;
 maxCharsChanged = false;
 }
 
 if (promptChanged)
 {
 textInput.prompt = _prompt;
 promptChanged = false;
 }
 
 if (restrictChanged)
 {
 textInput.restrict = _restrict;
 restrictChanged = false;
 }
 
 if (typicalItemChanged)
 {
 if (typicalItem != null)
 {
 var itemString:String = 
 LabelUtil.itemToLabel(typicalItem, labelField, labelFunction);
 textInput.widthInChars = itemString.length;
 }
 else
 {
 // Just set it back to the default value
 textInput.widthInChars = 10; 
 }
 
 typicalItemChanged = false;
 }
 // Clear the TextInput because we were programmatically set to 
 NO_SELECTION
 // We call this after super.commitProperties because 
 commitSelection might have
 // changed the value to NO_SELECTION
 if (selectedIndexChanged  selectedIndex == NO_SELECTION)
 textInput.text = ;
 }
 
 }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Assigned] (FLEX-33405) TitleWindow with TextInput throws exception on close using mobile skins

2013-03-09 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33405?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean reassigned FLEX-33405:


Assignee: Justin Mclean

 TitleWindow with TextInput throws exception on close using mobile skins
 ---

 Key: FLEX-33405
 URL: https://issues.apache.org/jira/browse/FLEX-33405
 Project: Apache Flex
  Issue Type: Bug
  Components: Spark: TitleWindow
Affects Versions: Apache Flex 4.9.0
 Environment: mobile
Reporter: Jozef Chutka
Assignee: Justin Mclean
Priority: Critical
  Labels: CloseEvent, PopUpEvent, TextInput, TitleWindow, 
 exception, mobile

 reproduce:
 1. create a mobile flex project and run on mobile device
 2. create TitleWindow with TextInput child
 3. open popup using PopUpManager
 4. try to close the popup using close button
 5. see the exception
 Main Thread (Suspended: TypeError: Error #1034: Type Coercion failed: cannot 
 convert mx.events::CloseEvent@6a1699d1 to spark.events.PopUpEvent.)  
   flash.events::EventDispatcher/dispatchEventFunction [no source] 
   flash.events::EventDispatcher/dispatchEvent [no source] 
   mx.core::UIComponent/dispatchEvent  
   spark.components::TitleWindow/closeButton_clickHandler  
 reason:
 my best guess is it is somehow mobile skin related
 possible fix:
 extend TitleWindow and do
 override protected function closeButton_clickHandler(event:MouseEvent):void
 {
 dispatchEvent(new PopUpEvent(PopUpEvent.CLOSE));
 }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (FLEX-33405) TitleWindow with TextInput throws exception on close using mobile skins

2013-03-09 Thread Justin Mclean (JIRA)

[ 
https://issues.apache.org/jira/browse/FLEX-33405?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13598109#comment-13598109
 ] 

Justin Mclean commented on FLEX-33405:
--

Was able to reproduce the issue is one with AIR in that something is expecting 
a PopUpEvent.CLOSE not a CloseEvent.CLOSE. Both events have the same value 
close. I'm not 100% why a spark component is dispatching a mx CLOSE rather 
than the PopUpEvent as suggested by your fix above.

 TitleWindow with TextInput throws exception on close using mobile skins
 ---

 Key: FLEX-33405
 URL: https://issues.apache.org/jira/browse/FLEX-33405
 Project: Apache Flex
  Issue Type: Bug
  Components: Spark: TitleWindow
Affects Versions: Apache Flex 4.9.0
 Environment: mobile
Reporter: Jozef Chutka
Assignee: Justin Mclean
Priority: Critical
  Labels: CloseEvent, PopUpEvent, TextInput, TitleWindow, 
 exception, mobile

 reproduce:
 1. create a mobile flex project and run on mobile device
 2. create TitleWindow with TextInput child
 3. open popup using PopUpManager
 4. try to close the popup using close button
 5. see the exception
 Main Thread (Suspended: TypeError: Error #1034: Type Coercion failed: cannot 
 convert mx.events::CloseEvent@6a1699d1 to spark.events.PopUpEvent.)  
   flash.events::EventDispatcher/dispatchEventFunction [no source] 
   flash.events::EventDispatcher/dispatchEvent [no source] 
   mx.core::UIComponent/dispatchEvent  
   spark.components::TitleWindow/closeButton_clickHandler  
 reason:
 my best guess is it is somehow mobile skin related
 possible fix:
 extend TitleWindow and do
 override protected function closeButton_clickHandler(event:MouseEvent):void
 {
 dispatchEvent(new PopUpEvent(PopUpEvent.CLOSE));
 }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (FLEX-33134) New Apache Flex website

2013-03-07 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33134?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33134.
--

Resolution: Fixed

Thanks to Nick (+others) we have a new web site

 New Apache Flex website
 ---

 Key: FLEX-33134
 URL: https://issues.apache.org/jira/browse/FLEX-33134
 Project: Apache Flex
  Issue Type: Task
Reporter: Tomasz Maciag
Assignee: Erik de Bruin
 Attachments: apache_flex_website_psd.zip.001, 
 apache_flex_website_psd.zip.002, apache_flex_website_psd.zip.003, website.zip




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33422) Typo in the French translation for the SDK Installer: Installation terminer

2013-03-07 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33422?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33422:
-

Labels: french installer translation  (was: french installer translation,)

 Typo in the French translation for the SDK Installer: Installation terminer
 -

 Key: FLEX-33422
 URL: https://issues.apache.org/jira/browse/FLEX-33422
 Project: Apache Flex
  Issue Type: Bug
  Components: InstallApacheFlex
 Environment: apache-flex-sdk-installer-2.0.2-bin.exe
Reporter: Frédéric Leroy
Priority: Trivial
  Labels: french, installer, translation

 Installation terminer should be: Installation terminée

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33422) Typo in the French translation for the SDK Installer: Installation terminer

2013-03-07 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33422?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33422:
-

Labels: easyfix french installer translation  (was: french installer 
translation)

 Typo in the French translation for the SDK Installer: Installation terminer
 -

 Key: FLEX-33422
 URL: https://issues.apache.org/jira/browse/FLEX-33422
 Project: Apache Flex
  Issue Type: Bug
  Components: InstallApacheFlex
 Environment: apache-flex-sdk-installer-2.0.2-bin.exe
Reporter: Frédéric Leroy
Priority: Trivial
  Labels: easyfix, french, installer, translation

 Installation terminer should be: Installation terminée

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33419) RuntimeLocale.as for Apache Flex Installer needs to be updated for the German language

2013-03-07 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33419?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33419:
-

Labels: easyfix translation  (was: )

 RuntimeLocale.as for Apache Flex Installer needs to be updated for the German 
 language
 --

 Key: FLEX-33419
 URL: https://issues.apache.org/jira/browse/FLEX-33419
 Project: Apache Flex
  Issue Type: Improvement
  Components: InstallApacheFlex
Reporter: Frank
Priority: Minor
  Labels: easyfix, translation
 Attachments: germanLocale.patch, trackerNoticeMaxWithFix.patch


 I have added a German translation of the RuntimeLocale.as from the trunk of 
 the Apache Flex Installer
 Because of the differences in the length of sentences between German and 
 English language i had to add a line to the InstallApacheFlex.mxml to ensure 
 the correct visual appearence of the app. I included the changes in a 
 seperate patch file if you like that fix it should work for other longish 
 languages like French as well ;o)


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33414) Null textInput in ComboBox

2013-03-07 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33414?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33414:
-

Labels: easyfix  (was: easy)

 Null textInput in ComboBox
 --

 Key: FLEX-33414
 URL: https://issues.apache.org/jira/browse/FLEX-33414
 Project: Apache Flex
  Issue Type: Bug
  Components: Spark: ComboBox
Affects Versions: Adobe Flex SDK Previous, Apache Flex 4.9.0
Reporter: Harbs
Priority: Minor
  Labels: easyfix

 commitProperties does a check that textInput in not bull, but at the end of 
 the function assumes it's not null:
 // Clear the TextInput because we were programmatically set to 
 NO_SELECTION
 // We call this after super.commitProperties because commitSelection 
 might have
 // changed the value to NO_SELECTION
 if (selectedIndexChanged  selectedIndex == NO_SELECTION)
 textInput.text = ;
 I have a situation where textInput was null and caused an error there.
 I propose moving the code up into the scope of the check for textInput like 
 this:
 override protected function commitProperties():void
 {
 // Keep track of whether selectedIndex was programmatically changed
 var selectedIndexChanged:Boolean = _proposedSelectedIndex != 
 NO_PROPOSED_SELECTION;
 
 // If selectedIndex was set to CUSTOM_SELECTED_ITEM, and no 
 selectedItem was specified,
 // then don't change the selectedIndex
 if (_proposedSelectedIndex == CUSTOM_SELECTED_ITEM  
 _pendingSelectedItem == undefined)
 {
 _proposedSelectedIndex = NO_PROPOSED_SELECTION;
 }
 
 super.commitProperties();
 
 if (textInput)
 {
 if (maxCharsChanged)
 {
 textInput.maxChars = _maxChars;
 maxCharsChanged = false;
 }
 
 if (promptChanged)
 {
 textInput.prompt = _prompt;
 promptChanged = false;
 }
 
 if (restrictChanged)
 {
 textInput.restrict = _restrict;
 restrictChanged = false;
 }
 
 if (typicalItemChanged)
 {
 if (typicalItem != null)
 {
 var itemString:String = 
 LabelUtil.itemToLabel(typicalItem, labelField, labelFunction);
 textInput.widthInChars = itemString.length;
 }
 else
 {
 // Just set it back to the default value
 textInput.widthInChars = 10; 
 }
 
 typicalItemChanged = false;
 }
 // Clear the TextInput because we were programmatically set to 
 NO_SELECTION
 // We call this after super.commitProperties because 
 commitSelection might have
 // changed the value to NO_SELECTION
 if (selectedIndexChanged  selectedIndex == NO_SELECTION)
 textInput.text = ;
 }
 
 }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33408) UIComponent#getVisibleRect() omitted from documentation

2013-03-07 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33408?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33408:
-

Labels: ASDoc easyfix missing mx:UIComponent  (was: ASDoc missing 
mx:UIComponent)

 UIComponent#getVisibleRect() omitted from documentation
 ---

 Key: FLEX-33408
 URL: https://issues.apache.org/jira/browse/FLEX-33408
 Project: Apache Flex
  Issue Type: Bug
  Components: ASDoc Content
Affects Versions: Apache Flex 4.9.0
Reporter: JC Franco
  Labels: ASDoc, easyfix, missing, mx:UIComponent

 UIComponent#getVisibleRect is a public function, but it is hidden from 
 documentation:
 /**
  *  @private
  *
  *  Get the bounds of this object that are visible to the user
  *  on the screen.
  *
  *  @param targetParent The parent to stop at when calculating the visible
  *  bounds. If null, this object's system manager will be used as
  *  the parent.
  *
  *  @return a codeRectangle/code including the visible portion of the 
 this
  *  object. The rectangle is in global coordinates.
  */
 public function getVisibleRect(targetParent:DisplayObject = 
 null):Rectangle
 {
 ...
 }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33397) Spark button skin doesn't exclude coloring icon.

2013-03-07 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33397?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33397:
-

Labels: easyfix  (was: )

 Spark button skin doesn't exclude coloring icon.
 

 Key: FLEX-33397
 URL: https://issues.apache.org/jira/browse/FLEX-33397
 Project: Apache Flex
  Issue Type: Bug
  Components: Skinning
Affects Versions: Adobe Flex SDK 4.6 (Release), Apache Flex 4.9.0
Reporter: Mark Kessler
Priority: Minor
  Labels: easyfix
 Attachments: ButtonSkin.mxml

   Original Estimate: 1m
  Remaining Estimate: 1m

 The chromeColor style is coloring the icon for for the spark buttons. The fix 
 was to add the iconDisplay to the exclusions variable in the ButtonSkin.mxml

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33387) Mailing list archive links on website point to incubator lists

2013-03-07 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33387?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33387:
-

Labels: easyfix  (was: )

 Mailing list archive links on website  point to incubator lists
 ---

 Key: FLEX-33387
 URL: https://issues.apache.org/jira/browse/FLEX-33387
 Project: Apache Flex
  Issue Type: Bug
Reporter: Kees van Dieren
Priority: Minor
  Labels: easyfix

 The page http://flex.apache.org/community-mailinglists.html contains links to 
 the mailing lists.
 They still point to the incubator mailing lists:
 http://markmail.org/search/+list:org.apache.incubator.flex-users
 http://mail-archives.apache.org/mod_mbox/incubator-flex-users/
 http://markmail.org/search/+list:org.apache.incubator.flex-dev
 http://mail-archives.apache.org/mod_mbox/incubator-flex-dev/
 http://markmail.org/search/+list:org.apache.incubator.flex-commits
 http://mail-archives.apache.org/mod_mbox/incubator-flex-commits/

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (FLEX-33387) Mailing list archive links on website point to incubator lists

2013-03-07 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33387?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean updated FLEX-33387:
-

Labels: Website easyfix  (was: easyfix)

 Mailing list archive links on website  point to incubator lists
 ---

 Key: FLEX-33387
 URL: https://issues.apache.org/jira/browse/FLEX-33387
 Project: Apache Flex
  Issue Type: Bug
Reporter: Kees van Dieren
Priority: Minor
  Labels: Website, easyfix

 The page http://flex.apache.org/community-mailinglists.html contains links to 
 the mailing lists.
 They still point to the incubator mailing lists:
 http://markmail.org/search/+list:org.apache.incubator.flex-users
 http://mail-archives.apache.org/mod_mbox/incubator-flex-users/
 http://markmail.org/search/+list:org.apache.incubator.flex-dev
 http://mail-archives.apache.org/mod_mbox/incubator-flex-dev/
 http://markmail.org/search/+list:org.apache.incubator.flex-commits
 http://mail-archives.apache.org/mod_mbox/incubator-flex-commits/

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (FLEX-33346) Can only target Flash Player 11.1 in Flash Builder

2013-02-22 Thread Justin Mclean (JIRA)

[ 
https://issues.apache.org/jira/browse/FLEX-33346?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13584187#comment-13584187
 ] 

Justin Mclean commented on FLEX-33346:
--

Apache Flex 4.9 has been tested on 11.1 and 11.1 is the default player version 
for the previous versions of Adobe Flex. So that why we have stuck with that as 
the default version. Earlier versions of the Flash Player may contain bugs that 
cause issues with Apache Flex 4.9 although none have been identified.

Since the 4.9 release scripts have been added to easily change the Flash Player 
(and AIR) version without having to recompile - take a look in the ide 
directory.

 Can only target Flash Player 11.1 in Flash Builder
 --

 Key: FLEX-33346
 URL: https://issues.apache.org/jira/browse/FLEX-33346
 Project: Apache Flex
  Issue Type: Bug
  Components: Versioning
Affects Versions: Apache Flex 4.9.0
 Environment: Windows 7 x64 - Flash Builder 4.7
Reporter: Joseph Labrecque

 I've installed Apache Flex 4.9 for use within Flash Builder 4.7 and cannot 
 specify any target Flash player version below 11.1:
 The currently selected Flex SDK requires minimum Adobe Flash Player version 
 11.1.0.
 I know that this is a new feature of this SDK (to target 10.2-11.5) but 
 cannot seem to do it through this software. If there is something that needs 
 to be modified, I do not see instructions in the release notes.
 Requested by Frédéric THOMAS.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (FLEX-33409) TLF crashes when hypens are shown in a multi span textFlow

2013-02-21 Thread Justin Mclean (JIRA)

[ 
https://issues.apache.org/jira/browse/FLEX-33409?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13583162#comment-13583162
 ] 

Justin Mclean commented on FLEX-33409:
--

Have you tried with Apache Flex 4.9 it uses a newer version of TLF?

 TLF crashes when hypens are shown in a multi span textFlow
 --

 Key: FLEX-33409
 URL: https://issues.apache.org/jira/browse/FLEX-33409
 Project: Apache Flex
  Issue Type: Bug
Affects Versions: Adobe Flex SDK 4.6 (Release)
 Environment: TLF editing
Reporter: Woodwing Developer
Priority: Blocker
  Labels: TLF, crash, editing, hyphen, span, textflow

 When soft hyphens are used and shown, in a textFlow with 2 or more spans, TLF 
 crashes when typing.
 Import the underlying text flow xml. Resize the text area until the hyphen is 
 visible. Then start typing AFTER the hypened word, also pressing the enter 
 key. TLF crashes.
 Sample textFLow (if the soft hyphen is not show, insert a new one in the 
 appropriate word):
   TextFlow color=#00 fontSize=12 lineHeight=14 paddingBottom=0 
 paddingLeft=10 paddingRight=10 paddingTop=0 
 whiteSpaceCollapse=preserve version=2.0.0 
 xmlns=http://ns.adobe.com/textLayout/2008;
 p
   span backgroundColor=#ff textDecoration=underlineFirst 
 Span/span
   span backgroundColor=#ff textDecoration=none Second span. 
 This text has a hypen in the next long word LongWord­WithAHyphen. Make sure 
 the hypen is shown! Then start typing and pressing enter till TLF crashes 
 (should happen fast enough)/span
   /p
   /TextFlow
 It seems that the textLine is damaged but the text engine fails to recompose 
 the line properly.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (FLEX-33400) Wrong item name in SOFTWARE list of README file

2013-02-15 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33400?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33400.
--

   Resolution: Fixed
Fix Version/s: (was: Apache Flex 4.9.0)
   Adobe Flex SDK Next

Fixed in SVN 1446805.

 Wrong item name in SOFTWARE list of README file
 ---

 Key: FLEX-33400
 URL: https://issues.apache.org/jira/browse/FLEX-33400
 Project: Apache Flex
  Issue Type: Improvement
  Components: Documentation
Affects Versions: Apache Flex 4.9.0
 Environment: Environment independent.
Reporter: Silver Ghost
Priority: Trivial
 Fix For: Adobe Flex SDK Next


 Error is at line 121 of 
 http://svn.apache.org/viewvc/flex/sdk/trunk/README?revision=1429184view=markup.
  I think it should be Adobe Flash Player playerglobal.swc as at line 179. 
 Original term refers to the whole player while SDK requires only 
 playerglobal.swc.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (FLEX-33382) Run Time Error 1009 in mx:Combobox in destoryDropdown

2013-02-04 Thread Justin Mclean (JIRA)
Justin Mclean created FLEX-33382:


 Summary: Run Time Error 1009 in mx:Combobox in destoryDropdown
 Key: FLEX-33382
 URL: https://issues.apache.org/jira/browse/FLEX-33382
 Project: Apache Flex
  Issue Type: Bug
  Components: mx: ComboBox
Affects Versions: Adobe Flex SDK 4.6 (Release)
Reporter: Justin Mclean
Assignee: Justin Mclean
Priority: Minor


Run Time Error 1009 in destroyDropdown(), occurs infrequently and not easy to 
reproduce.

Sample stack trace (from 11.5 release player).

TypeError: Error #1009
at mx.controls::ComboBox/destroyDropdown()
at mx.controls::ComboBox/removedFromStageHandler()
at 
mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::$removeChild()
at mx.core::UIComponent/removeChild()
at mx.core::UIComponent/addChild()
at mx.controls::AdvancedDataGrid/addRendererToContentArea()
at mx.controls::AdvancedDataGrid/createHeaderItems()
at mx.controls::AdvancedDataGrid/createHeaders()
at 
mx.controls.advancedDataGridClasses::AdvancedDataGridBase/makeRowsAndColumns()
at mx.controls::AdvancedDataGridBaseEx/makeRowsAndColumns()
at mx.controls::AdvancedDataGrid/makeRowsAndColumns()
at 
mx.controls.listClasses::AdvancedListBase/makeRowsAndColumnsWithExtraRows()
at mx.controls.listClasses::AdvancedListBase/updateDisplayList()
at mx.controls::AdvancedDataGridBaseEx/updateDisplayList()
at mx.controls::AdvancedDataGrid/updateDisplayList()
at mx.controls.listClasses::AdvancedListBase/validateDisplayList()
at mx.managers::LayoutManager/validateDisplayList()
at mx.managers::LayoutManager/doPhasedInstantiation()
at mx.managers::LayoutManager/validateNow()
at mx.controls::ComboBox/displayDropdown()
at mx.controls::ComboBox/downArrowButton_buttonDownHandler()
at flash.events::EventDispatcher/dispatchEvent()
at mx.core::UIComponent/dispatchEvent()
at 
mx.controls::Button/http://www.adobe.com/2006/flex/mx/internal::buttonPressed()
at mx.controls::Button/mouseDownHandler()
at flash.events::EventDispatcher/dispatchEvent()
at mx.core::UIComponent/dispatchEvent()
at mx.managers::SystemManager/mouseEventHandler()

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (FLEX-33382) Run Time Error 1009 in mx:Combobox in destoryDropdown

2013-02-04 Thread Justin Mclean (JIRA)

 [ 
https://issues.apache.org/jira/browse/FLEX-33382?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Justin Mclean resolved FLEX-33382.
--

   Resolution: Fixed
Fix Version/s: Apache Flex 4.10.0

Check if tween is null before called method. SVN revision check in 142453.

 Run Time Error 1009 in mx:Combobox in destoryDropdown
 -

 Key: FLEX-33382
 URL: https://issues.apache.org/jira/browse/FLEX-33382
 Project: Apache Flex
  Issue Type: Bug
  Components: mx: ComboBox
Affects Versions: Adobe Flex SDK 4.6 (Release)
Reporter: Justin Mclean
Assignee: Justin Mclean
Priority: Minor
 Fix For: Apache Flex 4.10.0


 Run Time Error 1009 in destroyDropdown(), occurs infrequently and not easy to 
 reproduce.
 Sample stack trace (from 11.5 release player).
 TypeError: Error #1009
   at mx.controls::ComboBox/destroyDropdown()
   at mx.controls::ComboBox/removedFromStageHandler()
   at 
 mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::$removeChild()
   at mx.core::UIComponent/removeChild()
   at mx.core::UIComponent/addChild()
   at mx.controls::AdvancedDataGrid/addRendererToContentArea()
   at mx.controls::AdvancedDataGrid/createHeaderItems()
   at mx.controls::AdvancedDataGrid/createHeaders()
   at 
 mx.controls.advancedDataGridClasses::AdvancedDataGridBase/makeRowsAndColumns()
   at mx.controls::AdvancedDataGridBaseEx/makeRowsAndColumns()
   at mx.controls::AdvancedDataGrid/makeRowsAndColumns()
   at 
 mx.controls.listClasses::AdvancedListBase/makeRowsAndColumnsWithExtraRows()
   at mx.controls.listClasses::AdvancedListBase/updateDisplayList()
   at mx.controls::AdvancedDataGridBaseEx/updateDisplayList()
   at mx.controls::AdvancedDataGrid/updateDisplayList()
   at mx.controls.listClasses::AdvancedListBase/validateDisplayList()
   at mx.managers::LayoutManager/validateDisplayList()
   at mx.managers::LayoutManager/doPhasedInstantiation()
   at mx.managers::LayoutManager/validateNow()
   at mx.controls::ComboBox/displayDropdown()
   at mx.controls::ComboBox/downArrowButton_buttonDownHandler()
   at flash.events::EventDispatcher/dispatchEvent()
   at mx.core::UIComponent/dispatchEvent()
   at 
 mx.controls::Button/http://www.adobe.com/2006/flex/mx/internal::buttonPressed()
   at mx.controls::Button/mouseDownHandler()
   at flash.events::EventDispatcher/dispatchEvent()
   at mx.core::UIComponent/dispatchEvent()
   at mx.managers::SystemManager/mouseEventHandler()

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (FLEX-33273) CSSCondition.matchesStyleClient() is slow and creates excessive garbage

2013-02-04 Thread Justin Mclean (JIRA)

[ 
https://issues.apache.org/jira/browse/FLEX-33273?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13570921#comment-13570921
 ] 

Justin Mclean commented on FLEX-33273:
--

Changes are made in the develop branch not trunk. It will show up in trunk only 
after a release is made.

You can see the change here.
http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/frameworks/projects/framework/src/mx/styles/CSSCondition.as?view=logpathrev=1420855

 CSSCondition.matchesStyleClient() is slow and creates excessive garbage
 ---

 Key: FLEX-33273
 URL: https://issues.apache.org/jira/browse/FLEX-33273
 Project: Apache Flex
  Issue Type: Improvement
  Components: Styles
Affects Versions: Adobe Flex SDK 4.1 (Release), Adobe Flex SDK 4.5 
 (Release), Adobe Flex SDK 4.5.1 (Release), Adobe Flex SDK 4.6 (Release)
Reporter: Maurice Nicholson
Assignee: Frédéric THOMAS
  Labels: patch, performance
 Attachments: FLEX-33273.patch, PerformanceTest.zip


 CSSCondition.matchesStyleClient() is called *very* frequently during layout 
 of components in many different scenarios.
 I've done a lot of profiling of Flex apps and it comes up again and again.
 The current implementation is slow and creates unnecessary garbage (which 
 slows down the runtime further, since it needs to collect the garbage instead 
 of doing more useful things).
 Here is the current implementation:
 {code}
 public function matchesStyleClient(object:IAdvancedStyleClient):Boolean
 {
 var match:Boolean = false;
 if (kind == CSSConditionKind.CLASS)
 {
 if (object.styleName != null  object.styleName is String)
 {
 // Look for a match in a potential list of styleNames 
 var styleNames:Array = object.styleName.split(/\s+/);
 for (var i:uint = 0; i  styleNames.length; i++)
 {
 if (styleNames[i] == value)
 {
 match = true;
 break;
 }
 }
 }
 }
 else if (kind == CSSConditionKind.ID)
 {
 if (object.id == value)
 match = true;
 }
 else if (kind == CSSConditionKind.PSEUDO)
 {
 if (object.matchesCSSState(value))
 match = true;
 }
 return match;
 }
 {code}
 Here is what I suggest instead:
 {code}
 public function matchesStyleClient(object:IAdvancedStyleClient):Boolean
 {
 var match:Boolean = false;
 if (kind == CSSConditionKind.CLASS)
 {
 const styleName:String = object.styleName as String;
 if (styleName)
 {
 // Look for a match in a potential list of styleNames 
 FIND:
 {
 var index:int = styleName.indexOf(value);
 if (index == -1)
 {
 break FIND;
 }
 if (index != 0  styleName.charAt(index - 1) != ' ')
 {
 break FIND;
 }
 const next:int = index + value.length;
 if (next != styleName.length  styleName.charAt(next) != 
 ' ')
 {
 break FIND;
 }
 match = true;
 }
 }
 }
 else if (kind == CSSConditionKind.ID)
 {
 if (object.id == value)
 match = true;
 }
 else if (kind == CSSConditionKind.PSEUDO)
 {
 if (object.matchesCSSState(value))
 match = true;
 }
 return match;
 }
 {code}
 There are obviously more concise ways to express this code, but the above 
 seems to match the current style more or less.
 Here is the output from a benchmark I created using Grant Skinner's 
 PerformanceTest v2 Beta, comparing the current version and the suggested 
 version:
 {noformat}
 Comparing speed of matching a string in space delimited string. 100 loops.
 Test   Old ms   New 
 ms Speedup  Old mem  New mem  Change
 matchesStyleClient(styleName: foo, value: foo)1006.00   
 181.00   -82.0   123.00 0.00  -100.0
 matchesStyleClient(styleName: foo bar, value: foo)2107.00   
 206.80   -90.2   115.00 0.00  -100.0
 matchesStyleClient(styleName: bar foo, value: foo)2099.80   
 232.30   -88.9   117.00 0.00  -100.0
 matchesStyleClient(styleName: baz foo bar, value: foo)3193.80   
 

[jira] [Commented] (FLEX-33347) DateSpinner dateAndTime jumping

2013-01-11 Thread Justin Mclean (JIRA)

[ 
https://issues.apache.org/jira/browse/FLEX-33347?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13551840#comment-13551840
 ] 

Justin Mclean commented on FLEX-33347:
--

There might a similar issue involving leap years and Feb 29th when changing the 
year to an non leap year

 DateSpinner dateAndTime jumping
 ---

 Key: FLEX-33347
 URL: https://issues.apache.org/jira/browse/FLEX-33347
 Project: Apache Flex
  Issue Type: Bug
  Components: Mobile: DateSpinner
Affects Versions: Adobe Flex SDK 4.6 (Release)
 Environment: Both mobile (iOS) and desktop (Mac) I've tested it
Reporter: Fréderic Cox
Assignee: Carol Frampton
 Fix For: Apache Flex 4.10.0


 As reported on 
 http://stackoverflow.com/questions/9126194/flex-mobile-4-6-datespinner-dateandtime-jumping-from-jan-31st-to-march-1st:
 set the date in DateSpinner to January 30 or 31 (using mouse or touch)
 click (mouse or touch) on February 1 (visible one or two rows below on the 
 DateSpinner)
 The Datespinner does spin forward but does not stop at February 1: it jumps 
 to March 1. The same behavior can be observed with March 31 - mouse click on 
 April 1 causes a jump to May 1; with May 31 - mouse click on June 1 jumping 
 to July 1, and so on.
 I suspect this behavior is related to the fact that the next month has less 
 days than the prior month (30 instead of 31, or 29 in the case of February 
 2012), but it is not the behavior that I would like to see when following 
 these two steps. Does anyone know a workaround or fix?
 When the DateSpinner is set with displayMode as 'date' all is well, but that 
 doesn't work in my use case.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


<    4   5   6   7   8   9