aboutsummaryrefslogtreecommitdiff
path: root/routers/repo
Commit message (Collapse)AuthorAge
* Merge pull request #1249 from donbowman/master无闻2015-07-25
|\ | | | | in routers/repo/download.go, don't set mime type, let go figure it out.
| * don't set mime type to text/plain. This will break serving e.g. raw images,Don Bowman2015-04-08
| | | | | | | | | | | | | | | | | | html, etc According to http://golang.org/pkg/net/http/#DetectContentType "If the Header does not contain a Content-Type line, Write adds a Content-Type set to the result of passing the initial 512 bytes of written data to DetectContentType."
* | fix about #1289Unknwon2015-07-19
| |
* | fix hidden bug on tpl renderingUnknwon2015-07-10
| |
* | fix #1112Unknwon2015-07-10
| |
* | Set Content-Type to text/plain for http status 401Linquize2015-03-28
| | | | | | | | This is because git command line shows the failure reason only if Content-Type is text/plain.
* | #1070 Clearer error message for illegal charactersUnknwon2015-03-26
|/
* mirror fix of #1105Unknwon2015-03-25
|
* Allow to migrate through git:// protocolLinquize2015-03-20
|
* #1067: Deleting users should remove them from collaborator listsUnknwon2015-03-17
| | | | - fix delete user but repository watches are not decreased
* fix read access team visibility of private repoUnknwon2015-03-16
|
* #1040: dashboard no longer accessible when repo is missingUnknwon2015-03-16
|
* fix HTTP/HTTPS push update func call panic #1037 and `http: multiple ↵Unknwon2015-03-12
| | | | response.WriteHeader calls`
* remove unused scripts and simplify migrate form definitionUnknwon2015-03-11
|
* Handle submodules without a .gitmodules entry - fix #1023Filippo Valsorda2015-03-10
|
* routers/repo/setting.go: fix LDAP cannot validate password #1006Unknwon2015-03-05
|
* Merge branch 'access' of github.com:gogits/gogs into devUnknwon2015-02-28
|\
| * models: fix issue with transfer repositoryUnknwon2015-02-24
| | | | | | | | README: fix typo
| * v4 migration, merge 'dev', clean code and mirror fixUnknwon2015-02-23
| |
| * Merge branch 'access' of github.com:gogits/gogs into accessUnknwon2015-02-22
| |\
| | * Merge pull request #959 from phsmit/access_update无闻2015-02-21
| | |\ | | | | | | | | Updating context and fixing permission issues
| | | * Updating context and fixing permission issuesPeter Smit2015-02-16
| | | | | | | | | | | | | | | | | | | | | | | | The boolean flags in the repo context have been replaced with mode and two methods Also, the permissions have been brought more in line with https://help.github.com/articles/permission-levels-for-an-organization-repository/ , Admin Team members are able to change settings of their repositories.
| | * | Make sure that a mirror can't be written to by http or sshPeter Smit2015-02-16
| | |/
| * | Merge branch 'dev' of github.com:gogits/gogs into accessUnknwon2015-02-22
| |\ \ | | |/ | |/| | | | | | | | | | | | | | | | | | | Conflicts: gogs.go models/models.go models/user.go templates/.VERSION templates/org/home.tmpl
| * | code fix #941 caution: undertestUnknwon2015-02-13
| | |
| * | Merge remote-tracking branch 'mine/access_refactor' into access_refactorPeter Smit2015-02-12
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cmd/serve.go models/access.go models/migrations/migrations.go models/org.go models/repo.go models/user.go modules/middleware/org.go modules/middleware/repo.go routers/api/v1/repo.go routers/org/teams.go routers/repo/http.go routers/user/home.go
| | * | Change constants to UPPERCASE_WITH_UNDERSCORE stylePeter Smit2015-02-09
| | | |
| | * | Refactoring of the Access TablePeter Smit2015-02-06
| | | | | | | | | | | | | | | | | | | | | | | | This commit does a lot of the work of refactoring the access table in a table with id's instead of strings. The result does compile, but has not been tested. It may eat your kittens.
| * | | Refactoring of the Access TablePeter Smit2015-02-12
| | | | | | | | | | | | | | | | | | | | | | | | This commit does a lot of the work of refactoring the access table in a table with id's instead of strings. The result does compile, but has not been tested. It may eat your kittens.
| * | | Merge pull request #925 from phsmit/newcollaboration无闻2015-02-11
| |\| | | | | | | | | | Collaboration
| | * | Merge branch 'dev' into newcollaborationPeter Smit2015-02-05
| | |\ \
| | * | | Introducing Collaboration StructPeter Smit2015-01-23
| | | | |
* | | | | Merge pull request #992 from theangryangel/fix/ldap-auth无闻2015-02-28
|\ \ \ \ \ | | | | | | | | | | | | Attempt 3 to fix LDAP login issues when git pushing after password change
| * | | | | Attempt #3 of ldap fixesGogs2015-02-27
| |/ / / /
* | | | / Properly calculate the number of open issues per labelRaphael Randschau2015-02-23
| |_|_|/ |/| | |
* | | | models: able to rename user with diff letter cases #981Unknwon2015-02-22
| | | | | | | | | | | | | | | | | | | | - templates/org: mirror fix on name output - routers: add missing error check
* | | | routers: able to migrate repo from local pathUnknwon2015-02-22
| | | | | | | | | | | | | | | | - modules/middleware/context.go: add HandleAPI method
* | | | Remove GoGet option from repository and handle it with ?go-get=1 insteadPeter Smit2015-02-17
|/ / / | | | | | | | | | The normal go get protocol is to show the go-import meta tag when ?go-get=1 is appended to the url. This commit implements that behaviour and cleans the go-get option from the repository settings page.
* | | Merge pull request #911 from TonyTsangHK/dev无闻2015-02-09
|\ \ \ | | | | | | | | Link to previous commited source file (diff.view_file button) instead of returning 404 for deleted files.
| * | | Link to previous commited source file (diff.view_file button) instead of ↵Tony Tsang2015-02-06
| | |/ | |/| | | | | | | returning 404 for deleted files.
* | | routers/repo/http.go: allow HTTP push/pull by token for #845Unknwon2015-02-07
| | |
* | | Merge pull request #845 from compressed/token_http无闻2015-02-07
|\ \ \ | | | | | | | | allow http push by token - #842
| * | | allow http push by token - #842Christopher Brickley2015-01-08
| | | |
* | | | models/action.go: add action reopen for #462Unknwon2015-02-06
| | | | | | | | | | | | | | | | - models/issue.go: format comment type names
* | | | models/action.go: mirror fix on #892Unknwon2015-02-06
| |/ / |/| | | | | | | | | | | - modules/base/markdown.go: fix issue link issue - routers/repo/view.go: remove useless code
* | | routers/repo: set raw page content type to 'text/plain' #828Unknwon2015-01-31
| | |
* | | modules/base: add RenderCommitMessage with XSS-safe and special linksUnknwon2015-01-30
| |/ |/| | | | | - update russian locale
* | Merge pull request #822 from phsmit/fix_807无闻2015-01-22
|\ \ | |/ |/| Fix #807 parse the userinfo with the golang tools
| * Fix #807 parse the userinfo with the golang toolsPeter Smit2015-01-02
| | | | | | | | Note, this is now only fixed with Go version >= 1.4.2, see this bug in Go: https://github.com/golang/go/commit/07d86b1f2db73c6a0716aec4d4cd62dfacb04a21
* | Optmize git-fsck options and fix #820Unknwon2015-01-02
|/