summaryrefslogtreecommitdiffstats
path: root/templates/admin/config.tmpl
Commit message (Collapse)AuthorAgeFilesLines
* Display config file path on admin panel (#2030)Lunny Xiao2017-06-221-0/+2
|
* Add configuration option for default permission to create Organizations (#1686)Lauris BH2017-05-081-0/+2
|
* Allow ENABLE_OPENID_SIGNUP to depend on DISABLE_REGISTRATION (#1369)Sandro Santilli2017-03-291-0/+4
| | | | | | | | | | | * Allow ENABLE_OPENID_SIGNUP to depend on DISABLE_REGISTRATION Omit the configuration variable (the default) to be dependent. Fixes #1363 * Move OpenID settings under Service object * Show OpenID SignUp and SignIn status in admin panel / configuration
* Cleaner ui for admin, repo settings, and user settings page (#1269) (#1270)Patrick G2017-03-151-256/+252
|
* Log config pretty printer (#1097)Jonas2017-03-021-1/+1
| | | Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com>
* Fix for #828: Embed build tags (#1051)Jonas2017-02-281-1/+1
| | | | | | | | | | | | | | | | | | | | | * Fix for #828 Add build tags to ldflags and print in version output Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com> * Reworked formatBuiltWith function Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com> * Add tags to version information in admin panel Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com> * Added new variable for use on admin page. Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com> * Fixed incorrect indentation
* feat: add git version on admin panel. (#921)Bo-Yi Wu2017-02-131-0/+5
|
* Add Keep email private (see issue #571). (#571)derSuessmann2017-01-081-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Add site-wide option DEFAULT_KEEP_EMAIL_PRIVATE. - Add the new option to the install and admin/config pages. - Add the new option to app.ini in the service section. - Add the new option to the settings struct. - Add English text strings to i18n. - Add field KeepEmailPrivate to user struct. - Add field KeepEmailPrivate to user form. - Add option to UI. - Add using noreply email address if user has "Keep Email Private". An email address <LowerName>@<NO_REPLY_ADDRESS> is now used in commit messages (and hopefully all other git log relevant places). The change relies on the fact that git commands should use user.NetGitSig(). - Add hiding of email address in UI, if user has set "Keep Email Private". - Add condition to show email address only on explore/users and user pages, if user has not set "Keep Email Private". - Add noreply email in API if set "Keep Email Private". - Add a new service setting NO_REPLY_ADDRESS. The value of this setting is used as the domain part for the user's email address in git log, iff he decides to keep his email address private. If the user decides to keep his email address private and this option is not set 'noreply.example.org' is used, which no MTA should send email to. Add NO_REPLY_ADDRESS to conf/app.ini.
* fix config session missing data row & resolved #517 (#549)Lunny Xiao2017-01-021-1/+1
|
* resolved #517: fix admin ui data row missingLunny Xiao2016-12-311-5/+5
|
* Fix typo CacheInternal -> CacheInterval (#3432)Thibault Meyer2016-08-111-1/+1
|
* #3091 show Git configs on admin panelUnknwon2016-08-101-6/+36
|
* Add support for federated avatars (#3320)Sandro Santilli2016-08-071-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add support for federated avatars Fixes #3105 Removes avatar fetching duplication code Adds an "Enable Federated Avatar" checkbox in user settings (defaults to unchecked) Moves avatar settings all in the same form, making local and remote avatars mutually exclusive Renames UploadAvatarForm to AvatarForm as it's not anymore only for uploading * Run gofmt on all modified files * Move Avatar form in its own page * Add go-libravatar dependency to vendor/ dir Hopefully helps with accepting the contribution. See also #3214 * Revert "Add go-libravatar dependency to vendor/ dir" This reverts commit a8cb93ae640bbb90f7d25012fc257bda9fae9b82. * Make federated avatar setting a global configuration Removes the per-user setting * Move avatar handling back to base tool, disable federated avatar in offline mode * Format, handle error * Properly set fallback host * Use unsupported github.com mirror for importing go-libravatar * Remove comment showing life exists outside of github.com ... pity, but contribution would not be accepted otherwise * Use Combo for Get and Post methods over /avatar * FEDERATED_AVATAR -> ENABLE_FEDERATED_AVATAR * Fix persistance of federated avatar lookup checkbox at install time * Federated Avatars -> Enable Federated Avatars * Use len(string) == 0 instead of string == "" * Move import line where it belong See https://github.com/Unknwon/go-code-convention/blob/master/en-US/import_packages.md Pity the import url is still the unofficial one, but oh well... * Save a line (and waste much more expensive time) * Remove redundant parens * Remove an empty line * Remove empty lines * Reorder lines to make diff smaller * Remove another newline Unknwon review got me start a fight against newlines * Move DISABLE_GRAVATAR and ENABLE_FEDERATED_AVATAR after OFFLINE_MODE On re-reading the diff I figured what Unknwon meant here: https://github.com/gogits/gogs/pull/3320/files#r73741106 * Remove newlines that weren't there before my intervention
* #1891 attempt to fix expected invalid CSRF tokenUnknwon2016-03-031-2/+0
| | | | - Remove unused config settings `[picture] service`
* Post work for #2637Unknwon2016-02-271-1/+41
| | | | Improve test cases, config settings, also show SSH config settings on admin config panel.
* Minor fix for #2660Unknwon2016-02-241-9/+18
|
* Test mailer button. Addresses #1531Josh Frye2016-02-241-1/+2
|
* #2633 fix removed config optionUnknwon2016-02-161-2/+0
|
* fix #2416Unknwon2016-01-261-2/+2
|
* Indent all templates with tabsAdam Strzelecki2015-12-081-187/+187
| | | | | | | | | | | | 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
* minor fix on #1694Unknwon2015-11-211-15/+15
|
* Fix admin configuration new uiAntoine GIRARD2015-11-211-211/+188
|
* drop oauth2 feature supportUnknwon2015-09-171-21/+0
|
* #697 update locale and admin panelUnknwon2015-09-131-2/+6
|
* admin config fixFernando San Julián2015-07-251-2/+2
|
* update localeUnknwon2015-07-031-0/+2
|
* better naming on #891Unknwon2015-02-111-2/+2
|
* able to allow insecure certification of webhook for #891Unknwon2015-02-101-2/+4
|
* Add ShowRegistrationButton configuration optionRaphael Randschau2015-02-051-0/+2
|
* fix error at admin/configAlexey Makhov2015-02-031-1/+1
|
* fix API changesUnknwon2014-12-281-3/+1
|
* fix tpl errorUnknwon2014-11-041-4/+0
|
* Finish all new admin pages.Unknwon2014-08-301-228/+226
|
* Huge updates!!!!! Be careful to merge!!!!Unknwon2014-07-261-3/+3
|
* Fix #165Unknown2014-06-241-2/+2
|
* Fix #165Unknown2014-06-211-1/+3
|
* Fix #242Unknown2014-06-081-0/+15
|
* Fix #209Unknown2014-05-281-0/+4
|
* Log to different adapter according to levelUnknown2014-05-111-2/+4
|
* Batch of mirror fixesUnknown2014-05-061-2/+2
|
* Add disable gravatar optionUnknown2014-05-011-0/+2
|
* Add router log config optionUnknown2014-05-011-0/+2
|
* HTTP no follow and offline modeUnknown2014-04-271-0/+4
|
* Minor grammatical fix for Disable Registration featureBryan Johnson2014-04-211-2/+2
|
* UPDATE DOCSUnknown2014-04-141-1/+1
|
* Add weibo oauthUnknown2014-04-131-2/+24
|
* Add transfer repositoryUnknown2014-04-041-1/+1
|
* .admin-dl-horizontalcrackcomm2014-04-011-8/+8
|
* Description list instead of div's in admin Dashboard & Configuration.crackcomm2014-04-011-44/+99
|
* Update config optionUnknown2014-03-281-1/+0
|