Hung-I Wang

Results 40 comments of Hung-I Wang

Should I close the issue for now?

I come across the issue today. After some searching, I find: https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow: > When you use the repository's GITHUB_TOKEN to perform tasks, events triggered by the GITHUB_TOKEN will not create...

I have a naive proposal: Just write a wrapper around the svg-term project so that to deploy it onto a serverless platform such as [Vercel](https://vercel.com/dashboard), exposing a simple web API...

I am trying to understand the issue. Do you mean: a file named `foo\"bar` is received by actix-web as `foo%22bar`?

It was an implementation decision at that time as documented at https://github.com/actix/actix-web/blob/909461087c608855aa252bf2b3343aac53210c75/actix-web/src/http/header/content_disposition.rs#L849 > In fact, RFC 7578 (multipart/form-data) Section 2 and 4.2 suggests that filename with non-ASCII characters MAY be...

Some test results: | filename / user-agent | `你好` (CJKV unicode) | foo"bar | foo\\"bar | |---|---|---|---| | Firefox 112.0.1 | `filename="你好"` | `filename="foo%22bar"` | `filename=""` | | Chrome 104.0.5112.101...

> If percent-decoding is really necessary here, the Content-Disposition header for HTTP response and multipart/form-data need to be separated out. Choosing a proper encoding scheme per disposition type (`inline`/`form-data`/`attachment`) might...

I patched rustls for that purpose for [noisy-shuttle](https://github.com/Gowee/noisy-shuttle). To keep to the changes minimum, I add a new [`rustls::ClientConnection::new_with`](https://github.com/Gowee/rustls-patched/blob/b15379697711631e5d46c893b65467bd1fa60a12/rustls/src/client/client_conn.rs#L566) that takes a custom client random, a custom session id and...

Some relevant discussions are here: https://github.com/rustls/rustls/issues/1125, https://github.com/rustls/rustls/issues/1421.

As suggested by Pydantic's [README](https://github.com/pydantic/pydantic) > Pydantic V2 also ships with the latest version of Pydantic V1 built in so that you can incrementally upgrade your code base and projects:...