aboutsummaryrefslogtreecommitdiffstats
path: root/modules
Commit message (Collapse)AuthorAgeFilesLines
* #2154 disable change user for non-local usersUnknwon2015-12-112-3/+3
| | | | - #2153 remove require for gravatar
* fix sqlite3 cannot create repoUnknwon2015-12-111-2/+2
|
* #2114 External URL for wikiUnknwon2015-12-112-2/+4
|
* #1938 #1374 disable password change for non-local usersUnknwon2015-12-101-2/+2
|
* #1301 "read-only" usersUnknwon2015-12-101-2/+2
|
* #1575 Limit repo creationUnknwon2015-12-103-7/+9
|
* #1612 Ability to send mail when a new pull request is submittedUnknwon2015-12-101-709/+926
|
* move out git module and #1573 send push hookUnknwon2015-12-0924-1878/+11
|
* Merge pull request #2139 from angus-g/fixes/pr-messagesUnknwon2015-12-091-913/+696
|\ | | | | Reword messages for PR auto merging (#2117)
| * Reword messages for PR auto merging (#2117)Angus Gibson2015-12-101-913/+696
| |
* | LOCAL_ROOT_URL for workers accessing web serviceAdam Strzelecki2015-12-091-0/+2
|/ | | | | | | | | | | | | | | | | | | | | Local (DMZ) URL for gogs workers (such as ssh update) accessing web service. In most cases you do not need to change default http://localhost:HTTP_PORT/. You may need to alter it only if your ssh server node is not the same as http node, eg. running behind proxy on different node than web server. --- 80 public port -> 8080 -- web server node / public proxy --< \ --- 22 public port -> 10022 -- ssh server node This option is not intended to be accessible via web GUI settings, since it is unlikely someone needs to change it to somethings else than default http://localhost:HTTP_PORT/ which should work for most of the cases. But this should land into the documentation somewhere. fixup
* #1943 Able to config fsck timeoutUnknwon2015-12-092-2/+3
|
* #2037 Add "New Mirror" button on DashboardUnknwon2015-12-092-700/+914
|
* unified name: IsViewBranch, IsViewCommit and IsViewTagUnknwon2015-12-092-10/+10
|
* Only show comparison link for >2 commits #1110Angus Gibson2015-12-091-926/+709
| | | | | | | We can look at the PushCommits object to see how many commits were included in a commit, and add some template logic to only show the comparison link when there are at least 2 commits in a push. We also correct the link to display the number of commits.
* #1984 Better mirror repo managementUnknwon2015-12-084-10/+16
|
* #2115 more precise error messageUnknwon2015-12-081-1/+4
|
* Allow pre-receive hook customizationAdam Strzelecki2015-12-081-0/+1
| | | | | | | This hook can be used for example to reject too large commits and it is executed before "update" hook, used exclusively by Gogs to update its state. https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks
* force new INI versionUnknwon2015-12-071-1/+1
|
* minor fix for #2113 and other localesUnknwon2015-12-071-19/+19
|
* Render commit msg as header + verbatim descriptionAdam Strzelecki2015-12-071-5/+17
| | | | | | | | | Most commit in Git are expected to follow standard of single header line, followed by description paragraphs, separated by empty line from previous block. Previously Gogs were treating everything as single header. Now we are trying to render only first line as header, but following lines (description chunks) as a verbatim.
* prepare releaseUnknwon2015-12-061-36/+36
|
* Fix misspelled wordsAlex Myasoedov2015-12-062-9/+9
|
* #2063 Ability to delete repo from admin panelUnknwon2015-12-051-2/+2
|
* APIs: admin usersUnknwon2015-12-051-2/+2
|
* fix #2105 and fix #1857Unknwon2015-12-051-2/+2
|
* #2052 advanced select ops for system noticesUnknwon2015-12-051-4/+4
|
* fix #1829 and fix #890Unknwon2015-12-046-68/+81
|
* fix panic for #2045Unknwon2015-12-042-114/+113
|
* refactor API routes and some work for #976Unknwon2015-12-043-152/+0
|
* minor fix for #2086Unknwon2015-12-021-28/+28
|
* fix #2085Unknwon2015-12-021-0/+2
|
* fix #2083Unknwon2015-12-021-2/+2
|
* #2071 Diff is not showing full content when has super long one lineUnknwon2015-12-021-2/+2
|
* #2052 Ability to batch delete system noticesUnknwon2015-12-011-2/+2
|
* update REMADE and localeUnknwon2015-12-011-16/+16
|
* LDAP: Optional user name attribute specificationAdam Strzelecki2015-12-022-46/+49
| | | | | | | | | | | | | | | Consider following LDAP search query example: (&(objectClass=Person)(|(uid=%s)(mail=%s))) Right now on first login attempt Gogs will use the text supplied on login form as the newly created user name. In example query above the text matches against both e-mail or user name. So if user puts the e-mail then the new Gogs user name will be e-mail which may be undesired. Using optional user name attribute setting we can explicitly say we want Gogs user name to be certain LDAP attribute eg. `uid`, so even user will use e-mail to login 1st time, the new account will receive correct user name.
* Merge pull request #2069 from nanoant/patch/admin-see-all-organizationsUnknwon2015-11-301-1/+7
|\ | | | | Admin should be able to see all organizations
| * Admin should be able to see all organizationsAdam Strzelecki2015-11-301-1/+7
| | | | | | | | | | This is follow-up for 56c66ee486b4b8d544201662de62a23f36e6a069 allowing admin to see private repositories, even when not being member of them.
* | Merge branch 'feature/wiki' into developUnknwon2015-11-305-51/+74
|\ \ | |/ |/|
| * finish wikiUnknwon2015-11-302-236/+232
| |
| * wiki: finish pagesUnknwon2015-11-271-2/+2
| |
| * wiki: finish editUnknwon2015-11-274-15/+27
| |
| * wiki: finish newUnknwon2015-11-272-219/+219
| |
| * introduce git-shellUnknwon2015-11-263-6/+21
| |
| * Wiki: UI for page newUnknwon2015-11-252-29/+29
| |
* | #1681 carry --config flag for builtin SSHUnknwon2015-11-301-1/+5
| |
* | Use better LDAP lib and should fix #1139Unknwon2015-11-2623-2739/+2
|/
* allow admin to migrate for any user/orgUnknwon2015-11-251-16/+16
|
* minor fix markdown post processUnknwon2015-11-241-0/+1
|