Shodai Ikebe

Results 38 comments of 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... ![image](https://user-images.githubusercontent.com/17608272/72157954-70796300-33fc-11ea-9fa6-5ffe68a0a637.png)

@SurmaAa Could you elaborate? The textarea is already marked as required. ![image](https://user-images.githubusercontent.com/17608272/91631114-2a682280-ea12-11ea-97fc-9702c7b223e1.png)

Have you set Base URL? Hmm, [GitBucket wiki](https://github.com/gitbucket/gitbucket/wiki) might lack this requirement... ![image](https://user-images.githubusercontent.com/17608272/90957333-df0cbc00-e4c7-11ea-8421-198dc867df8a.png)

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...