Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | repo/pull: handle head repository of merged pull requests deleted | Unknwon | 2017-03-10 |
| | |||
* | templates/repo: only show Git stats in repository home page (#3518) | Unknwon | 2017-03-10 |
| | | | | | | | | | Move 'Commits' and 'Releases' tabs down to body. This patch also reduces page load time for pages that do not need to use commits count anywhere. Get commits count can hurt performance badly for huge repositories that has tens of thousands commits like Linux Kernel. | ||
* | release: improve page load performance | Unknwon | 2017-03-10 |
| | | | | | | | | Previously, we load all releases of a repository which could hurt performance when the repository has a lot of releases. Now we're able to only load releases in current page view we need to show by matching with 'tag_name'. | ||
* | webhook: add issue comment event | Unknwon | 2017-03-09 |
| | |||
* | webhook: support Issues event (#2319) | Unknwon | 2017-03-09 |
| | | | | Also addresses #3485. | ||
* | repo/setting: fix admin cannot transfer organizational repository | Unknwon | 2017-03-07 |
| | |||
* | repo/setting: fix admin cannot delete organizational repository wiki | Unknwon | 2017-03-07 |
| | |||
* | git_hook: add new env var 'GOGS_AUTH_USER_EMAIL' (#4252) | Unknwon | 2017-03-06 |
| | |||
* | routers/repo/http: only prompt HTTP Basic Authentication when intended | Unknwon | 2017-03-04 |
| | | | | | | | | | Sometimes user could simply request wrong URL, but if that wrong URL has nothing related Git HTTP operations, HTTP Basic Authentication should not prompted. Instead, clean 404 page should be presented. The patch also supports Git HTTP operations without '.git' suffix to the repository name, which addresses #4226 and #4189. | ||
* | admin: fix template error | Unknwon | 2017-02-28 |
| | | | | Also a try to display key-value pairs in table. | ||
* | webhook: add fork event | Unknwon | 2017-02-27 |
| | |||
* | webhook: able to detect delete branch or tag (#2315) | Unknwon | 2017-02-27 |
| | |||
* | repo: able to perform initial commit on behave of actual user | Unknwon | 2017-02-27 |
| | |||
* | editor: fix compile error | Unknwon | 2017-02-27 |
| | |||
* | refactoring: modules/auth/*_form.go -> modules/form | Unknwon | 2017-02-27 |
| | |||
* | repo: does not allow fork to original owner (#4182) | Unknwon | 2017-02-25 |
| | | | | But can still fork to organizations. | ||
* | repo: able to add organization member as repository collaborator | Unknwon | 2017-02-24 |
| | |||
* | protect_branch: only list teams have write access | Unknwon | 2017-02-24 |
| | | | | | List teams without write access to the repository cause confusion to make users think members of team could push to the branch. | ||
* | repo: add protect branch whitelist (#4177) | Unknwon | 2017-02-23 |
| | | | | | Add options to add users and teams to whitelist of a protected branch. This is only available for organizational repositories. | ||
* | models/access: hasAccess only need userID not user object | Unknwon | 2017-02-23 |
| | |||
* | pull: fix split view on pull request page (#3695) | Unknwon | 2017-02-23 |
| | |||
* | editor: fix cannot redirect to correct pull request URL | Unknwon | 2017-02-23 |
| | | | | | | | | Was only possible to correctly redirect to pull request page within same repository. And didn't take care of case when upstream has disabled pull request. Also add a new method 'PullRequestURL' to unify the code. | ||
* | release: fix unable to edit release of a fork repository | Unknwon | 2017-02-23 |
| | |||
* | repo/setting: fix admin cannot delete organizational repository | Unknwon | 2017-02-22 |
| | |||
* | webhook: fix organizational webhook last delivery status cannot be updated | Unknwon | 2017-02-22 |
| | |||
* | webhook: also only enable certain types (#3356) | Unknwon | 2017-02-21 |
| | | | | Add new config option '[webhook] TYPES’. | ||
* | webhook: only trigger specific webhook for test delivery (#3030) | Unknwon | 2017-02-21 |
| | |||
* | webhook: support color for Discord | Unknwon | 2017-02-21 |
| | |||
* | editor: redirect to new pull request page after create new branch | Unknwon | 2017-02-20 |
| | |||
* | repo: several minor improvements | Unknwon | 2017-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) | Unknwon | 2017-02-18 |
| | |||
* | this fix #3958 (#4153) | huqiangit | 2017-02-18 |
| | | | Deal with '/' in Wiki page title. | ||
* | commits: able to specify pageSize dynamically (#3965) | Unknwon | 2017-02-18 |
| | | | | | | | Usage: <url>?page={page}&pageSize={pageSize} Also avoid/removed getting total commits count for pagination, users are only allowed navigation by 'newer' and 'older'. | ||
* | admin/config: display repository related settings (#3816) | Unknwon | 2017-02-18 |
| | |||
* | install: able to enable builtin SSH server (#3773) | Unknwon | 2017-02-18 |
| | |||
* | webhook: add native Discord support | Unknwon | 2017-02-18 |
| | |||
* | repo: assignee can be anyone who has read access (#3739) | Unknwon | 2017-02-17 |
| | |||
* | repo/release: add pagination (#2164) | Unknwon | 2017-02-17 |
| | |||
* | Initial version of protected branches (#776) | Unknwon | 2017-02-17 |
| | | | | | - Able to restrict force push and deletion - Able to restrict direct push | ||
* | Security: fix XSS attack on milestone | Unknwon | 2017-02-17 |
| | | | | Reported by Miguel Ángel Jimeno. | ||
* | refactoring: SSH and HTTP push procees is now unified | Unknwon | 2017-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) | Unknwon | 2017-02-16 |
| | |||
* | repo/branch: force delete merged branch (#4128) | Unknwon | 2017-02-15 |
| | |||
* | user/profile: paging doesn't respect private repository count (#4082) | Unknwon | 2017-02-15 |
| | |||
* | Fix compilation error | Unknwon | 2017-02-15 |
| | |||
* | Commits fetch concurrency (#3837) | Thibault Meyer | 2017-02-15 |
| | |||
* | Implement list/check/delete Repo Collaborator (#3689) | Kim "BKC" Carlbäcker | 2017-02-14 |
| | |||
* | git: delegate all server-side Git hooks (#1623) | Unknwon | 2017-02-14 |
| | |||
* | cookie: enhance cookie security (#3525) | Unknwon | 2017-02-14 |
| | |||
* | webhook: match email with real user in database for test delivery (#3652) | Unknwon | 2017-02-14 |
| |