blob: a7d6b166dbecc1e268128a77895fcab3863239dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#! /usr/bin/env ruby
#
$LOAD_PATH << File.join(File.dirname( File.absolute_path(__FILE__)), '..', 'lib')
#
require 'zorglub'
#
require 'haml'
HAML_PROC = Proc.new { |path,obj| Haml::Engine.new( File.open(path,'r').read ).render(obj) }
Zorglub::Config.register_engine 'haml', 'haml', HAML_PROC
Zorglub::Config.register_engine 'temp-engine', 'haml', HAML_PROC
#
Zorglub::Config.engine = 'haml'
Zorglub::Config.root = File.dirname( File.absolute_path(__FILE__) )
#
class Node1 < Zorglub::Node
#
include Zorglub::Helpers::Css
css 'class_level.css'
#
def index a1, *a2
@title='Index'
css 'instance_level.css'
end
#
def alt *args
@title='Alt'
"<title>Node1:alt</title>#{html}"
end
#
end
#
APP = Zorglub::App.new do
map '/url1', Node1
end
#
class Node2 < Zorglub::Node
#
include Zorglub::Helpers::Css
#
map APP, '/url2'
engine 'my-engine' # not available
layout 'my-layout' # not available
#
def index *args
"<title>Node2:alt</title>#{html}"
end
#
def alt *args
@title = "Alt 2"
engine 'temp-engine' # haml renamed
layout 'other' # use layout/other.haml template
view File.join( 'url1','alt') # use view/url1/alt.haml template
"<title>Node2:alt</title>#{html}"
end
#
end
#
puts APP.to_hash.inspect
#
map '/' do
use Rack::ShowExceptions
run APP
end
#
|