Re: AMF and class aliases

2019-07-14 Thread Alex Harui
IMO, localization may perform better with a custom bead or two. Generic binding must watch something for changes that might require that getString() be called again, but in general, either bindings to locales are set up early (so no change watcher is needed at all), or because of PAYG, you

Re: Crux Branch

2019-07-14 Thread Alex Harui
Regarding naming, giving something a longer more descriptive name can also make it harder to use and then folks start using the short name and then there can be confusion again. AIUI, trademark issues are about confusion. Names like "Basic" and "Jewel" don't appear to have uses that could be

Re: Uploading files with parameters

2019-07-14 Thread Piotr Zarzycki
This is great idea Yishay, but I see one scenario where having in model blop property as FormData type will fail. If I would like to Load and Upload later file blop has to be BinaryData. - This is actually what we are trying to do. We need to use FileLoaderAndUploader. However if I create that

Maven Royale-compiler build

2019-07-14 Thread Piotr Zarzycki
All build are again up and running! On Fri, Jul 12, 2019, 4:54 PM Piotr Zarzycki wrote: > The same is with https://builds.apache.org/job/Royale-asjs/1947/console > > pt., 12 lip 2019 o 16:52 Piotr Zarzycki > napisał(a): > >> I stopped the build for now. >> >> pt., 12 lip 2019 o 16:18 Piotr

Jenkins build is back to normal : royale-asjs_MXTests #933

2019-07-14 Thread Apache Royale CI Server
See

Build failed in Jenkins: royale-asjs_MXTests #932

2019-07-14 Thread Apache Royale CI Server
See -- [...truncated 945.94 KB...] [mxmlc] scanning for overrides: DeviceNames [mxmlc] scanning for overrides: DispatchKeyEvent [mxmlc]

RE: Uploading files with parameters

2019-07-14 Thread Yishay Weiss
It could be enough to create a new model FileModelWithParams implements IFileModel which has blob() return FormData in JS. I don’t think you need FileUploaderWithParams because the present one reads the blob from the model anyway. From: Piotr Zarzycki Sent:

Re: Uploading files with parameters

2019-07-14 Thread Piotr Zarzycki
I just looked into FileModel and IFileModel. FileUploader using FileModel, but this is because IFileModel doesn't contains "blop" property - I think IFileModel should contains such. It is definitely worth to make FileUploader using IFileModel. Next I could create bead FileUploaderWithParams

Re: Uploading files with parameters

2019-07-14 Thread Piotr Zarzycki
Hi Yishay, Some comments inline. [1] https://paste.apache.org/rk1ro sob., 13 lip 2019 o 14:06 Yishay Weiss napisał(a): > Hi Piotr, > > > > The beads [1] you mentioned are supposed to implement FileReference > methods, that’s why I was asking about the flash way of doing it. > > > *We are