Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #1938 #1374 disable password change for non-local users | Unknwon | 2015-12-10 | 11 | -51/+63 |
| | |||||
* | fix markdown table header CSS | Unknwon | 2015-12-10 | 2 | -3/+3 |
| | |||||
* | fix bool check for repo max limit and fix hang when push repo with tons of ↵ | Unknwon | 2015-12-10 | 6 | -9/+8 |
| | | | | commits | ||||
* | fix user repo limit default value | Unknwon | 2015-12-10 | 1 | -1/+1 |
| | |||||
* | #1301 "read-only" users | Unknwon | 2015-12-10 | 3 | -7/+7 |
| | |||||
* | #1575 Limit repo creation | Unknwon | 2015-12-10 | 15 | -14/+73 |
| | |||||
* | #1612 Ability to send mail when a new pull request is submitted | Unknwon | 2015-12-10 | 20 | -1107/+1375 |
| | |||||
* | Merge pull request #2143 from pkgr/fix-packaging-postinstall | Unknwon | 2015-12-10 | 3 | -38/+25 |
|\ | | | | | Fix postinstall to use GOGS_CUSTOM instead of symlinking | ||||
| * | Fix postinstall to use GOGS_CUSTOM instead of symlinking | Cyril Rohr | 2015-12-10 | 3 | -38/+25 |
|/ | |||||
* | move out git module and #1573 send push hook | Unknwon | 2015-12-09 | 45 | -2002/+185 |
| | |||||
* | Merge pull request #2139 from angus-g/fixes/pr-messages | Unknwon | 2015-12-09 | 2 | -916/+699 |
|\ | | | | | Reword messages for PR auto merging (#2117) | ||||
| * | Reword messages for PR auto merging (#2117) | Angus Gibson | 2015-12-10 | 2 | -916/+699 |
| | | |||||
* | | Merge pull request #2137 from nanoant/patch/ssh-trigger-via-local-url | Unknwon | 2015-12-09 | 3 | -1/+7 |
|\ \ | |/ |/| | LOCAL_ROOT_URL for workers accessing web service | ||||
| * | Make serv/update use LOCAL_ROOT_URL instead public | Adam Strzelecki | 2015-12-09 | 1 | -1/+1 |
| | | | | | | | | The reasoning for that is in the previous commit. | ||||
| * | LOCAL_ROOT_URL for workers accessing web service | Adam Strzelecki | 2015-12-09 | 2 | -0/+6 |
|/ | | | | | | | | | | | | | | | | | | | | | 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 | ||||
* | Merge pull request #2138 from SlavikZ/master | Unknwon | 2015-12-09 | 2 | -6/+6 |
|\ | | | | | LDAP parameters UI: bind_dn and bind_password are not required | ||||
| * | LDAP parameters UI: bind_dn and bind_password are not required | SlavikZ | 2015-12-09 | 2 | -6/+6 |
| | | |||||
* | | Merge pull request #2133 from kardianos/develop | Unknwon | 2015-12-09 | 1 | -0/+1 |
|\ \ | | | | | | | gogs: add import that lets gogs run as a stand-alone windows service | ||||
| * | | gogs: add import that lets gogs run as a stand-alone windows service | Daniel Theophanes | 2015-12-09 | 1 | -0/+1 |
|/ / | | | | | | | Updates #630 | ||||
* | | #2035 Show author e-mail in commit diff | Unknwon | 2015-12-09 | 1 | -1/+1 |
| | | |||||
* | | #1943 Able to config fsck timeout | Unknwon | 2015-12-09 | 7 | -8/+8 |
| | | |||||
* | | #2037 Add "New Mirror" button on Dashboard | Unknwon | 2015-12-09 | 5 | -701/+917 |
| | | |||||
* | | Merge pull request #2132 from nanoant/patch/do-not-fail-on-missing-lessc | Unknwon | 2015-12-09 | 1 | -0/+2 |
|\ \ | |/ |/| | Makefile: Do not fail build on missing lessc | ||||
| * | Makefile: Do not fail build on missing lessc | Adam Strzelecki | 2015-12-09 | 1 | -0/+2 |
|/ | | | | | | | | | | | | | | | This is achieved by adding public/css/gogs.css to special .IGNORE target, which makes inability to generate/update gogs.css non-fatal and not stopping whole build process. User is still notified about missing lessc command though, since inability to update CSS may lead to potential problems: lessc public/less/gogs.less public/css/gogs.css make: lessc: No such file or directory make: [public/css/gogs.css] Error 1 (ignored) More info at: https://www.gnu.org/software/make/manual/html_node/Special-Targets.html | ||||
* | Merge pull request #2126 from angus-g/fixes/commits-branches | Unknwon | 2015-12-09 | 4 | -47/+50 |
|\ | | | | | Dropdown on commits page to choose branch #1846 | ||||
| * | Break branch-selection dropdown into a template | Angus Gibson | 2015-12-09 | 3 | -88/+46 |
| | | | | | | | | | | We only handle branch selection for repo home and commits pages, so the redirection URL is based on PageIsCommits | ||||
| * | Dropdown on commits page to choose branch #1846 | Angus Gibson | 2015-12-09 | 2 | -3/+48 |
|/ | | | | | | I've mostly duplicated the dropdown code from repo/home.tmpl, which basically only required a change to the URL. This could probably be broken out into something more modular. | ||||
* | unified name: IsViewBranch, IsViewCommit and IsViewTag | Unknwon | 2015-12-09 | 9 | -21/+18 |
| | |||||
* | Merge pull request #2125 from angus-g/fixes/compare-commits | Unknwon | 2015-12-08 | 16 | -941/+724 |
|\ | | | | | Only show comparison link for >2 commits, fixes #1110 | ||||
| * | Only show comparison link for >2 commits #1110 | Angus Gibson | 2015-12-09 | 16 | -941/+724 |
|/ | | | | | | | 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 management | Unknwon | 2015-12-08 | 16 | -56/+124 |
| | |||||
* | #2115 more precise error message | Unknwon | 2015-12-08 | 1 | -1/+4 |
| | |||||
* | #1627 auto login after install if admin is configured | Unknwon | 2015-12-08 | 4 | -6/+12 |
| | |||||
* | add quay.io as another Docker option | Unknwon | 2015-12-07 | 2 | -2/+2 |
| | |||||
* | Merge pull request #2122 from nanoant/patch/add-pre-receive-hook | Unknwon | 2015-12-07 | 1 | -0/+1 |
|\ | | | | | Allow pre-receive hook customization | ||||
| * | Allow pre-receive hook customization | Adam Strzelecki | 2015-12-08 | 1 | -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 | ||||
* | Merge pull request #2121 from nanoant/patch/less-n-template-indent | Unknwon | 2015-12-07 | 127 | -6397/+6405 |
|\ | | | | | Consistent tab indentation for all source files | ||||
| * | Indent all templates with tabs | Adam Strzelecki | 2015-12-08 | 114 | -5556/+5564 |
| | | | | | | | | | | | | | | | | | | | | | | | | This commit improves templates readability, since all of them use consistent indent with all template command blocks indented too. 1. Indents both HTML containers such as <div>, <p> and Go HTML template blocks such as {{if}} {{with}} 2. Cleans all trailing white-space 3. Adds trailing last line-break to each file | ||||
| * | LESS: Use tabs for indent in all files | Adam Strzelecki | 2015-12-07 | 13 | -841/+841 |
|/ | | | | This does not change any content and generated gogs.css is still the same. | ||||
* | force new INI version | Unknwon | 2015-12-07 | 2 | -2/+2 |
| | |||||
* | minor fix for #2113 and other locales | Unknwon | 2015-12-07 | 3 | -41/+41 |
| | |||||
* | Merge pull request #2113 from OhDaeto/patch-1 | Unknwon | 2015-12-07 | 1 | -35/+35 |
|\ | | | | | Update Russian translation | ||||
| * | Update locale_ru-RU.ini | OhDaeto | 2015-12-07 | 1 | -17/+17 |
| | | |||||
| * | Update Russian translation | OhDaeto | 2015-12-07 | 1 | -18/+18 |
|/ | |||||
* | fix wrong slack webhook payload URL | Unknwon | 2015-12-06 | 7 | -7/+16 |
| | |||||
* | Merge pull request #2112 from nanoant/patch/better-git-message-display | Unknwon | 2015-12-06 | 6 | -25/+52 |
|\ | | | | | Render commit msg as header + verbatim description | ||||
| * | Render commit msg as header + verbatim description | Adam Strzelecki | 2015-12-07 | 6 | -25/+52 |
|/ | | | | | | | | | 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 release | Unknwon | 2015-12-06 | 17 | -200/+458 |
| | |||||
* | Merge pull request #2110 from msoedov/misspellings | Unknwon | 2015-12-06 | 3 | -10/+10 |
|\ | | | | | Fix misspelled words | ||||
| * | Fix misspelled words | Alex Myasoedov | 2015-12-06 | 3 | -10/+10 |
|/ |