summaryrefslogtreecommitdiffstats
path: root/routers
Commit message (Collapse)AuthorAgeFilesLines
* Rename module: middleware -> contextUnknwon2016-03-1145-335/+375
|
* Updated and created were appended with _unix. Fresh databases have only the ↵Marin Jankovski2016-03-111-1/+1
| | | | newly named fields.
* readd 'dashboard' to titleAlec S2016-03-101-1/+1
|
* Merge branch 'develop' of github.com:gogits/gogs into developAlec S2016-03-091-4/+13
|\
| * Allowing site admins to view private repositories in org/homeJan Christophersen2016-03-081-4/+13
| |
* | fix indentationAlec S2016-03-091-1/+1
| |
* | Remove dashboard keyword from titleAlec S2016-03-091-1/+1
| |
* | change page titles for user and org dashesAlec S2016-03-091-2/+2
|/
* Fix pull request availability checkUnknwon2016-03-062-4/+14
|
* Remove duplicated of codeUnknwon2016-03-061-53/+48
|
* Added: Ability to delete org avatar.Tamás Molnár2016-03-062-6/+11
|
* #1146 finish new access rights for collaboratorsUnknwon2016-03-053-10/+28
|
* #1146 finsih UI work for access mode of collaboratorsUnknwon2016-03-052-21/+28
| | | | | Collaborators have write access as default, and can be changed via repository collaboration settings page to change between read, write and admin.
* #1157 some avatar setting changesUnknwon2016-03-051-9/+27
| | | | - Allow to delete current avatar
* #1597 fix premission logic check of pull requestUnknwon2016-03-041-7/+14
|
* #1597 support pull requests in same repositoryUnknwon2016-03-041-22/+45
|
* Minor fixes for #2746Unknwon2016-03-041-2/+1
|
* Add ability to delete single wiki pages.Josh Frye2016-03-041-0/+18
|
* Minor fixes for #2745Unknwon2016-03-031-4/+2
|
* Repo setting to delete and disable wikiJosh Frye2016-03-031-0/+26
|
* #1891 attempt to fix expected invalid CSRF tokenUnknwon2016-03-031-1/+0
| | | | - Remove unused config settings `[picture] service`
* Post work for #2637Unknwon2016-02-272-4/+6
| | | | Improve test cases, config settings, also show SSH config settings on admin config panel.
* Merge pull request #2694 from mhartkorn/pullrefsUnknwon2016-02-261-6/+13
|\ | | | | Improved Pull Request refs
| * Call PushToBaseRepo() also on Pull Request creation and not only on git pushMartin Hartkorn2016-02-241-6/+13
| |
* | #2697 fix panic when close issue via commit messageUnknwon2016-02-251-2/+1
| |
* | Add new config option for builtin SSH serverUnknwon2016-02-251-2/+2
| | | | | | | | | | | | | | Config option [server] SSH_LISTEN_PORT to the port the builtin SSH server will be listen. It can be different from SSH_PORT which is supposed to be exposed in the clone URL. This should solve the problem when user runs Gogs inside Docker container and still want to use builtin SSH server.
* | Minor fix for #2660Unknwon2016-02-241-3/+8
| |
* | Test mailer button. Addresses #1531Josh Frye2016-02-241-0/+8
|/
* #1821 add actions for close and reopen issuesUnknwon2016-02-221-1/+1
|
* Make markdown as an independent moduleUnknwon2016-02-206-19/+24
|
* Move cron module to independent packageUnknwon2016-02-202-2/+2
| | | | Make it easier to keep track of upstream changes and bug fixes
* Fix #857Unknwon2016-02-201-42/+48
|
* Merge pull request #2634 from nanoant/patch/ldap-attributes-in-bindUnknwon2016-02-201-0/+1
|\ | | | | LDAP: Fetch attributes in Bind DN context
| * LDAP: Fetch attributes in Bind DN context optionAdam Strzelecki2016-02-201-0/+1
| | | | | | | | | | | | | | | | | | This is feature is workaround for #2628 (JumpCloud) and some other services that allow LDAP search only under BindDN user account, but not allow any LDAP search query in logged user DN context. Such approach is an alternative to minimal permissions security pattern for BindDN user.
* | Merge pull request #2647 from andreynering/issue-templateUnknwon2016-02-202-0/+59
|\ \ | |/ |/| Implement issue and pull request templates
| * Implement issue and pull request templates.Andrey Nering2016-02-182-0/+59
| | | | | | | | | | | | | | | | | | | | Similar to GitHub: https://github.com/blog/2111-issue-and-pull-request-templates Priority: - root - .gogs - .github
* | Fix panic when view profile without signinUnknwon2016-02-191-1/+1
| | | | | | | | Also fix that no matter who, still able to see organizations with private membership.
* | Merge pull request #2663 from Download-Fritz/MirrorForksUnknwon2016-02-191-4/+4
|\ \ | | | | | | #2505 Allow to fork and disallow to create PRs for mirrors.
| * | Rename MustEnablePulls() to MustAllowPulls() and simplify the contained ↵Download-Fritz2016-02-191-6/+4
| | | | | | | | | | | | check to AllowsPulls().
| * | #2505 Allow to fork and disallow to create PRs for mirrors.Download-Fritz2016-02-191-1/+3
| |/
* / #2650 fix possbility that use email as pusher user nameUnknwon2016-02-171-2/+9
|/ | | | | | | | | | Remove the possibility of using email as user name when user actually push through combination of email and password with HTTP. Also refactor update action function to replcae tons of arguments with single PushUpdateOptions struct. And define the user who pushes code as pusher, therefore variable names shouldn't be confusing any more.
* #2639 add branch prefix for test webhookUnknwon2016-02-171-1/+2
|
* #2630 fix wrong user avatar link in webhookUnknwon2016-02-151-1/+1
| | | | | Was using the wrong method and now uses the method which checks if the avatar link is relative or not.
* Minor fix for #2624Unknwon2016-02-151-5/+3
|
* Merge pull request #2624 from mhartkorn/convert-mirror-to-repoUnknwon2016-02-151-0/+32
|\ | | | | Convert mirrors to regular repositories
| * Moved UpdateRepository() to CleanUpMigrateInfo() and correctly delete mirror ↵Martin Hartkorn2016-02-151-1/+1
| | | | | | | | from database
| * Refactored according to suggestionsMartin Hartkorn2016-02-141-4/+3
| |
| * Add missing safety checkMartin Hartkorn2016-02-141-0/+5
| |
| * Convert mirrors to regular repositories.Martin Hartkorn2016-02-141-0/+28
| |
* | Merge pull request #2578 from exmex/developUnknwon2016-02-141-2/+3
|\ \ | | | | | | Admins and user itself sees private org relations on profile