aboutsummaryrefslogtreecommitdiff
path: root/routers
Commit message (Collapse)AuthorAge
* repo/branch: force delete merged branch (#4128)Unknwon2017-02-15
|
* user/profile: paging doesn't respect private repository count (#4082)Unknwon2017-02-15
|
* Fix compilation errorUnknwon2017-02-15
|
* Commits fetch concurrency (#3837)Thibault Meyer2017-02-15
|
* Implement list/check/delete Repo Collaborator (#3689)Kim "BKC" Carlbäcker2017-02-14
|
* git: delegate all server-side Git hooks (#1623)Unknwon2017-02-14
|
* cookie: enhance cookie security (#3525)Unknwon2017-02-14
|
* webhook: match email with real user in database for test delivery (#3652)Unknwon2017-02-14
|
* org/team: make 'new' as reserved for team name (#3789)Unknwon2017-02-14
|
* Added mssql support. (#3772)dlob2017-02-13
|
* auth: remove MD5 for secure cookie secret (#4117)Unknwon2017-02-13
| | | | Update vendor accordingly
* install: no need to check SMTPFrom is not set (#4118)Unknwon2017-02-13
|
* api/issue: minor code refactor (#3688)Unknwon2017-02-12
|
* Implement more issue-endpoints (#3688)Kim "BKC" Carlbäcker2017-02-12
|
* install: allow sender's username to be non-email (#3717)Unknwon2017-02-12
|
* routers/repo: allow shorter SHA to download archive (#3834)Unknwon2017-02-12
| | | | SHA length from 7-40 is now supported.
* 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.
* config: show Git version in admin panelUnknwon2017-02-11
|
* Improve Open Graph Meta tags (#3664)Unknwon2017-02-11
|
* Add more details on error reportUnknwon2017-02-10
| | | | [CI SKIP]
* Minor improve on error handlingUnknwon2017-02-10
|
* api/repo/milestone: fix change status didn't take effectUnknwon2017-02-10
|
* Configurable SSH cipher suite (#4109)spacetourist2017-02-10
| | | | | | * Configurable SSH cipher suite * Maintain ordering
* models/ssh_key: fix SSH_KEYGEN_PATH not working (#3770)Unknwon2017-02-10
|
* log: start using gopkg.in/clog.v1Unknwon2017-02-09
|
* 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.
* IPythonNotebook: CSS adjustment for PR #4070Unknwon2017-02-07
|
* Ipython notebook support (#4070)Herbert2017-02-07
| | | | | | | | | | * added marked and notebookjs javascript libraries * added ipython notebook render support using javascript libraries * recompiled gogs.css to include ipynb-related css * removed superflous javascript library files
* routers/repo: minor code fix for PR #3758Unknwon2017-02-01
|
* Fix 500 when repo has invalid .editorconfig (#3758)Andrey Nering2017-02-01
| | | | | Creating a notice instead Fixes #3643
* Allow use to set an external tracker url and to redirect user when clicking ↵Rémy Boulanouar2017-01-31
| | | | in Issues same behavior as Wiki. (#3646)
* 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.
* api: display repository forks (#3252)Dennis Chen2017-01-28
| | | | | Lists the forks of a repository at the /:user/:repo/forks endpoint. Signed-off-by: Dennis Chen <barracks510@gmail.com>
* Add 'Organizations' page to user settings (#3587)Unknwon2017-01-27
| | | | User is now able to view full list of organizations belongs to.
* Setting orgs (#3587)Rémy Boulanouar2017-01-27
| | | | | | | | | | | | * Implement organizations listing in setting and allow user to create new organization. * Implement organizations listing in setting and allow user to create new organization. * Add space remove by mistake * Remove unused part of the template * Update display and behavior according to @Unknown remarks
* Fix template error when rendering non-README markdown (#4063)Unknwon2017-01-27
|
* Verify repository is not bare before retrieving blob. (#3996)cybe2017-01-27
|
* Disable local path migration by default (#4033)Unknwon2017-01-26
| | | | | | | Site admin now has to enable manually by config option [repository] ENABLE_LOCAL_PATH_MIGRATION = true. Site admin always grants this permission, but regulars users have to be allowed by site admins in admin user panel.
* Fix unexpected rendering of README when it is not in MarkdownUnknwon2017-01-25
| | | | | This patch also handles case when a file name looks like README but is not a text file (e.g. image, PDF).
* Improve code for fix of #4006Unknwon2017-01-03
|
* Fix incorrect logic check for fork repo actionUnknwon2017-01-03
|
* Fix vulnerability reported in #4006Unknwon2017-01-03
|
* Fix dashboard issues/pull request countingUnknwon2016-12-27
|
* Fix dashboard issue/pull request scopingUnknwon2016-12-27
|
* Minor code fix for PR #3560Unknwon2016-12-27
|
* Fix assigned/created issues in dashboard. (#3560)hgaiser2016-12-27
| | | | | | | | | | | | | | | | | | * Fix assigned/created issues in dashboard. * Use GetUserIssueStats for getting all Dashboard stats. * Use gofmt to format the file properly. * Replace &Issue{} with new(Issue). * Check if user has access to given repository. * Remove unnecessary filtering of issues. * Return 404 error if invalid repository is given. * Use correct number of issues in paginater.