mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
Merge pull request #2207 from riking/list-setting
UI for list site settings
This commit is contained in:
commit
8cdf25532c
17 changed files with 261 additions and 20 deletions
|
@ -0,0 +1,82 @@
|
|||
/**
|
||||
Provide a nice GUI for a pipe-delimited list in the site settings.
|
||||
|
||||
@param settingValue is a reference to SiteSetting.value.
|
||||
|
||||
@class Discourse.ListSettingComponent
|
||||
@extends Ember.Component
|
||||
@namespace Discourse
|
||||
@module Discourse
|
||||
**/
|
||||
Discourse.ListSettingComponent = Ember.Component.extend({
|
||||
layoutName: 'components/list-setting',
|
||||
|
||||
init: function() {
|
||||
this._super();
|
||||
this.on("focusOut", this.uncacheValue);
|
||||
this.set('children', []);
|
||||
},
|
||||
|
||||
canAddNew: true,
|
||||
|
||||
readValues: function() {
|
||||
return this.get('settingValue').split('|');
|
||||
}.property('settingValue'),
|
||||
|
||||
/**
|
||||
Transfer the debounced value into the settingValue parameter.
|
||||
|
||||
This will cause a redraw of the child textboxes.
|
||||
|
||||
@param newFocus {Number|undefined} Which list index to focus on next, or undefined to not refocus
|
||||
**/
|
||||
uncacheValue: function(newFocus) {
|
||||
var oldValue = this.get('settingValue'),
|
||||
newValue = this.get('settingValueCached'),
|
||||
self = this;
|
||||
|
||||
if (newValue !== undefined && newValue !== oldValue) {
|
||||
this.set('settingValue', newValue);
|
||||
}
|
||||
|
||||
if (newFocus !== undefined && newFocus > 0) {
|
||||
Em.run.schedule('afterRender', function() {
|
||||
var children = self.get('children');
|
||||
if (newFocus < children.length) {
|
||||
$(children[newFocus].get('element')).focus();
|
||||
} else if (newFocus === children.length) {
|
||||
$(self.get('element')).children().children('.list-add-value').focus();
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
setItemValue: function(index, item) {
|
||||
var values = this.get('readValues');
|
||||
values[index] = item;
|
||||
|
||||
// Remove blank items
|
||||
values = values.filter(function(s) { return s !== ''; });
|
||||
this.setProperties({
|
||||
settingValueCached: values.join('|'),
|
||||
canAddNew: true
|
||||
});
|
||||
},
|
||||
|
||||
actions: {
|
||||
addNewItem: function() {
|
||||
var newValue = this.get('settingValue') + '|';
|
||||
this.setProperties({
|
||||
settingValue: newValue,
|
||||
settingValueCached: newValue,
|
||||
canAddNew: false
|
||||
});
|
||||
|
||||
var self = this;
|
||||
Em.run.schedule('afterRender', function() {
|
||||
var children = self.get('children');
|
||||
$(children[children.length - 1].get('element')).focus();
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
|
@ -0,0 +1,44 @@
|
|||
/**
|
||||
One item in a ListSetting.
|
||||
|
||||
@param parent is the ListSettingComponent.
|
||||
|
||||
@class Discourse.ListSettingItemComponent
|
||||
@extends Ember.Component, Ember.TextSupport
|
||||
@namespace Discourse
|
||||
@module Discourse
|
||||
**/
|
||||
Discourse.ListSettingItemComponent = Ember.Component.extend(Ember.TextSupport, {
|
||||
classNames: ['ember-text-field'],
|
||||
tagName: "input",
|
||||
attributeBindings: ['type', 'value', 'size', 'pattern'],
|
||||
|
||||
_initialize: function() {
|
||||
// _parentView is the #each
|
||||
// parent is the ListSettingComponent
|
||||
this.setProperties({
|
||||
value: this.get('_parentView.content'),
|
||||
index: this.get('_parentView.contentIndex')
|
||||
});
|
||||
this.get('parent').get('children')[this.get('index')] = this;
|
||||
}.on('init'),
|
||||
|
||||
markTab: function(e) {
|
||||
var keyCode = e.keyCode || e.which;
|
||||
|
||||
if (keyCode === 9) {
|
||||
this.set('nextIndex', this.get('index') + (e.shiftKey ? -1 : 1));
|
||||
}
|
||||
}.on('keyDown'),
|
||||
|
||||
reloadList: function() {
|
||||
var nextIndex = this.get('nextIndex');
|
||||
this.set('nextIndex', undefined); // one use only
|
||||
this.get('parent').uncacheValue(nextIndex);
|
||||
}.on('focusOut'),
|
||||
|
||||
_elementValueDidChange: function() {
|
||||
this._super();
|
||||
this.get('parent').setItemValue(this.get('index'), this.get('value'));
|
||||
}
|
||||
});
|
|
@ -0,0 +1,17 @@
|
|||
<div class='setting-label'>
|
||||
<h3>{{unbound setting}}</h3>
|
||||
</div>
|
||||
<div class="setting-value">
|
||||
{{list-setting settingValue=value}}
|
||||
<div class='desc'>{{unbound description}}</div>
|
||||
</div>
|
||||
{{#if dirty}}
|
||||
<div class='setting-controls'>
|
||||
<button class='btn ok no-text' {{action save this}}><i class='fa fa-check'></i></button>
|
||||
<button class='btn cancel no-text' {{action cancel this}}><i class='fa fa-times'></i></button>
|
||||
</div>
|
||||
{{else}}
|
||||
{{#if overridden}}
|
||||
<button class='btn' href='#' {{action resetDefault this}}>{{i18n admin.site_settings.reset}}</button>
|
||||
{{/if}}
|
||||
{{/if}}
|
|
@ -10,13 +10,15 @@ Discourse.SiteSettingView = Discourse.View.extend(Discourse.ScrollTop, {
|
|||
classNameBindings: [':row', ':setting', 'content.overridden'],
|
||||
|
||||
templateName: function() {
|
||||
|
||||
// If we're editing a boolean, return a different template
|
||||
// If we're editing a boolean, show a checkbox
|
||||
if (this.get('content.type') === 'bool') return 'admin/templates/site_settings/setting_bool';
|
||||
|
||||
// If we're editing an enum field, show a dropdown
|
||||
if (this.get('content.type') === 'enum' ) return 'admin/templates/site_settings/setting_enum';
|
||||
|
||||
// If we're editing a list, show a list editor
|
||||
if (this.get('content.type') === 'list' ) return 'admin/templates/site_settings/setting_list';
|
||||
|
||||
// Default to string editor
|
||||
return 'admin/templates/site_settings/setting_string';
|
||||
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
<div class="ac-wrap clearfix input-setting-list">
|
||||
{{#each readValues}}
|
||||
{{list-setting-item parent=view action=update classNames="list-input-item"}}
|
||||
{{/each}}
|
||||
{{#if canAddNew}}
|
||||
<button class="btn no-text list-add-value" {{action addNewItem}}><i class="fa fa-plus"></i></button>
|
||||
{{/if}}
|
||||
</div>
|
|
@ -194,6 +194,40 @@
|
|||
@include medium-width { width: 314px; }
|
||||
@include small-width { width: 284px; }
|
||||
}
|
||||
.input-setting-list {
|
||||
width: 408px;
|
||||
padding: 1px;
|
||||
background-color: white;
|
||||
border: 1px solid #e6e6e6;
|
||||
border-radius: 3px;
|
||||
box-shadow: inset 0 1px 1px rgba(51, 51, 51, 0.3);
|
||||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
|
||||
.list-input-item {
|
||||
width: 90px;
|
||||
margin: 2px 1px;
|
||||
background-color: white;
|
||||
border: 1px solid #e6e6e6;
|
||||
border-radius: 3px;
|
||||
box-shadow: inset 0 1px 1px rgba(51, 51, 51, 0.3);
|
||||
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
transition: border linear 0.2s, box-shadow linear 0.2s;
|
||||
|
||||
&:focus {
|
||||
border-color: #00aaff;
|
||||
outline: 0;
|
||||
box-shadow: inset 0 1px 1px rgba(51, 51, 51, 0.3), 0 0 8px #00aaff;
|
||||
}
|
||||
}
|
||||
|
||||
.btn.list-add-value {
|
||||
margin: 0px 3px;
|
||||
padding: 4px 10px;
|
||||
color: $link-color;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.desc {
|
||||
padding-top: 3px;
|
||||
|
|
|
@ -163,9 +163,9 @@ class Post < ActiveRecord::Base
|
|||
|
||||
hosts = SiteSetting
|
||||
.white_listed_spam_host_domains
|
||||
.split(",")
|
||||
.split('|')
|
||||
.map{|h| h.strip}
|
||||
.reject{|h| !h.include?(".")}
|
||||
.reject{|h| !h.include?('.')}
|
||||
|
||||
hosts << GlobalSetting.hostname
|
||||
|
||||
|
|
|
@ -742,7 +742,7 @@ cs:
|
|||
tos_url: "Pokud máte dokument 'Podmínky Používání' hostovaný samostatně, napište sem jeho plnou URL."
|
||||
privacy_policy_url: "Pokud máte dokument 'Ochrana Soukromí' hostovaný samostatně, napište sem jeho plnou URL."
|
||||
newuser_spam_host_threshold: "Kolikrát smí uživatel zaslat odkaz na stejný server v rámci příspěvků z nastavení 'newuser_spam_host_posts', než budou příspěvky považovány za spam."
|
||||
white_listed_spam_host_domains: A comma delimited list of domains excluded from spam host testing, new users will be able to create an unrestricted count of posts with links to this domain
|
||||
white_listed_spam_host_domains: A pipe-delimited list of domains excluded from spam host testing, new users will be able to create an unrestricted count of posts with links to this domain
|
||||
staff_like_weight: "Extra hodnota pro 'líbí se' od uživatelů, kteří jsou součástí personálu webu."
|
||||
reply_by_email_enabled: Jestli toto fórum umožňuje odpovědi emailem
|
||||
reply_by_email_address: 'Šablona emailé adresy pro odpověď emailem, např. %{reply_key}@reply.myforum.com'
|
||||
|
|
|
@ -606,7 +606,7 @@ en:
|
|||
max_image_height: "Maximum allowed height of images in a post"
|
||||
category_featured_topics: "Number of topics displayed per category on the /categories page. After changing this value, it takes up to 15 minutes for the categories page to update."
|
||||
add_rel_nofollow_to_user_content: "Add rel nofollow to all submitted user content, except for internal links (including parent domains) changing this requires you update all your baked markdown with: \"rake posts:rebake\""
|
||||
exclude_rel_nofollow_domains: "A comma delimited list of domains where nofollow is not added (tld.com will automatically allow sub.tld.com as well)"
|
||||
exclude_rel_nofollow_domains: "A pipe-delimited list of domains where nofollow is not added (tld.com will automatically allow sub.tld.com as well)"
|
||||
|
||||
post_excerpt_maxlength: "Maximum length in chars of a post's excerpt"
|
||||
post_onebox_maxlength: "Maximum length of a oneboxed Discourse post"
|
||||
|
@ -809,7 +809,7 @@ en:
|
|||
|
||||
newuser_spam_host_threshold: "How many times a new user can post a link to the same host within their `newuser_spam_host_posts` posts before being considered spam."
|
||||
|
||||
white_listed_spam_host_domains: "A comma delimited list of domains excluded from spam host testing, new users will be able to create an unrestricted count of posts with links to this domain"
|
||||
white_listed_spam_host_domains: "A pipe-delimited list of domains excluded from spam host testing, new users will be able to create an unrestricted count of posts with links to this domain"
|
||||
staff_like_weight: "Extra weighting factor given to likes when performed by staff."
|
||||
|
||||
reply_by_email_enabled: "Enable replying to topics via email"
|
||||
|
|
|
@ -313,7 +313,7 @@ id:
|
|||
max_image_width: "Maximum allowed width of images in a post"
|
||||
category_featured_topics: "Number of topics displayed per category in the /categories page"
|
||||
add_rel_nofollow_to_user_content: "Add rel nofollow to all submitted user content, except for internal links (including parent domains) changing this requires you update all your baked markdown"
|
||||
exclude_rel_nofollow_domains: "A comma delimited list of domains where nofollow is not added (tld.com will automatically allow sub.tld.com as well)"
|
||||
exclude_rel_nofollow_domains: "A pipe-delimited list of domains where nofollow is not added (tld.com will automatically allow sub.tld.com as well)"
|
||||
|
||||
post_excerpt_maxlength: "Maximum length in chars of a post's excerpt"
|
||||
post_onebox_maxlength: "Maximum length of a oneboxed Discourse post"
|
||||
|
|
|
@ -509,7 +509,7 @@ ko:
|
|||
max_image_height: "게시글에서 허용하는 이미지 최대 높이"
|
||||
category_featured_topics: "Number of topics displayed per category in the /categories page"
|
||||
add_rel_nofollow_to_user_content: "Add rel nofollow to all submitted user content, except for internal links (including parent domains) changing this requires you update all your baked markdown"
|
||||
exclude_rel_nofollow_domains: "A comma delimited list of domains where nofollow is not added (tld.com will automatically allow sub.tld.com as well)"
|
||||
exclude_rel_nofollow_domains: "A pipe-delimited list of domains where nofollow is not added (tld.com will automatically allow sub.tld.com as well)"
|
||||
|
||||
post_excerpt_maxlength: "Maximum length in chars of a post's excerpt"
|
||||
post_onebox_maxlength: "Maximum length of a oneboxed Discourse post"
|
||||
|
|
|
@ -53,15 +53,19 @@ basic:
|
|||
top_menu:
|
||||
client: true
|
||||
refresh: true
|
||||
list: true
|
||||
default: 'latest|new|unread|starred|top|categories'
|
||||
post_menu:
|
||||
client: true
|
||||
list: true
|
||||
default: 'like|edit|flag|delete|share|bookmark|reply'
|
||||
share_links:
|
||||
client: true
|
||||
list: true
|
||||
default: 'twitter|facebook|google+|email'
|
||||
category_colors:
|
||||
client: true
|
||||
list: true
|
||||
default: 'BF1E2E|F1592A|F7941D|9EB83B|3AB54A|12A89D|25AAE2|0E76BD|652D90|92278F|ED207B|8C6238|231F20|808281|B3B5B4|283890'
|
||||
enable_mobile_theme:
|
||||
client: true
|
||||
|
@ -276,6 +280,7 @@ files:
|
|||
client: true
|
||||
default: '.jpg|.jpeg|.png|.gif'
|
||||
refresh: true
|
||||
list: true
|
||||
crawl_images:
|
||||
default:
|
||||
test: false
|
||||
|
@ -340,9 +345,15 @@ security:
|
|||
|
||||
spam:
|
||||
add_rel_nofollow_to_user_content: true
|
||||
exclude_rel_nofollow_domains: ''
|
||||
email_domains_blacklist: 'mailinator.com'
|
||||
email_domains_whitelist: ''
|
||||
exclude_rel_nofollow_domains:
|
||||
default: ''
|
||||
list: true
|
||||
email_domains_blacklist:
|
||||
default: 'mailinator.com'
|
||||
list: true
|
||||
email_domains_whitelist:
|
||||
default: ''
|
||||
list: true
|
||||
flags_required_to_hide_post: 3
|
||||
cooldown_minutes_after_hiding_posts: 10
|
||||
num_flags_to_block_new_user: 3
|
||||
|
@ -350,7 +361,9 @@ spam:
|
|||
notify_mods_when_user_blocked: false
|
||||
flag_sockpuppets: true
|
||||
newuser_spam_host_threshold: 3
|
||||
white_listed_spam_host_domains: ""
|
||||
white_listed_spam_host_domains:
|
||||
default: ''
|
||||
list: true
|
||||
|
||||
rate_limits:
|
||||
unique_posts_mins:
|
||||
|
|
31
db/migrate/20140407202158_site_setting_comma_to_pipe.rb
Normal file
31
db/migrate/20140407202158_site_setting_comma_to_pipe.rb
Normal file
|
@ -0,0 +1,31 @@
|
|||
class SiteSettingCommaToPipe < ActiveRecord::Migration
|
||||
def up
|
||||
execute <<SQL
|
||||
UPDATE site_settings
|
||||
SET value = replace(value, ',', '|')
|
||||
WHERE name = 'white_listed_spam_host_domains'
|
||||
;
|
||||
SQL
|
||||
execute <<SQL
|
||||
UPDATE site_settings
|
||||
SET value = replace(value, ',', '|')
|
||||
WHERE name = 'exclude_rel_nofollow_domains'
|
||||
;
|
||||
SQL
|
||||
end
|
||||
|
||||
def down
|
||||
execute <<SQL
|
||||
UPDATE site_settings
|
||||
SET value = replace(value, '|', ',')
|
||||
WHERE name = 'white_listed_spam_host_domains'
|
||||
;
|
||||
SQL
|
||||
execute <<SQL
|
||||
UPDATE site_settings
|
||||
SET value = replace(value, '|', ',')
|
||||
WHERE name = 'exclude_rel_nofollow_domains'
|
||||
;
|
||||
SQL
|
||||
end
|
||||
end
|
|
@ -175,7 +175,7 @@ module PrettyText
|
|||
whitelist = []
|
||||
|
||||
domains = SiteSetting.exclude_rel_nofollow_domains
|
||||
whitelist = domains.split(",") if domains.present?
|
||||
whitelist = domains.split('|') if domains.present?
|
||||
|
||||
site_uri = nil
|
||||
doc = Nokogiri::HTML.fragment(html)
|
||||
|
|
|
@ -14,7 +14,7 @@ module SiteSettingExtension
|
|||
end
|
||||
|
||||
def types
|
||||
@types ||= Enum.new(:string, :time, :fixnum, :float, :bool, :null, :enum)
|
||||
@types ||= Enum.new(:string, :time, :fixnum, :float, :bool, :null, :enum, :list)
|
||||
end
|
||||
|
||||
def mutex
|
||||
|
@ -38,6 +38,10 @@ module SiteSettingExtension
|
|||
@enums ||= {}
|
||||
end
|
||||
|
||||
def lists
|
||||
@lists ||= []
|
||||
end
|
||||
|
||||
def hidden_settings
|
||||
@hidden_settings ||= []
|
||||
end
|
||||
|
@ -56,10 +60,13 @@ module SiteSettingExtension
|
|||
enum = opts[:enum]
|
||||
enums[name] = enum.is_a?(String) ? enum.constantize : enum
|
||||
end
|
||||
if opts[:hidden] == true
|
||||
if opts[:list]
|
||||
lists << name
|
||||
end
|
||||
if opts[:hidden]
|
||||
hidden_settings << name
|
||||
end
|
||||
if opts[:refresh] == true
|
||||
if opts[:refresh]
|
||||
refresh_settings << name
|
||||
end
|
||||
|
||||
|
@ -261,6 +268,7 @@ module SiteSettingExtension
|
|||
def get_data_type(name,val)
|
||||
return types[:null] if val.nil?
|
||||
return types[:enum] if enums[name]
|
||||
return types[:list] if lists.include? name
|
||||
|
||||
case val
|
||||
when String
|
||||
|
@ -278,12 +286,14 @@ module SiteSettingExtension
|
|||
case type
|
||||
when types[:fixnum]
|
||||
value.to_i
|
||||
when types[:string], types[:enum]
|
||||
when types[:string], types[:list], types[:enum]
|
||||
value
|
||||
when types[:bool]
|
||||
value == true || value == "t" || value == "true"
|
||||
when types[:null]
|
||||
nil
|
||||
else
|
||||
raise ArgumentError.new :type
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ describe PrettyText do
|
|||
describe "rel nofollow" do
|
||||
before do
|
||||
SiteSetting.stubs(:add_rel_nofollow_to_user_content).returns(true)
|
||||
SiteSetting.stubs(:exclude_rel_nofollow_domains).returns("foo.com,bar.com")
|
||||
SiteSetting.stubs(:exclude_rel_nofollow_domains).returns("foo.com|bar.com")
|
||||
end
|
||||
|
||||
it "should inject nofollow in all user provided links" do
|
||||
|
|
|
@ -810,7 +810,7 @@ describe Post do
|
|||
|
||||
post.has_host_spam?.should == true
|
||||
|
||||
SiteSetting.stubs(:white_listed_spam_host_domains).returns("bla.com,boo.com , somesite.com ")
|
||||
SiteSetting.stubs(:white_listed_spam_host_domains).returns("bla.com|boo.com | somesite.com ")
|
||||
post.has_host_spam?.should == false
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue