mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:16:41 +08:00
DEV: Strip unicode from color scheme stylesheet filenames (#10628)
This commit is contained in:
parent
4dd07843c6
commit
d4a7058cb1
|
@ -313,7 +313,7 @@ class Stylesheet::Manager
|
|||
if is_theme?
|
||||
"#{@target}_#{theme.id}"
|
||||
elsif @color_scheme
|
||||
"#{@target}_#{Slug.for(@color_scheme.name)}_#{@color_scheme&.id.to_s}"
|
||||
"#{@target}_#{scheme_slug}_#{@color_scheme&.id.to_s}"
|
||||
else
|
||||
scheme_string = theme && theme.color_scheme ? "_#{theme.color_scheme.id}" : ""
|
||||
"#{@target}#{scheme_string}"
|
||||
|
@ -333,6 +333,10 @@ class Stylesheet::Manager
|
|||
!!(@target.to_s =~ THEME_REGEX)
|
||||
end
|
||||
|
||||
def scheme_slug
|
||||
Slug.for(ActiveSupport::Inflector.transliterate(@color_scheme.name), 'scheme')
|
||||
end
|
||||
|
||||
# digest encodes the things that trigger a recompile
|
||||
def digest
|
||||
@digest ||= begin
|
||||
|
|
|
@ -273,6 +273,21 @@ describe Stylesheet::Manager do
|
|||
|
||||
expect(stylesheet).to include("--special: rebeccapurple")
|
||||
end
|
||||
|
||||
context 'encoded slugs' do
|
||||
before { SiteSetting.slug_generation_method = 'encoded' }
|
||||
after { SiteSetting.slug_generation_method = 'ascii' }
|
||||
|
||||
it "strips unicode in color scheme stylesheet filenames" do
|
||||
cs = Fabricate(:color_scheme, name: 'Grün')
|
||||
cs2 = Fabricate(:color_scheme, name: '어두운')
|
||||
|
||||
link = Stylesheet::Manager.color_scheme_stylesheet_link_tag(cs.id)
|
||||
expect(link).to include("/stylesheets/color_definitions_grun_#{cs.id}_")
|
||||
link2 = Stylesheet::Manager.color_scheme_stylesheet_link_tag(cs2.id)
|
||||
expect(link2).to include("/stylesheets/color_definitions_scheme_#{cs2.id}_")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# this test takes too long, we don't run it by default
|
||||
|
|
Loading…
Reference in New Issue
Block a user