Shodai Ikebe
Shodai Ikebe
Hmm... or is it really need to be decoded here? https://github.com/gitbucket/gitbucket/blob/f17f74c30badfe23c2fcce85a7213b7599fa01b1/src/main/scala/gitbucket/core/controller/WikiController.scala#L76
>Line 76 Fixed Issue #35 Yeah, however current codebase seems to work without decoding... 
@SurmaAa Could you elaborate? The textarea is already marked as required. 
Have you set Base URL? Hmm, [GitBucket wiki](https://github.com/gitbucket/gitbucket/wiki) might lack this requirement... 
work around: Enter the milestone directly into the URL, like `http://localhost:8080/root/test1/issues?milestone=1.0&state=open&sort=created&direction=desc`.
Need to investigate if [this scalatra behavior change](https://github.com/gitbucket/gitbucket/issues/1785#issuecomment-678634303) also affects routing here.
@takezoe This PR is similar to #2519. Route `"/:owner/:repository/archive/:name"` is not called if `name` contains `/`. It needs to be `"/:owner/:repository/archive/*"`, however the new route conflicts with `"/:owner/:repository/archive/*/:name"`. So I...
>I thought we might be able to use the same logic as tree if URL has the following structure, for example: > >* http://localhost:8080/root/repo/archive/release/v1.0.0?format=zip >* http://localhost:8080/root/repo/archive/release/v1.0.0/dir1/dir2?format=zip @takezoe I applied your...
Rebased and resolved conflicts.