Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Diff patch (#3345) | Dennis Chen | 2016-07-30 | 2 | -3/+56 |
| | | | | | | | | | | | | | | | | * Add support for .diff and .patch Add the ability to get text-diff and format-patch by adding .diff or .patch in the end of a commit url. Issue #2641 * models: git_diff: various fixes * Renames commitId to commitID. * Writes stderr to a bytes.Buffer and displays proper error message on command failure. * Various style changes. Signed-off-by: Dennis Chen <barracks510@gmail.com> | ||||
* | Update locales | Unknwon | 2016-07-30 | 18 | -161/+212 |
| | |||||
* | Fix of template error in "/:owner/:repo/pulls" (#3343) | Okunev Yu Dmitry | 2016-07-29 | 1 | -1/+1 |
| | | | | | | | | | | If anonymous (not signed in user) requests page "/:owner/:repo/pulls" he gets an error: template: repo/issue/list:11:105: executing "repo/issue/list" at <.PullRequestCtx.Base...>: nil pointer evaluating *models.Repository.Link This commit fixes that. Signed-off-by: Dmitry Yu Okunev <dyokunev@ut.mephi.ru> | ||||
* | Update glide.lock | Unknwon | 2016-07-28 | 1 | -1/+1 |
| | |||||
* | Minor fix for pull request template [CI SKIP] | Unknwon | 2016-07-28 | 1 | -1/+1 |
| | |||||
* | models/release: Update Sha1 if tag already exists (#3331) | 마누엘 | 2016-07-28 | 1 | -0/+1 |
| | | | | | | Since the release struct is initialized with the current `HEAD` of the current `release.Target` the commit id has to be updated if the tag commit already exists. Otherwise the linked commit on the release page will target the current `HEAD` at release time. | ||||
* | Update GitHub templates | Unknwon | 2016-07-28 | 2 | -10/+17 |
| | |||||
* | routers/repo/release: Use correct branch reference (#3330) | 마누엘 | 2016-07-27 | 1 | -9/+14 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When calculating the current behind commit count the calculation should use the current release target to get the total commit count. Should the release target not exist anymore the calculation will return zero for the newest release on that target. Older releases on that target will then use that calculated commit count as reference. The only use case that is now somehow invalid is when the release target was merged / deleted after a tag on that release target: master 1 - - - - - - - 6 \ / branch 2 - 3 - 4 - 5 When `4` is the last tag on branch `branch` and the branch `branch` is not yet deleted the calculated numbers would be: 1 commits to branch since this release Now if the branch `branch` gets deleted the calculation function will not find the branch and use the commit count of the newest release (`4`) as reference resulting in: 0 commit to branch since this release This fixes #3326 | ||||
* | Added Full Name to CreateUser api call (#3333) | Richard Mahn | 2016-07-27 | 1 | -0/+1 |
| | |||||
* | routers/repo/issue: remove redundant format string | Unknwon | 2016-07-26 | 1 | -13/+13 |
| | |||||
* | #3327 fix wrong table name in Join | Unknwon | 2016-07-26 | 4 | -4/+4 |
| | |||||
* | #3281 fix x.Iterate returns nothing inside session scope with SQLite3 | Unknwon | 2016-07-26 | 6 | -98/+35 |
| | |||||
* | models/ssh_key: code cleaning | Unknwon | 2016-07-26 | 5 | -63/+61 |
| | |||||
* | Fix issue event octicon CSS | Unknwon | 2016-07-26 | 2 | -2/+10 |
| | |||||
* | #1601 support delete issue comment | Unknwon | 2016-07-26 | 14 | -27/+113 |
| | |||||
* | repo/settings/options: take naming style examples out of locale string | Unknwon | 2016-07-25 | 3 | -24/+24 |
| | |||||
* | Add org.getUserTeams to reduce redundant code | Unknwon | 2016-07-24 | 2 | -33/+31 |
| | |||||
* | #1384 add pagination for repositories | Unknwon | 2016-07-24 | 21 | -193/+361 |
| | |||||
* | Refactor User.Id to User.ID | Unknwon | 2016-07-24 | 79 | -328/+333 |
| | |||||
* | Use struct for UI settings | Unknwon | 2016-07-24 | 16 | -48/+48 |
| | |||||
* | #2790 fix not detect diff style in pull request file changes | Unknwon | 2016-07-23 | 1 | -0/+1 |
| | |||||
* | Add some tutorial links [CI SKIP] | Unknwon | 2016-07-23 | 1 | -0/+2 |
| | |||||
* | Minor HTML fix for delete repository notice | Unknwon | 2016-07-23 | 2 | -3/+3 |
| | |||||
* | Remove redundant Unix timestamp method call | Unknwon | 2016-07-23 | 13 | -38/+38 |
| | | | | Unix() already uses UTC as timezone | ||||
* | conf: change default mirror checking interval to 10m | Unknwon | 2016-07-23 | 3 | -8/+4 |
| | |||||
* | #3186 fix wrong link for new pull request button of non-fork repository | Unknwon | 2016-07-23 | 1 | -1/+1 |
| | |||||
* | Update README [CI SKIP] | Unknwon | 2016-07-23 | 2 | -2/+2 |
| | |||||
* | #2903 use different reversed words and patterns for repository and user | Unknwon | 2016-07-23 | 6 | -37/+52 |
| | |||||
* | #3181 detect situation when base branch is deleted in pull request | Unknwon | 2016-07-23 | 4 | -3/+11 |
| | |||||
* | #3066 fix create organization ignores full name property | Unknwon | 2016-07-23 | 2 | -2/+1 |
| | |||||
* | api: fix panic if anonymous user request admin API | Unknwon | 2016-07-23 | 1 | -1/+1 |
| | | | | Add sign in check before check user account level | ||||
* | #3157 create user path before rename repository while transfer | Unknwon | 2016-07-23 | 4 | -3/+4 |
| | | | | os.Rename does not create parent directory automatically when not exist | ||||
* | #3107 fix mention regex does not include dash | Unknwon | 2016-07-23 | 1 | -1/+1 |
| | |||||
* | #3076 detect invalid tag name git error | Unknwon | 2016-07-23 | 11 | -13/+40 |
| | |||||
* | Added coding style modes to SimpleMDE (#3286) | Richard Mahn | 2016-07-23 | 286 | -0/+49679 |
| | | | | | | * Added coding style modes to SimpleMDE * Moved the CodeMirror addon from simplemd to codemirror directory | ||||
* | add IsSubmodule field to DiffFile and hide view file button on diff page for ↵ | Siarhei Navatski | 2016-07-23 | 2 | -8/+14 |
| | | | | submodules (#3097) | ||||
* | Update locales [CI SKIP] | Unknwon | 2016-07-22 | 18 | -60/+128 |
| | |||||
* | Bump version | Unknwon | 2016-07-22 | 6 | -6/+6 |
| | |||||
* | Fix GitHub wrong repo language detection | Unknwon | 2016-07-21 | 1 | -0/+2 |
| | |||||
* | avatar: make custom and generated avatars equal (#3301) | Dennis Chen | 2016-07-21 | 2 | -5/+4 |
| | | | | | | Sets all avatars to use PNG image format. Keeps avatars consistent at 290x290px resolution. Signed-off-by: Dennis Chen <barracks510@gmail.com> | ||||
* | #3299 don’t pop up confirm box when leave on signin page | Unknwon | 2016-07-21 | 1 | -0/+1 |
| | |||||
* | #3291 fix SQLite3 session read/update conflict on create new issue | Unknwon | 2016-07-21 | 1 | -7/+11 |
| | |||||
* | #3295 fix wrong logic judgement | Unknwon | 2016-07-21 | 4 | -4/+4 |
| | |||||
* | Update dep revision | Unknwon | 2016-07-17 | 2 | -2/+2 |
| | |||||
* | Refresh repository mirror from database when the repository's name has ↵ | lstahlman | 2016-07-17 | 1 | -0/+9 |
| | | | | changed. (#3276) | ||||
* | Update locales and .gopmfile | Unknwon | 2016-07-17 | 11 | -169/+174 |
| | |||||
* | Fix misselection of issues view type | Unknwon | 2016-07-17 | 1 | -1/+1 |
| | |||||
* | Updated Issues and Issues Stats functions to include table aliases. This ↵ | lstahlman | 2016-07-17 | 1 | -21/+21 |
| | | | | addresses errors involving ambiguous column references when filtering issues by the view type "Mentioning you". (#3269) | ||||
* | models/webhook: restrict deletion to be explicitly with repo and org ID | Unknwon | 2016-07-17 | 7 | -48/+55 |
| | |||||
* | api: delete repository webhooks (#3275) | Dennis Chen | 2016-07-17 | 2 | -3/+15 |
| | | | | | | | | Allows the deletion of a webhook from a repository at the /:user/:repo/hooks/:id endpoint. Solves drone/drone issue #1603. Signed-off-by: Dennis Chen <barracks510@gmail.com> |