aboutsummaryrefslogtreecommitdiff
path: root/gogs.go
Commit message (Collapse)AuthorAge
...
* webhook: minor improvements on DiscordUnknwon2017-02-21
|
* Prepare releaseUnknwon2017-02-21
|
* webhook: support color for DiscordUnknwon2017-02-21
|
* editor: redirect to new pull request page after create new branchUnknwon2017-02-20
|
* router: fix 404 when repository name contains dotUnknwon2017-02-20
| | | | E.g. atomi.github.io
* diff: able to highlight line with hashtag URLUnknwon2017-02-20
|
* models/webhook: fix bad queryUnknwon2017-02-20
|
* repo: several minor improvementsUnknwon2017-02-19
| | | | | | 1. Fix sample content didn't show up when hook doesn't exist. 2. Fix CSS 'word-break' to use 'break-word' not 'break-all'. 3. Fix single quote in 'locale_en-US.ini' file.
* api: add list user and organization's repositories (#3984)Unknwon2017-02-18
|
* cron: add repository archive cleanup (#4061)Unknwon2017-02-18
|
* install: able to enable builtin SSH server (#3773)Unknwon2017-02-18
|
* webhook: add native Discord supportUnknwon2017-02-18
|
* repo: assignee can be anyone who has read access (#3739)Unknwon2017-02-17
|
* repo/release: add pagination (#2164)Unknwon2017-02-17
|
* Initial version of protected branches (#776)Unknwon2017-02-17
| | | | | - Able to restrict force push and deletion - Able to restrict direct push
* Security: fix XSS attack on milestoneUnknwon2017-02-17
| | | | Reported by Miguel Ángel Jimeno.
* refactoring: SSH and HTTP push procees is now unifiedUnknwon2017-02-16
| | | | | | | | | | | | | | We used to handle SSH and HTTP push separately which produces duplicated code, but now with post-receive hook, the process is unified to one single place and much cleaner. Thus, UpdateTask struct is removed. Narrow down the range of Git HTTP routes to reduce condufsing HTTP Basic Authentication window popup on browser. By detecting <old-commit, new-commit, ref-name> inside post-receive hook, Git HTTP doesn't need to read the whole content body anymore, which completely solve the RAM problem reported in #636.
* repo/editor: fix breadcrumb path cuts parent dirs (#3859)Unknwon2017-02-16
|
* models/repo: UpdateLocalCopy should always aceept valid branch nameUnknwon2017-02-16
|
* Simplify descriptionUnknwon2017-02-15
|
* Security: prevent XSS attach on wiki pageUnknwon2017-02-15
| | | | Reported by Miguel Ángel Jimeno.
* wiki: handle '#' in edit page (#3767)Unknwon2017-02-15
|
* git: delegate all server-side Git hooks (#1623)Unknwon2017-02-14
|
* org/team: make 'new' as reserved for team name (#3789)Unknwon2017-02-14
|
* install: no need to check SMTPFrom is not set (#4118)Unknwon2017-02-13
|
* diff: fix can't show compare page for fork repository (#4110)Unknwon2017-02-12
|
* install: allow sender's username to be non-email (#3717)Unknwon2017-02-12
|
* webhook: remove bad characters of Slack-type webhook for Discord (#4088)Unknwon2017-02-11
|
* auth: few security improvementsUnknwon2017-02-11
|
* install: validate SMTP FromUnknwon2017-02-11
| | | | | Invalid SMTP From will cause fatal error in post-install and exit the program.
* Able to disable non-admin to create new organization (#1556)Unknwon2017-02-10
| | | | | Add new config option '[admin] DISABLE_REGULAR_ORG_CREATION', by default it's 'false'.
* Minor improve on error handlingUnknwon2017-02-10
|
* log: start using gopkg.in/clog.v1Unknwon2017-02-09
|
* models/repo: clean up repository local copy after rename (#3641)Unknwon2017-02-09
|
* models/pull: load attributes when fetch list of pull requests (#4089)Unknwon2017-02-09
| | | | | | Code only fetched issues corresponding to the pull requests, and left out necessary base/head repository objects, which is required later to generate API format.
* routers/repo/branch: fix can't delete branch with slashes after merge (#4089)Unknwon2017-02-09
|
* models: remove TiDB embedded driver supportUnknwon2017-02-09
| | | | | Users should all start tidb-server process and connect to it as if it is a MySQL server with MySQL drivers.
* routers/repo/pull: fix 404 on PR compare (#4074)Unknwon2017-02-08
| | | | | | | | | | | | Due to recent code refactor, ctx.PullRequest is not initialized for route repo.CompareAndPullRequest, which leads the UI thinks the compare is not happening inside the same repository. The current fix is to allow compare URL to include redundant head user name so everything works fine again, but code logic isn't as clean as before. Made comments about possible future fix.
* models/org_team: panic when team num_repos is negative (#3671)Unknwon2017-02-08
|
* IPythonNotebook: CSS adjustment for PR #4070Unknwon2017-02-07
|
* cmd/serve: minor code improve for PR #4078Unknwon2017-02-01
|
* routers/repo: minor code fix for PR #3758Unknwon2017-02-01
|
* bindata: generate for PR #3646Unknwon2017-01-31
|
* Do a fast-fail testing on repository URL before mirroringUnknwon2017-01-31
| | | | | To ensure the URL is accessible under good condition to prevent long blocking on URL resolution without syncing anything.
* Prepare for releaseUnknwon2017-01-31
|
* Fix can not save release draft as draft again (#3669)Unknwon2017-01-30
| | | | | But release was not saved as draft in the first time, is not possible to be draft afterwards because the Git tag was created.
* Move models/mail.go to modules/mail.goUnknwon2017-01-30
| | | | To use interface to replace *models.User in avoiding cycle import.
* Fix create user can use user email which is used (#4016)Unknwon2017-01-29
|
* Fix showing total number of PRs when user does not have any repositories (#4007)Unknwon2017-01-28
|
* Able to set custom Access-Control-Allow-Origin header (#3987)Unknwon2017-01-28
| | | | Added new config option '[http] ACCESS_CONTROL_ALLOW_ORIGIN'.