Sha256: b6d015bb35e023da391d232692ab826c72083eb6df491c5eaa45aecbabbe746b

Contents?: true

Size: 1.18 KB

Versions: 7

Compression:

Stored size: 1.18 KB

Contents

require 'helpers-blog'
require 'runeblog'

class RuneBlog::View
  attr_reader :name, :state
  attr_accessor :publisher

  include RuneBlog::Helpers

  def initialize(name)
    raise NoBlogAccessor if RuneBlog.blog.nil?
    @blog = RuneBlog.blog
    @name = name
    @can_publish = false
    pub_file = @blog.root + "/views/#@name/publish"
    unless File.size(pub_file) == 0
      @publisher = RuneBlog::Publishing.new(read_config(pub_file))
      @can_publish = true
    end
  end

  def dir
    @blog.root + "/views/#@name/"
  end

  def index
    dir + "index.html"
  end

  def to_s
    @name
  end

  def files(recent = false)
    vdir = dir()
    files = [index()]
    others = Dir.entries(vdir).grep(/^\d\d\d\d/)
    files += others.map {|x| "#{vdir}/#{x}" }
    files.reject! {|f| ! recent?(f) } if recent
    files
  end

  def can_publish?
    @can_publish
  end

  def publish
    # ?? @blog.view.publisher.publish
    # output "Files:"
    # files.each {|f| output "    #{f}\n" }
    output_newline
    list = files(true)
    @publisher.publish(list)
  rescue => err
    error(err)
  end

  def recent?(file)
    File.mtime(file) > File.mtime("#{dir()}/last_published")
  rescue
    true
  end

end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
runeblog-0.1.23 lib/view.rb
runeblog-0.1.22 lib/view.rb
runeblog-0.1.21 lib/view.rb
runeblog-0.1.20 lib/view.rb
runeblog-0.1.19 lib/view.rb
runeblog-0.1.17 lib/view.rb
runeblog-0.1.16 lib/view.rb