summaryrefslogtreecommitdiffstats
path: root/gogs.go
Commit message (Collapse)AuthorAgeFilesLines
* Handle windows deletion when startUnknwon2016-03-231-1/+1
| | | | Fix #2872
* #1692 api: admin list and create team under organizationUnknwon2016-03-211-1/+1
|
* Add route for #2846Unknwon2016-03-211-1/+1
|
* Remove code for checking ssh-keygenUnknwon2016-03-191-1/+1
|
* #2850 fix potential SSH commands dislocationUnknwon2016-03-181-1/+1
| | | | | | | When use builtin SSH server with concurrent operations, there are probabilities One connection could use the command from another connections. Fix this by set SSH_ORIGINAL_COMMAND for each command, not set in global scope.
* #2814 LOWER() column value within searchUnknwon2016-03-161-1/+1
|
* Improve repository lable styleUnknwon2016-03-151-1/+1
| | | | | - add border-radius to filter list items - use color as background of label for issue/pull view page
* #13 fix admin can't search private reposUnknwon2016-03-151-1/+1
| | | | - update glide info
* #1692 add CRUD issue APIsUnknwon2016-03-131-1/+1
| | | | | - Fix go-gogs-client#10 - Related to #809
* #1891 attempt to fix invalid csrf tokenUnknwon2016-03-121-1/+1
|
* #1286 #2098 Alpha support for custom templatesUnknwon2016-03-121-1/+1
| | | | No guarantee for compatibility with future changes
* #13 finish user and repository searchUnknwon2016-03-111-1/+1
| | | | Both are possible on explore and admin panel
* Rename module: middleware -> contextUnknwon2016-03-111-1/+1
|
* Fix ref comment from commit create empty feedUnknwon2016-03-111-1/+1
|
* #2727 fix incompatible SQL in PostgreSQLUnknwon2016-03-091-1/+1
|
* #2302 Replace time.Time with Unix Timestamp (int64)Unknwon2016-03-091-1/+1
|
* Fix pull request availability checkUnknwon2016-03-061-1/+1
|
* Prepare releaseUnknwon2016-03-061-1/+1
|
* Remove duplicated of codeUnknwon2016-03-061-1/+1
|
* Minor fixes for #2766Unknwon2016-03-061-1/+1
|
* #1146 finish new access rights for collaboratorsUnknwon2016-03-051-1/+1
|
* #1597 fix activitity feeds for pull requestsUnknwon2016-03-051-1/+1
|
* #1157 some avatar setting changesUnknwon2016-03-051-1/+1
| | | | - Allow to delete current avatar
* #1597 support pull requests in same repositoryUnknwon2016-03-041-1/+1
|
* Minor fixes for #2746Unknwon2016-03-041-1/+1
|
* #2743 and #2751 fix bad SQL generated by XORMUnknwon2016-03-041-1/+1
| | | | Use hand-written SQL to do complex query
* #2748 fix redirect loop with auto-signinUnknwon2016-03-041-1/+1
|
* Minor fixes for #2745Unknwon2016-03-031-1/+1
|
* #1891 attempt to fix expected invalid CSRF tokenUnknwon2016-03-031-1/+1
| | | | - Remove unused config settings `[picture] service`
* #2743 workaround to fix XORM problemUnknwon2016-03-031-1/+1
|
* #2727 make IN clause compatible with PostgresUnknwon2016-03-011-1/+1
|
* Allow setting git operations timeoutsUnknwon2016-02-291-1/+1
| | | | | | - Migrate: #2704 #2653 - Clone: #2701 - Mirror, Pull
* #2700 fix sqlite3 can't create issue with more than one labelUnknwon2016-02-291-1/+1
|
* Post work for #2637Unknwon2016-02-271-1/+1
| | | | Improve test cases, config settings, also show SSH config settings on admin config panel.
* Minor fix for #2710Unknwon2016-02-271-1/+1
|
* #2697 fix panic when close issue via commit messageUnknwon2016-02-251-1/+1
|
* Add new config option for builtin SSH serverUnknwon2016-02-251-1/+1
| | | | | | | 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-1/+1
|
* #2682 fix missing slash for go-get metaUnknwon2016-02-231-1/+1
|
* #1821 add actions for close and reopen issuesUnknwon2016-02-221-1/+1
|
* Fix wrong place to check disable SSHUnknwon2016-02-211-1/+1
|
* Minor fix for #2634Unknwon2016-02-201-1/+1
| | | | Add AttributesInBind option in new auth source form.
* Minor fix for #2524Unknwon2016-02-191-1/+1
|
* Fix inappropriate markdown post process end tag checkUnknwon2016-02-191-1/+1
| | | | | When <code> is nested inside <pre>, the next end tag token would not able to be the same as outer-most start tag. So we only check outer-most start and end tag token to be the same.
* #2650 fix possbility that use email as pusher user nameUnknwon2016-02-171-1/+1
| | | | | | | | | | 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/+1
|
* Minor fix for #2624Unknwon2016-02-151-1/+1
|
* Remove cache avatar support and add its testsUnknwon2016-02-141-1/+1
|
* Minor fix for #2567Unknwon2016-02-141-1/+1
|
* #2569 delete repo local copy when transferUnknwon2016-02-141-1/+1
| | | | | | Remote repository path is renamed but does not delete outdated local copy which still has old repository path as remote.