Sha256: cea7310c0ca8af6809834b8a411ce2be5b60fa212fc005791e39240d04083601

Contents?: true

Size: 823 Bytes

Versions: 23

Compression:

Stored size: 823 Bytes

Contents

# encoding: utf-8
# frozen_string_literal: true
# 
# 
# 
module Mail
  class ContentLocationField < StructuredField
    
    FIELD_NAME = 'content-location'
    CAPITALIZED_FIELD = 'Content-Location'
    
    def initialize(value = nil, charset = 'utf-8')
      self.charset = charset
      super(CAPITALIZED_FIELD, strip_field(FIELD_NAME, value), charset)
      self.parse
      self
    end
    
    def parse(val = value)
      unless Utilities.blank?(val)
        @element = Mail::ContentLocationElement.new(val)
      end
    end
    
    def element
      @element ||= Mail::ContentLocationElement.new(value)
    end

    def location
      element.location
    end

    # TODO: Fix this up
    def encoded
      "#{CAPITALIZED_FIELD}: #{location}\r\n"
    end
    
    def decoded
      location 
    end

  end
end

Version data entries

23 entries across 21 versions & 6 rubygems

Version Path
tdiary-5.0.6 vendor/bundle/gems/mail-2.6.6/lib/mail/fields/content_location_field.rb
tdiary-5.0.5 vendor/bundle/gems/mail-2.6.4/lib/mail/fields/content_location_field.rb
tdiary-5.0.5 vendor/bundle/gems/mail-2.6.6/lib/mail/fields/content_location_field.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/mail-2.6.4/lib/mail/fields/content_location_field.rb
mail-2.6.6 lib/mail/fields/content_location_field.rb
mail-2.7.0.rc1 lib/mail/fields/content_location_field.rb
mail-2.6.6.rc1 lib/mail/fields/content_location_field.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/mail-2.6.5/lib/mail/fields/content_location_field.rb
mail-2.6.5 lib/mail/fields/content_location_field.rb
mail-2.6.5.rc1 lib/mail/fields/content_location_field.rb
tdiary-5.0.4 vendor/bundle/gems/mail-2.6.4/lib/mail/fields/content_location_field.rb
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/content_location_field.rb
autocompl-0.2.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/content_location_field.rb
autocompl-0.2.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/content_location_field.rb
autocompl-0.1.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/content_location_field.rb
autocompl-0.1.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/content_location_field.rb
autocompl-0.1.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/content_location_field.rb
autocompl-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/mail-2.6.4/lib/mail/fields/content_location_field.rb
abaci-0.3.0 vendor/bundle/gems/mail-2.6.4/lib/mail/fields/content_location_field.rb
tdiary-5.0.2 vendor/bundle/gems/mail-2.6.4/lib/mail/fields/content_location_field.rb