Przemek Szalko

Results 11 comments of Przemek Szalko

I just found this `bat-mock` tool and it looks very promising for unit testing bash code. I wonder if there is any progress with this issue?

Try `up.setOption('params', ...)` instead of `up.setOption('multipart_params', ...)`. This might be related: https://github.com/moxiecode/plupload/issues/1593#issuecomment-483835701

@indicalabs I think I found the solution after digging around AWS Signature Version 4: https://github.com/moxiecode/plupload/issues/1549#issuecomment-481337789

I think the option name was changed from `multipart_params` to `params` somewhere around 3.x version. Try: ```javascript up.settings.params = { "barva": $("#barva option:selected").val() }; ``` After checking the code I...

I think I have the same issue with `AWS4-HMAC-SHA256`. Policy signature calculated and validated according to [AWS documentation](https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-authentication-HTTPPOST.html), but it does not work with plUpload. The response I see is:...

It looks like plUpload **does support** `AWS4-HMAC-SHA256`. After some research and double check of the `multipart_params` I found out that if you mix: * `signature` (SHA1) with `x-amz-signature` (SHA256) *...

Alternatively, both (`is-invalid` + `has-danger`) and (`is-valid` + `has-success`) should not be removed during validation :)

I understand that it may be a valid email address in some local network, but 99% of web usage requires an email address with global domain. Maybe it’s worth considering...

This PR is just in time! I just spend an hour debugging why `$authRequest->setAuthorizationApproved()` is set to `false` and code for authorization in listener is never actually called. BIG thanks!

Alternatively, if it's easier to implement: Introduce mixins to create few three-dots instances in Sass, to create own system, for example: ``` @use "~three_dots" .dot-white-sm { $dot-width: 2px; $dot-height: 2px;...