summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update xorm and dependencies vendor for feature to dump to other database (#565)Lunny Xiao2017-01-0354-2619/+3135
| | | | | | * update xorm and dependencies vendor for feature to dump to other database * fix golint
* bug fixed for fork repos (#560)Lunny Xiao2017-01-031-1/+1
|
* build failed by deleting release by API (#562)Lunny Xiao2017-01-031-1/+1
|
* Fix benchmarktests (#557)Kjell Kvinge2017-01-031-13/+17
|
* Update maintainer list for LGTMBo-Yi Wu2017-01-031-0/+1
|
* change the default action when deleting a release to not delete tagLunny Xiao2017-01-032-7/+10
|
* fix config session missing data row & resolved #517 (#549)Lunny Xiao2017-01-021-1/+1
|
* Provide description for the INSTALL_LOCK config option (#554)Alvaro Aleman2017-01-021-0/+1
|
* Release API endpointsEthan Koenig2017-01-026-4/+357
|
* Makefile: on Windows, executable should have ".exe" (#550)Andrey Nering2017-01-011-1/+6
|
* Merge pull request #543 from lunny/lunny/fallback_graceful_windowsAndrey Nering2017-01-013-24/+65
|\ | | | | Fix windows build broken by #416
| * fix windows build broken by #416Lunny Xiao2016-12-313-24/+65
| |
* | UI config to toggle whether user email shows up in Explore Users (#336)Thiago Avelino2017-01-015-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * UI config to toggle whether user email shows up in Explore Users * Recommendation made by @tboerger https://github.com/go-gitea/gitea/pull/336/commits/66a1c59fe730eff019ce100673c6800cce7d102d#r94122732 * fixed typo, rename ShowUserEmailInExplore to ShowUserEmail * Fixed typo merged conflict * Hide email in the user profile page if you are active ShowUserEmail ref https://github.com/go-gitea/gitea/pull/336#issuecomment-269843725 * Please replace MustBool() with MustBool(true)
* | Apply dockerfile updates to raspberry dockerfile (#548)Bastian Rinsche2017-01-011-4/+2
| |
* | Replace pull request with issue at issue_template (#547)Bwko2016-12-311-1/+1
| |
* | Merge pull request #545 from lunny/lunny/fix_ui_data_row_missingAndrey Nering2016-12-311-5/+5
|\ \ | | | | | | Partially fix #484: fix admin ui data row missing
| * | resolved #517: fix admin ui data row missingLunny Xiao2016-12-311-5/+5
| | |
* | | Fix wrong anchors for non-latin headings (#3981) (#512)Bwko2016-12-311-1/+1
| | | | | | | | | | | | | | | | | | Change Javascript regular expression to match non-latin characters The regex comes from here: http://stackoverflow.com/questions/150033/regular-expression-to-match-non-english-characters#comment22322603_150078 And this patch should fixed these two issues: #3919 #3843
* | | resolved #485: when migrate empty wiki repo, then ignore (#541)Lunny Xiao2016-12-311-2/+5
|/ /
* / Unit tests for token and update modelsEthan Koenig2016-12-3141-0/+11919
|/
* Restrict creating organisations by user (#193)Schwobaland2016-12-3111-19/+96
| | | | | | | | | | | | | | | | | | | | | | * restrict creating organizations based on right on user * revert bindata.go * reverse vendor lib * revert goimports change * set AllowCreateOrganization default value to true * revert locale * added default value for AllowCreateOrganization * fix typo in migration-comment * fix comment * add coments in migration
* API endpoints for forks (#509)Ethan Koenig2016-12-314-3/+104
|
* Support http service graceful restart (#416)Lunny Xiao2016-12-3120-3/+1919
| | | | | | * support http service graceful restart * fix dependencies
* Updated Dutch translationsBwko2016-12-301-105/+105
|
* replcae go fmt with gofmt command.Bo-Yi Wu2016-12-301-1/+1
| | | | Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
* fix gofmt errorBo-Yi Wu2016-12-307-28/+27
| | | | Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
* Merge pull request #538 from 0xbaadf00d/feature/fix-contrib-linkAndrey Nering2016-12-301-1/+1
|\ | | | | Fix URL link on CONTRIBUTING
| * Fix URL link on CONTRIBUTINGThibault Meyer2016-12-301-1/+1
|/ | | | Signed-off-by: Thibault Meyer <meyer.thibault@gmail.com>
* Notification - Step 1 (#523)Andrey Nering2016-12-315-11/+349
| | | | | | | | * Notification - Step 1 * Add copyright headers * Cache issue and repository on notification model
* push + pull now works with reverse proxy + basic auth on apache 2.4Gogs2016-12-291-62/+75
|
* Speed up conflict checking in pull request creation (#276)typeless2016-12-291-8/+15
| | | | | | | | | | | | | | | | | | * Speed up conflict checking in pull request creation In order to check conflicts of a PR, we set up a working tree by cloning the base branch, which is quite time-consuming when the repository is huge. Instead, this PR uses `git read-tree` and `git apply --check --cached` to check conflicts. For #258 * Use $GIT_INDEX_FILE instead of --index-output to avoid lockfile problem The lockfile gets renamed to the final destination after the operation finishes. But it must be located in the same filesystem, which prevents us from using /tmp. * Temporary file names should not prefixed with '-'
* Tab on user profile to show starred repos (#519)Andrey Nering2016-12-297-76/+115
| | | | | | | | | | | | | | * Tab on user profile to show starred repos * Make golint happy and use transactions on StarRepo function * x -> sess * Use sess.Close() instead of sess.Rollback() * Add copyright * Fix lint
* Cache users on list releases (#527)Lunny Xiao2016-12-291-14/+22
|
* Repo permission bug fixes (#513)Ethan Koenig2016-12-293-35/+7
|
* add default values for SSH settings (#500)Lunny Xiao2016-12-291-25/+31
|
* slight optimization for GetUserRepositories (#498)Lunny Xiao2016-12-291-8/+11
|
* commithgraph / timeline (#428)Kjell Kvinge2016-12-2910-2/+673
| | | | | | | | | | * Add model and tests for graph * Add route and router for graph * Add assets for graph * Add template for graph
* Permissions bug fix for webhooksEthan Koenig2016-12-281-1/+1
|
* Implementation of Folder JumpingSl@ny2016-12-286-5/+54
|
* Replace Gogs with Gitea (#520)Bwko2016-12-288-29/+29
|
* API endpoints for organization teams (#370)Ethan Koenig2016-12-283-0/+70
|
* Optimization for user.GetRepositoryAccesses to reduce db query times (#495)Lunny Xiao2016-12-281-18/+27
| | | | | | * optimization for user.GetRepositoryAccesses to reduce db query times * fix missing cache
* Remove redundant query in collaborator API (#516)Ethan Koenig2016-12-281-24/+4
|
* ignore static files statstics for linguistLunny Xiao2016-12-271-0/+6
|
* Merge pull request #508 from joubertredrat/fix-cookie-nameAndrey Nering2016-12-272-3/+3
|\ | | | | Fix default cookie name
| * Fix default cookie nameJoubert RedRat2016-12-272-3/+3
|/
* Merge pull request #487 from Bwko/NLAndrey Nering2016-12-272-1/+38
|\ | | | | Added Dutch translations to the landingpage
| * Added Dutch translations to the landingpageBwko2016-12-262-1/+38
| |
* | fix installation page ssh domain unavilableLunny Xiao2016-12-271-2/+2
| |
* | fix 500 when delete orgnization and resolved #486Lunny Xiao2016-12-272-8/+11
| |