Sha256: 3865f1c6a5668357d2c2301a0eb885f0c3a44011c6d15b4f7e939d953a89d4ac

Contents?: true

Size: 1.44 KB

Versions: 9

Compression:

Stored size: 1.44 KB

Contents

# encoding: utf-8

module Nanoc3::Filters
  class RelativizePaths < Nanoc3::Filter

    require 'nanoc3/helpers/link_to'
    include Nanoc3::Helpers::LinkTo

    # Relativizes all paths in the given content, which can be either HTML or
    # CSS. This filter is quite useful if a site needs to be hosted in a
    # subdirectory instead of a subdomain. In HTML, all `href` and `src`
    # attributes will be relativized. In CSS, all `url()` references will be
    # relativized.
    #
    # @param [String] content The content to filter
    #
    # @option params [Symbol] :type The type of content to filter; can be
    #   either `:html` or `:css`.
    #
    # @return [String] The filtered content
    def run(content, params={})
      # Set assigns so helper function can be used
      @item_rep = assigns[:item_rep] if @item_rep.nil?

      # Filter
      # FIXME use nokogiri or csspool instead of regular expressions
      case params[:type]
      when :html
        content.gsub(/(<[^>]+\s+(src|href))=(['"]?)(\/.*?)\3([ >])/) do
          $1 + '=' + $3 + relative_path_to($4) + $3 + $5
        end
      when :css
        content.gsub(/url\((['"]?)(\/.*?)\1\)/) do
          'url(' + $1 + relative_path_to($2) + $1 + ')'
        end
      else
        raise RuntimeError.new(
          "The relativize_paths needs to know the type of content to " +
          "process. Pass :type => :html for HTML or :type => :css for CSS."
        )
      end
    end

  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
nanoc3-3.2.1 lib/nanoc3/filters/relativize_paths.rb
nanoc3-3.2.0 lib/nanoc3/filters/relativize_paths.rb
nanoc3-3.2.0b3 lib/nanoc3/filters/relativize_paths.rb
nanoc3-3.2.0b2 lib/nanoc3/filters/relativize_paths.rb
nanoc3-3.2.0b1 lib/nanoc3/filters/relativize_paths.rb
nanoc3-3.2.0a4 lib/nanoc3/filters/relativize_paths.rb
nanoc3-3.2.0a3 lib/nanoc3/filters/relativize_paths.rb
nanoc3-3.2.0a2 lib/nanoc3/filters/relativize_paths.rb
nanoc3-3.2.0a1 lib/nanoc3/filters/relativize_paths.rb