- 04 Jan, 2019 2 commits
-
-
Jonas Franz authored
* Add changelog for 1.6.3 and 1.7.0-rc2 Signed-off-by:
Jonas Franz <info@jonasfranz.software> * Remove 1.7.0 entries Signed-off-by:
Jonas Franz <info@jonasfranz.software>
-
zeripath authored
This commit wraps more of the TreePaths with cleanUploadFileName Signed-off-by:
Andrew Thornton <art27@cantab.net>
-
- 31 Dec, 2018 1 commit
-
-
Harshit Bansal authored
* comments: Fix an incorrent DOM element selection. This commit fixes a bug that was causing text from previously edited comment to get saved when two comments were edited one after other. Text area with id of `#content` isn't unique on the page but it was being treated as unique by the event handling code. Fixes: #5581. * templates: Remove `id` from textarea in commit edit form. An element is assigned an `id` only if it is unique for the whole page but in this case there can be multiple textarea so it should have one.
-
- 21 Dec, 2018 3 commits
-
-
techknowlogick authored
-
techknowlogick authored
There are likely problems remaining with the way that initCommentForm is creating its elements. I suspect that a malformed avatar url could be used maliciously.
-
techknowlogick authored
-
- 19 Dec, 2018 1 commit
-
-
Lunny Xiao authored
* fix issue indexer bug reindex when restart gitea * also fix code indexer reindex when gitea restart
-
- 13 Dec, 2018 1 commit
-
-
Greg Karékinian authored
Before: $ curl 0.0.0.0:3001 <a href="https://gitea.example.com:3000//">Found</a>. After: $ curl 0.0.0.0:3001 <a href="https://gitea.example.com:3000/">Found</a>. Fixes #5536
-
- 12 Dec, 2018 2 commits
-
-
Lunny Xiao authored
-
Lunny Xiao authored
-
- 11 Dec, 2018 3 commits
-
-
Greg Karékinian authored
* Fix the Let's Encrypt handler by listening on a valid address Also handle errors in the HTTP server go routine, return a fatal error when something goes wrong. Thanks to @gbl08ma for finding the actual bug Here is an example of the error handling: 2018/12/11 14:23:07 [....io/gitea/cmd/web.go:87 func1()] [E] Failed to start the Let's Encrypt handler on port 30: listen tcp 0.0.0.0:30: bind: permission denied Closes #5280 * Fix a typo
-
Lunny Xiao authored
-
Lunny Xiao authored
-
- 10 Dec, 2018 1 commit
-
-
Lunny Xiao authored
* fix wiki page when wiki path is exist but empty * improve the error check
-
- 09 Dec, 2018 2 commits
-
-
techknowlogick authored
-
Lunny Xiao authored
-
- 02 Dec, 2018 3 commits
-
-
romankl authored
right now the `closed_at` field for json responses is not filled during the `APIIssue` creation for api responses. For a closed issue you get a result like: ```json "state":"open","comments":0,"created_at":"2018-11-29T16:39:24+01:00", "updated_at":"2018-11-30T10:49:19+01:00","closed_at":null, "due_date":null,"pull_request":null} ``` which has no information about the closing date. (which exists in the db and ui) with this PR the result changes to this: ```json :null,"assignee":null,"assignees":null, "state":"closed", "comments":0,"created_at":"2018-11-29T16:43:05+01:00", "updated_at":"2018-12-02T19:17:05+01:00", "closed_at":"2018-12-02T19:17:05+01:00", "due_date":null,"pull_request":null} ``` fixes: https://github.com/go-gitea/gitea/issues/5446 Signed-off-by:
Roman <romaaan.git@gmail.com>
-
Lanre Adelowo authored
-
romankl authored
right now, the url is displayed with an anchor tag with no classes. If the url is really really long, the url will break out of the containing div and (depending on the url length) the browser shows the horizontal scrollbar. This pr makes use of the already existing css class `dont-break-out` which gives all the anchor the necessary properties to prevent the break. Another solution could be to introduce some classes like `text text-break-word`, but that would duplicate the `dont-break-out` class just for text elements that use the `text` class. fixes: https://github.com/go-gitea/gitea/issues/5416 Signed-off-by:
Roman <romaaan.git@gmail.com>
-
- 30 Nov, 2018 1 commit
-
-
Lunny Xiao authored
-
- 26 Nov, 2018 1 commit
-
-
Lauris BH authored
-
- 24 Nov, 2018 1 commit
-
-
Daniel Balko authored
Backported #5383 on v1.6: API: '/orgs/:org/repos': return private repos with read access (#5310) (#3829) (#5393) Signed-off-by:
Daniel Balko <inxonic+github@gmail.com>
-
- 23 Nov, 2018 1 commit
-
-
Lunny Xiao authored
* add changelog of v1.6.0 * improve changelog
-
- 21 Nov, 2018 1 commit
-
-
Lunny Xiao authored
-
- 18 Nov, 2018 1 commit
-
-
Florian Eitel authored
* Remove field from migration to support upgrades from older version That will ensure the field does not get queried in the Select if it does not exist yet: ``` [I] [SQL] SELECT "id", "repo_id", "index", "poster_id", "name", "content", "milestone_id", "priority", "assignee_id", "is_closed", "is_pull", "num_comments", "ref", "deadline_unix", "created_unix", "updated_unix [...itea/routers/init.go:60 GlobalInit()] [E] Failed to initialize ORM engine: migrate: do migrate: pq: column "ref" does not exist ``` see #5318 * Skip remove stale watcher migration if not required Otherwise the migration will fail if executed from a older database version without multiple IssueWatch feature. ``` 2018/11/11 23:51:14 [I] [SQL] SELECT DISTINCT "issue_watch"."user_id", "issue"."repo_id" FROM "issue_watch" INNER JOIN issue ON issue_watch.issue_id = issue.id WHERE (issue_watch.is_watching = $1) LIMIT 50 []int [...itea/routers/init.go:60 GlobalInit()] [E] Failed to initialize ORM engine: migrate: do migrate: pq: relation "issue_watch" does not exist ``` see #5318
-
- 11 Nov, 2018 1 commit
-
-
Lunny Xiao authored
-
- 10 Nov, 2018 1 commit
-
-
Lauris BH authored
-
- 09 Nov, 2018 2 commits
-
-
Lunny Xiao authored
-
Lauris BH authored
-
- 08 Nov, 2018 2 commits
- 07 Nov, 2018 2 commits
- 04 Nov, 2018 2 commits
-
-
techknowlogick authored
-
zeripath authored
* Add CSRF checking to reqToken and place CSRF in the post for deadline creation Fixes #5226, #5249 * /api/v1/admin/users routes should have reqToken middleware
-
- 03 Nov, 2018 1 commit
-
-
kolaente authored
-
- 01 Nov, 2018 2 commits
-
-
Peter Hoffmann authored
* Added flags of default cmd CmdWeb to app-wide flags * If command *is* specified app-wide flags are ignored Backport of #5200 Signed-off-by:
Berengar W. Lehr <Berengar.Lehr@kompetenztest.de>
-
Lunny Xiao authored
This commit will reduce join star, repo_topic, topic tables on repo search, so that fix extra columns problem on mssql (#5136) (#5229) * This commit will reduce join star, repo_topic, topic tables on repo search, so that fix extra columns problem on mssql * fix tests
-
- 31 Oct, 2018 1 commit
-
-
Lunny Xiao authored
-
- 30 Oct, 2018 1 commit
-
-
Peter Hoffmann authored
* Updated dependency manager via `dep ensure -update code.gitea.io/sdk` * Gopkg.toml was not changed as sdk version is set to "master" * affects webhooks for: Delete, Fork, IssueComment, Release * also contains changes from go-gitea/go-sdk#125 and hence a swagger update Signed-off-by:
Berengar W. Lehr <Berengar.Lehr@kompetenztest.de> Resolves: #4732, #5173
-