Sha256: 4200650bc4891c4bd3ac78763b74322ef7388f955989f0c19a6563373fcfc389

Contents?: true

Size: 1.53 KB

Versions: 5

Compression:

Stored size: 1.53 KB

Contents

# -*- coding: utf-8 -*-
#
# @file 
# @brief
# @author ongaeshi
# @date   2012/03/24

require 'milkode/cdweb/lib/database'
require 'yaml'
require 'i18n'

module Milkode
  class WebSetting
    DEFAULT_SETTING = {
      :home_title    => "Milkode",
      :home_icon     => "/images/MilkodeIcon135.png",
      :home_font_size => "100%",

      :header_title => "Milkode",
      :header_icon  => "/images/MilkodeIcon135.png",

      :favicon      => "/images/favicon.ico",

      :display_about_milkode => true,
      :hide_update_button => false,

      :eliminate_extname => "",

      :layout_setting => {
        :tab_width => 8
      }
    }

    def self.hash_method(name)
      define_method(name) do
        if @data[name]
          @data[name]
        else
          DEFAULT_SETTING[name]
        end
      end
    end

    def initialize
      fname = File.join(Database.dbdir, "milkweb.yaml")
      if FileTest.exist? fname
        open(fname) do |f|
          @data = YAML.load(f.read)
        end
      else
        @data = DEFAULT_SETTING
      end
    end

    hash_method :home_title
    hash_method :home_icon
    hash_method :home_font_size
    
    hash_method :header_title
    hash_method :header_icon

    hash_method :favicon
    
    def about_milkode(locale)
      if (@data[:display_about_milkode])
        '<a href="http://milkode.ongaeshi.me">'+I18n.t(:about_milkode, locale: locale)+'</a>'
      else
        ''
      end
    end

    hash_method :hide_update_button
    hash_method :eliminate_extname

    hash_method :layout_setting
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
milkode-1.8.9.2 lib/milkode/cdweb/lib/web_setting.rb
milkode-1.8.9.1 lib/milkode/cdweb/lib/web_setting.rb
milkode-1.8.9 lib/milkode/cdweb/lib/web_setting.rb
milkode-1.8.8 lib/milkode/cdweb/lib/web_setting.rb
milkode-1.8.7 lib/milkode/cdweb/lib/web_setting.rb