mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 13:03:44 +08:00
a3e8c3cd7b
This feature introduces the concept of themes. Themes are an evolution of site customizations. Themes introduce two very big conceptual changes: - A theme may include other "child themes", children can include grand children and so on. - A theme may specify a color scheme The change does away with the idea of "enabled" color schemes. It also adds a bunch of big niceties like - You can source a theme from a git repo - History for themes is much improved - You can only have a single enabled theme. Themes can be selected by users, if you opt for it. On a technical level this change comes with a whole bunch of goodies - All CSS is now compiled using a custom pipeline that uses libsass see /lib/stylesheet - There is a single pipeline for css compilation (in the past we used one for customizations and another one for the rest of the app - The stylesheet pipeline is now divorced of sprockets, there is no reliance on sprockets for CSS bundling - CSS is generated with source maps everywhere (including themes) this makes debugging much easier - Our "live reloader" is smarter and avoid a flash of unstyled content we run a file watcher in "puma" in dev so you no longer need to run rake autospec to watch for CSS changes
41 lines
1.3 KiB
Ruby
41 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
module Middleware
|
|
|
|
# Cheat and bypass Rails in development mode if the client attempts to download a static asset
|
|
# that's already been downloaded.
|
|
#
|
|
# Also ensures that assets are not cached in development mode. Around Chrome 29, the behavior
|
|
# of `must-revalidate` changed and would often not request assets that had changed.
|
|
#
|
|
# To use, include in your project and add the following to development.rb:
|
|
#
|
|
# require 'middleware/turbo_dev'
|
|
# config.middleware.insert 0, Middleware::TurboDev
|
|
#
|
|
class TurboDev
|
|
def initialize(app, settings={})
|
|
@app = app
|
|
end
|
|
|
|
def call(env)
|
|
root = "#{GlobalSetting.relative_url_root}/assets/"
|
|
is_asset = env['REQUEST_PATH'] && env['REQUEST_PATH'].starts_with?(root)
|
|
|
|
# hack to bypass all middleware if serving assets, a lot faster 4.5 seconds -> 1.5 seconds
|
|
if (etag = env['HTTP_IF_NONE_MATCH']) && is_asset
|
|
name = env['REQUEST_PATH'][(root.length)..-1]
|
|
etag = etag.gsub "\"", ""
|
|
asset = Rails.application.assets.find_asset(name)
|
|
if asset && asset.digest == etag
|
|
return [304,{},[]]
|
|
end
|
|
end
|
|
|
|
status, headers, response = @app.call(env)
|
|
headers['Cache-Control'] = 'no-cache' if is_asset
|
|
[status, headers, response]
|
|
end
|
|
end
|
|
|
|
end
|