2
0
Commit Graph

157 Commits

Author SHA1 Message Date
Unknwon
11e7ac2a93 Use struct for UI settings 2016-07-24 00:23:54 +08:00
Kim Carlbäcker
ba622c22cd [Fix] Don't display way too large files #1513 (#3253)
* Add MaxDisplayFileSize setting

* Don't show files that are too large

* Localized FileTooLarge

* Change IsFileTooBig => IsFileTooLarge
2016-07-12 06:21:26 +08:00
Unknwon
631defa243 #3058 #3059 support correct page size and link header 2016-07-04 17:27:06 +08:00
j.yao.SUSE
bd31471a2e change setting.go -> LocalUrl default value to (#3078) 2016-07-01 22:26:15 +08:00
Andrey Nering
e87fcdf88e Re-work MAX_DIFF_LINES: supress diff per file, not the whole diff (#3174) 2016-06-29 23:11:00 +08:00
Unknwon
8470f67eb6 #2954 use text/plain as default email content format 2016-05-30 01:32:01 -07:00
Unknwon
d166ec751a Remove code for checking ssh-keygen 2016-03-19 20:31:23 -04:00
Unknwon
579b59b60d #1891 attempt to fix invalid csrf token 2016-03-12 20:56:03 -05:00
Rodrigo Saboya
d689ed735e Making AppDataPath customizable. 2016-03-09 22:53:42 -03:00
Unknwon
8fbb98b3ee #1891 attempt to fix expected invalid CSRF token
- Remove unused config settings `[picture] service`
2016-03-03 15:09:43 -05:00
Unknwon
be385c12f7 Allow setting git operations timeouts
- Migrate: #2704 #2653
- Clone: #2701
- Mirror, Pull
2016-02-29 19:29:49 -05:00
Unknwon
4a378f95f8 Post work for #2637
Improve test cases, config settings, also show SSH config settings on admin config panel.
2016-02-27 20:48:39 -05:00
Unknwon
f0d2aeff72 Merge pull request #2637 from Gibheer/ssh-publickeys
allow native and ssh-keygen public key check
2016-02-27 18:55:14 -05:00
Unknwon
128394f9db Add new config option for builtin SSH server
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.
2016-02-25 00:21:48 -05:00
Gibheer
9b36ea00d5 use StartSSHServer instead of DisableSSH
DisableSSH doesn't check the kind of ssh server to use, so that was
wrong. Use StartSSHServer instead.
2016-02-23 15:43:52 +01:00
Gibheer
350d3a98e0 seperate ssh constants from schema constants
The contants were placed in the same section as the scheme ones, which
may lead to confusion.
2016-02-23 15:41:44 +01:00
Gibheer
ab652f501e allow native and ssh-keygen public key check
This commit adds the possibibility to use either the native golang
libraries or ssh-keygen to check public keys. The check is adjusted
depending on the settings, so that only supported keys are let through.

This commit also brings back the blacklist feature, which was removed in
16796f2763. This allows to blacklist
algorythms or keys based on the key length. This works with the native
and the ssh-keygen way.

Because of #2179 it also includes a way to adjust the path to
ssh-keygen and the working directory for ssh-keygen. With this,
sysadmins should be able to adjust the settings in a way, that SELinux
is okay with it. In the worst case, they can switch to the native
implementation and only loose support for ed25519 keys at the moment.
There are some other places which need adjustment to utilize the
parameters and the native implementation, but this sets the ground work.
2016-02-16 23:01:56 +01:00
Unknwon
354dd25700 Remove cache avatar support and add its tests 2016-02-14 23:14:55 -05:00
Andrey Nering
ce1ab1ad2d Implementing the "theme-color" meta tag.
Used by Android >= 5.0 to make the top bar colored.

Reference: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android
2016-02-08 17:03:18 -02:00
Unknwon
b52970cd3d Merge pull request #2406 from bkcsoft/feature/markdown-custom-url-scheme
Feature/markdown custom url scheme
2016-02-05 13:11:45 -05:00
Unknwon
a7126a11d5 #2229 adjust URL verbose depth for reverse proxy sub-path 2016-01-31 15:38:20 -05:00
miles@Oscar
7ebbc80bbb Using https for gravatar 2016-01-29 13:06:17 +08:00
miles@Oscar
d11b794f8a Fixed gravatar url 2016-01-29 11:05:41 +08:00
Kim "BKC" Carlbäcker
93d56ee5af Custom URL-Schemas for Markdown 2016-01-27 02:02:03 +01:00
Pourya Daneshvar
740bc4663c Fixed forgotten err variable assignment 2016-01-24 10:24:21 +03:30
Unknwon
16796f2763 #2179 use Go sub-repo ssh to verify public key content 2016-01-15 18:39:51 +08:00
Unknwon
03ebfbdf21 fix #1436 2015-12-19 21:43:32 -05:00
Unknwon
dc1e5fc70b fix #2189 2015-12-18 05:49:28 -05:00
Unknwon
112b78ff45 #2103 Ability to map extensions for syntax highlighting in config 2015-12-17 22:31:34 -05:00
Unknwon
6f6c77a6cd #1692 add organization APIs 2015-12-17 02:28:47 -05:00
Unknwon
74ceced0e8 #1575 Limit repo creation 2015-12-10 12:37:53 -05:00
Adam Strzelecki
d89e6415cc LOCAL_ROOT_URL for workers accessing web service
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
2015-12-09 23:11:07 +01:00
Unknwon
d97809d3e2 #1943 Able to config fsck timeout 2015-12-09 11:38:12 -05:00
Unknwon
902a4d6a68 #2115 more precise error message 2015-12-08 01:11:40 -05:00
Unknwon
2eb660382b remove tags redis and memcache 2015-11-21 17:21:22 -05:00
Gibheer
20f08a2985 fix old naming
This is the old naming of the variable and I forgot to fix it. It now
works and is tested.
2015-11-18 23:12:42 +01:00
Gibheer
0196a37127 fix #1957 - disable version display
This allows the admin to disable the version information about gogs and
go in use in the footer.
2015-11-18 22:32:31 +01:00
Unknwon
b34fccd2c7 fix 1540 and experimental SSH server support 2015-11-08 16:59:56 -05:00
Unknwon
5b579c11bb add Makefile 2015-11-03 12:16:43 -05:00
Unknwon
3114e9fa91 fix problem with #1879 2015-11-02 14:01:19 -05:00
无闻
5f3c1c2262 Merge pull request #1871 from Gibheer/config_minimum_key_sizes
move minimum key sizes to config
2015-11-01 12:39:12 -05:00
Gibheer
a2d58cfa9c move minimum key sizes to config
This moves the minimum key sizes into the config file, so that anyone
can modify the restrictions.
2015-10-30 13:53:06 +01:00
Unknwon
0a5f357697 fix issue comment mention and autofix count when start 2015-10-29 20:40:57 -04:00
Unknwon
ae339c4642 #1657 allow forcing all private repos 2015-10-25 04:26:26 -04:00
Unknwon
260a8f49a0 add config and update locale 2015-10-24 15:35:26 -04:00
Unknwon
dff1973db7 New push to head repo of head branch: regenerate patch and retest apply 2015-10-24 03:36:47 -04:00
Soputtra San
c0cf4769e2 Fix import path 2015-10-19 23:43:11 +11:00
Unknwon
677970b18e fix import path, fix #1782 2015-10-15 21:28:12 -04:00
Unknwon
2d229937be #1602 Wrong commit order on issue page when pushing multiple commits 2015-09-25 20:35:56 -04:00
无闻
dd34da15d1 Merge pull request #1693 from sapk/fix-admin-repo-new-ui
Fix admin repos new ui
2015-09-25 19:05:27 -04:00