Class: Awestruct::Engine
- Inherits:
-
Object
- Object
- Awestruct::Engine
- Defined in:
- lib/awestruct/engine.rb
Instance Attribute Summary (collapse)
-
- (Object) config
readonly
Returns the value of attribute config.
-
- (Object) dir
readonly
Returns the value of attribute dir.
-
- (Object) site
readonly
Returns the value of attribute site.
Instance Method Summary (collapse)
- - (Object) create_context(page, content = '')
- - (Object) find_and_load_site_page(simple_path)
- - (Object) generate(profile = nil, base_url = nil, default_base_url = nil, force = false)
-
- (Engine) initialize(config)
constructor
A new instance of Engine.
- - (Object) load_page(path, options = {})
- - (Object) load_site_page(relative_path)
- - (Object) set_urls(pages)
- - (Object) skin_dir
Constructor Details
- (Engine) initialize(config)
A new instance of Engine
57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/awestruct/engine.rb', line 57 def initialize(config) @dir = config.input_dir @config = config @site = Site.new( config ) @site.engine = self @helpers = [] @max_site_mtime = nil adjust_load_path end |
Instance Attribute Details
- (Object) config (readonly)
Returns the value of attribute config
53 54 55 |
# File 'lib/awestruct/engine.rb', line 53 def config @config end |
- (Object) dir (readonly)
Returns the value of attribute dir
54 55 56 |
# File 'lib/awestruct/engine.rb', line 54 def dir @dir end |
- (Object) site (readonly)
Returns the value of attribute site
55 56 57 |
# File 'lib/awestruct/engine.rb', line 55 def site @site end |
Instance Method Details
- (Object) create_context(page, content = '')
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
# File 'lib/awestruct/engine.rb', line 141 def create_context(page, content='') context = OpenStruct.new( :site=>site, :content=>content ) context.extend( Awestruct::ContextHelper ) @helpers.each do |h| context.extend( h ) end context.page = page class << context def interpolate_string(str) if site.interpolate str = str || '' str = str.gsub( /\\/, '\\\\\\\\' ) str = str.gsub( /\\\\#/, '\\#' ) str = str.gsub( '@', '\@' ) str = "%@#{str}@" result = instance_eval( str ) result else str || '' end end def evaluate_erb(erb) erb.result( binding ) end end context end |
- (Object) find_and_load_site_page(simple_path)
92 93 94 95 96 97 98 99 100 101 |
# File 'lib/awestruct/engine.rb', line 92 def find_and_load_site_page(simple_path) path_glob = File.join( config.input_dir, simple_path + '.*' ) candidates = Dir[ path_glob ] return nil if candidates.empty? throw Exception.new( "too many choices for #{simple_path}" ) if candidates.size != 1 dir_pathname = Pathname.new( dir ) path_name = Pathname.new( candidates[0] ) relative_path = path_name.relative_path_from( dir_pathname ).to_s load_page( candidates[0], :relative_path => relative_path ) end |
- (Object) generate(profile = nil, base_url = nil, default_base_url = nil, force = false)
77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/awestruct/engine.rb', line 77 def generate(profile=nil, base_url=nil, default_base_url=nil, force=false) @base_url = base_url @default_base_url = default_base_url @max_site_mtime = nil load_site_yaml(profile) load_yamls set_base_url load_layouts load_pages load_extensions set_urls(site.pages) configure_compass generate_files(force) end |
- (Object) load_page(path, options = {})
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/awestruct/engine.rb', line 107 def load_page(path, = {}) page = nil if ( [:relative_path].nil? ) #dir_pathname = Pathname.new( dir ) #path_name = Pathname.new( path ) #relative_path = path_name.relative_path_from( dir_pathname ).to_s end fixed_relative_path = ( [:relative_path].nil? ? nil : File.join( '', [:relative_path] ) ) if ( path =~ /\.haml$/ ) page = HamlFile.new( site, path, fixed_relative_path, ) elsif ( path =~ /\.erb$/ ) page = ErbFile.new( site, path, fixed_relative_path, ) elsif ( path =~ /\.textile$/ ) page = TextileFile.new( site, path, fixed_relative_path, ) elsif ( path =~ /\.md$/ ) page = MarkdownFile.new( site, path, fixed_relative_path, ) elsif ( path =~ /\.(asciidoc|adoc)$/ ) page = AsciiDocFile.new( site, path, fixed_relative_path, ) elsif ( path =~ /\.sass$/ ) page = SassFile.new( site, path, fixed_relative_path, ) elsif ( path =~ /\.scss$/ ) page = ScssFile.new( site, path, fixed_relative_path, ) elsif ( path =~ /\.org$/ ) page = OrgmodeFile.new( site, path, fixed_relative_path, ) elsif ( path =~ /\.rst$/ ) page = ReStructuredTextFile.new( site, path, fixed_relative_path, ) elsif ( File.file?( path ) ) page = VerbatimFile.new( site, path, fixed_relative_path, ) end page end |
- (Object) load_site_page(relative_path)
103 104 105 |
# File 'lib/awestruct/engine.rb', line 103 def load_site_page(relative_path) load_page( File.join( dir, relative_path ) ) end |
- (Object) set_urls(pages)
169 170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'lib/awestruct/engine.rb', line 169 def set_urls(pages) pages.each do |page| page_path = page.output_path if ( page_path =~ /^\// ) page.url = page_path else page.url = "/#{page_path}" end if ( page.url =~ /^(.*\/)index.html$/ ) page.url = $1 end end end |
- (Object) skin_dir
69 70 71 |
# File 'lib/awestruct/engine.rb', line 69 def skin_dir @site.skin_dir end |