Sha256: 47b535ea648db7ce45446b69da01fd66df9aabc66be9ed034c14b6af548da584
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 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", :header_title => "Milkode", :header_icon => "/images/MilkodeIcon135.png", :favicon => "/images/favicon.ico", :display_about_milkode => true } 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 :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 end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
milkode-1.4.0 | lib/milkode/cdweb/lib/web_setting.rb |