public
Description: The revolutions will be digitized
Homepage: http://www.opensprints.com/
Clone URL: git://github.com/evanfarrar/opensprints.git
Click here to lend your support to: opensprints and make a donation at www.pledgie.com !
lukeorland (author)
Thu Nov 12 21:31:20 -0800 2009
commit  ee429f284622bec53ec67480590b17072438efb8
tree    669daf89466e287613e585781080198cea588b1d
parent  c7a66da2a4a0ea3eee3482aef5164d4ded3df75f
opensprints / opensprints.rb
100644 238 lines (206 sloc) 6.869 kb
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
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
140
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
Shoes.setup do
  gem "activesupport"
  gem "bacon"
  gem "r18n-desktop"
  gem "sequel"
  source "http://gemcutter.org"
  gem "opensprints-core 0.5.3"
  gem "multipart-post"
end
 
class Shoes::Check
  def toggle
    self.checked = !self.checked?
  end
end
 
module DefaultStyles
  def custom_font
    nil
  end
  
  def text_color
    nil
  end
  
  def link_color
    nil
  end
  
  def link_hover
    nil
  end
  
  def link_hover_background
    nil
  end
 
  def container_background
    nil
  end
 
  def container_border
    nil
  end
  
  def button_background
    nil
  end
 
  def button_border
    nil
  end
 
  def divider_color
    nil
  end
 
  def right_bar_color
    nil
  end
end
 
module MainHelper
  def button(text, styles={}, &callback)
    stack(:height => 32, :width => styles[:width]||(40+(text.length * 8)), :margin => [5,10,5,0], :padding_top => 0) do
      background(button_background||styles[:fill]||("#e5e6e6"..."#c1c2c4"), :curve => 1)
      border(button_border||styles[:border]||"#ffcf01")
      t = inscription(text, :align => styles[:align]||'center', :stroke => styles[:stroke]||black, :margin => styles[:margin]||[0]*4)
      click &callback
      hover {
        self.cursor = :hand
      }
      leave {
        self.cursor = :arrow
      }
    end
  end
 
  def left_button(text, styles={}, &callback)
    button(text, styles.merge({:width => 1.0, :align => 'left', :margin => [10,0,0,0]}), &callback)
  end
 
  def light_button(text, styles={}, &callback)
    button(text, styles.merge({}), &callback)
  end
 
  def image_button(path,styles={}, &callback)
    stack(:margin_top => 8, :width => 20) do
      click &callback
      b = background(link_hover_background||"#ffcf01")
      image path
      b.hide
      hover {
        b.show
        self.cursor = :hand
      }
      leave {
        b.hide
        self.cursor = :arrow
      }
    end
  end
 
  def delete_button(styles={}, &callback)
    image_button("media/cross.png", styles, &callback)
  end
  def edit_button(styles={}, &callback)
    image_button("media/application_form_edit.png", styles, &callback)
  end
 
  def container
    background(container_background||("#e5e6e6"..."#babcbe"), :curve => 1)
    border(container_border||"#ffcf01")
  end
 
  def session
    if(defined?(@@session) && @@session)
      @@session
    else
      @@session = {:referrer => []}
    end
  end
 
  def separator_line(n=45)
    flow(:height => 18, :scroll => false) do
      inscription '_'*n, :margin => [0]*4, :stroke => divider_color||"#ffcf01"
    end
  end
 
  def small_logo
    if(defined?(SKIN)&&File.exist?("media/skins/#{SKIN}/logo_text.png"))
      image("media/skins/#{SKIN}/logo_text.png", :attach => Window, :top => 30, :left => WIDTH-110)
    else
      image("media/logo_text.png", :attach => Window, :top => 30, :left => WIDTH-110)
    end
  end
end
 
class Main < Shoes
  url '/', :index
 
  include DefaultStyles
  include MainHelper
 
  def custom_styles
    if Shoes::FONTS.grep(/Avenir/).any?
      default_font = "Avenir Black"
    else
      default_font = "Delicious Heavy"
    end
    style(Banner, :size => 48, :stroke => text_color||black, :font => custom_font||default_font)
    style(Title, :size => 34, :stroke => text_color||black, :font => custom_font||default_font)
    style(Subtitle, :size => 26, :stroke => text_color||black, :font => custom_font||default_font)
    style(Tagline, :size => 18, :stroke => text_color||black, :font => custom_font||default_font)
    style(Caption, :size => 14, :stroke => text_color||black, :font => custom_font||default_font)
    style(Para, :size => 12, :margin => [0]*4, :weight => "Bold", :stroke => text_color||black, :font => custom_font||default_font)
    style(Inscription,:size => 10, :stroke => text_color||black, :margin => [0]*4, :font => custom_font||default_font)
 
    style(Code, :family => 'monospace')
    style(Del, :strikethrough => 'single')
    style(Em, :emphasis => 'italic')
    style(Ins, :underline => 'single')
    style(Link, :underline => 'none', :stroke => link_color||"#ffcf01")
    style(LinkHover, :underline => 'none', :stroke => link_hover||black, :fill => link_hover_background||"#ffcf01")
    style(Strong, :weight => 'bold')
    style(Sup, :rise => 10, :size => 'x-small')
    style(Sub, :rise => -10, :size => 'x-small')
  end
  
 
  def index
    layout(:main)
    if(defined?(SKIN)&&File.exist?("media/skins/#{SKIN}/logo_with_text.png"))
      logoimage = "media/skins/#{SKIN}/logo_with_text.png"
    else
      logoimage = "media/logo_with_text.png"
    end
    @header.clear
    @nav.clear
    @center.clear {
      stack {
        flow(:attach => Window, :top => (@center.height * 0.2).to_i, :left => (WIDTH / 2)-350) { image(logoimage) }
        flow(:attach => Window, :top => (@center.height * 0.6).to_i, :left => (WIDTH / 2)-350) {
          caption(link($i18n.categories, :click => "/categories"))
          caption(" / ", :stroke => link_color)
          caption(link($i18n.events, :click => "/tournaments"))
          caption(" / ", :stroke => link_color)
          caption(link($i18n.configuration, :click => "/configuration"))
        }
      }
    }
  end
 
  def nav
    @nav = flow(:attach => Window, :top => 0, :left => 20) {
      button($i18n.return_to_main_menu) { visit "/" }
    }
  end
  def layout(background_type=:race)
    self.cursor = :arrow
    custom_styles
    background BACKGROUND_COLOR if(defined?(BACKGROUND_COLOR))
    if(background_type==:menu)
      background MENU_BACKGROUND_IMAGE if(defined?(MENU_BACKGROUND_IMAGE))
      background "media/skins/#{SKIN}/background_menus.png" if(defined?(SKIN)&&File.exist?("media/skins/#{SKIN}/background_menus.png"))
    elsif(background_type==:race)
      background BACKGROUND_IMAGE if(defined?(BACKGROUND_IMAGE))
      background "media/skins/#{SKIN}/background_race.png" if(defined?(SKIN)&&File.exist?("media/skins/#{SKIN}/background_race.png"))
    elsif(background_type==:main)
      background BACKGROUND_IMAGE if(defined?(BACKGROUND_IMAGE))
      background "media/skins/#{SKIN}/background_main.png" if(defined?(SKIN)&&File.exist?("media/skins/#{SKIN}/background_main.png"))
    end
    nav
    @header = flow do
      title @title||TITLE
    end
    @left = stack(:width => 150) do
    end
    @center = flow(:width => width - (175+125), :height => ((USABLE_HEIGHT||HEIGHT)-@header.height-125)) do
    end
    @right = flow(:width => 150) do
    end
  end
 
end
#YAY HAPPY FUN TIME UN-NAMESPACING
Kernel::Main = Main
 
require 'lib/setup.rb'
if defined? SKIN
  load("media/skins/#{SKIN}/stylesheet.rb") if File.exist?("media/skins/#{SKIN}/stylesheet.rb")
  class Main < Shoes
    include CustomStyles if(defined?(CustomStyles))
  end
end
 
Shoes.app(:height => HEIGHT, :width => WIDTH, :scroll => false, :title => TITLE)