devdaily home | apple | java | perl | unix | directory | blog

What this is

This file is included in the DevDaily.com "Ruby Source Code Warehouse" project. The intent of this project is to help you "Learn Ruby by Example" TM.

Other links

The source code

# Copyritght (c) 2002 TANIGUCHI Takaki
# This program is distributed under the GNU GPL 2 or later.

require 'strscan'
require 'uri/common'

require 'amrita/parts'
require 'aswiki/scanner'

module AsWiki 
  class Node
    module PartsModule
    end

    def Node::load_parts_template
      pt = Amrita::TemplateFileWithCache[File.join($DIR_TEMPLATE,'Node.html')]
      pt.expand_attr = true
      pt.install_parts_to(PartsModule)
    end

    def initialize(template)
      @data = []
      # compact_space = false
      extend PartsModule.const_get(template)
    end

    def <<(item)
      @data << item
      self
    end
    attr_reader :data
  end
end




Copyright 1998-2008 Alvin Alexander
All Rights Reserved.
 
devdaily.com is based in louisville, kentucky, and this web site is hosted by godaddy.com