epall-limelight 0.5.0-java
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/icons/icon.ico +0 -0
- data/bin/icons/icon_48.gif +0 -0
- data/bin/icons/limelight.icns +0 -0
- data/bin/limelight +5 -0
- data/bin/ll +10 -0
- data/bin/ll.bat +5 -0
- data/lib/init.rb +16 -0
- data/lib/limelight.jar +0 -0
- data/lib/limelight/animation.rb +41 -0
- data/lib/limelight/builtin/players.rb +16 -0
- data/lib/limelight/builtin/players/button.rb +39 -0
- data/lib/limelight/builtin/players/check_box.rb +50 -0
- data/lib/limelight/builtin/players/combo_box.rb +89 -0
- data/lib/limelight/builtin/players/combo_box_popup_list.rb +19 -0
- data/lib/limelight/builtin/players/combo_box_popup_list_item.rb +21 -0
- data/lib/limelight/builtin/players/curtains.rb +23 -0
- data/lib/limelight/builtin/players/image.rb +54 -0
- data/lib/limelight/builtin/players/password_box.rb +34 -0
- data/lib/limelight/builtin/players/radio_button.rb +65 -0
- data/lib/limelight/builtin/players/stage_mover.rb +31 -0
- data/lib/limelight/builtin/players/stage_sizer.rb +34 -0
- data/lib/limelight/builtin/players/text_area.rb +34 -0
- data/lib/limelight/builtin/players/text_box.rb +34 -0
- data/lib/limelight/builtin/styles.rb +35 -0
- data/lib/limelight/builtin/utilities_production/alert/players/alert.rb +11 -0
- data/lib/limelight/builtin/utilities_production/alert/props.rb +8 -0
- data/lib/limelight/builtin/utilities_production/alert/styles.rb +14 -0
- data/lib/limelight/builtin/utilities_production/incompatible_version/props.rb +20 -0
- data/lib/limelight/builtin/utilities_production/incompatible_version/styles.rb +12 -0
- data/lib/limelight/builtin/utilities_production/production.rb +62 -0
- data/lib/limelight/builtin/utilities_production/stages.rb +12 -0
- data/lib/limelight/builtin/utilities_production/styles.rb +53 -0
- data/lib/limelight/button_group_cache.rb +11 -0
- data/lib/limelight/casting_director.rb +112 -0
- data/lib/limelight/client/playbills.rb +86 -0
- data/lib/limelight/commands/command.rb +168 -0
- data/lib/limelight/commands/create_command.rb +98 -0
- data/lib/limelight/commands/freeze_command.rb +131 -0
- data/lib/limelight/commands/help_command.rb +61 -0
- data/lib/limelight/commands/open_command.rb +60 -0
- data/lib/limelight/commands/pack_command.rb +45 -0
- data/lib/limelight/commands/unpack_command.rb +44 -0
- data/lib/limelight/commands/version_command.rb +31 -0
- data/lib/limelight/data.rb +37 -0
- data/lib/limelight/dsl/build_exception.rb +55 -0
- data/lib/limelight/dsl/menu_bar.rb +71 -0
- data/lib/limelight/dsl/prop_builder.rb +155 -0
- data/lib/limelight/dsl/stage_builder.rb +105 -0
- data/lib/limelight/dsl/styles_builder.rb +157 -0
- data/lib/limelight/file_chooser.rb +68 -0
- data/lib/limelight/file_filter.rb +33 -0
- data/lib/limelight/file_loader.rb +46 -0
- data/lib/limelight/gems.rb +51 -0
- data/lib/limelight/java_couplings.rb +66 -0
- data/lib/limelight/java_util.rb +49 -0
- data/lib/limelight/limelight_exception.rb +24 -0
- data/lib/limelight/main.rb +108 -0
- data/lib/limelight/paint_action.rb +27 -0
- data/lib/limelight/pen.rb +83 -0
- data/lib/limelight/producer.rb +179 -0
- data/lib/limelight/production.rb +169 -0
- data/lib/limelight/prop.rb +367 -0
- data/lib/limelight/scene.rb +151 -0
- data/lib/limelight/specs/spec_helper.rb +87 -0
- data/lib/limelight/specs/test_scene_opener.rb +60 -0
- data/lib/limelight/stage.rb +292 -0
- data/lib/limelight/string.rb +38 -0
- data/lib/limelight/studio.rb +185 -0
- data/lib/limelight/styles.rb +347 -0
- data/lib/limelight/templates/production_templater.rb +49 -0
- data/lib/limelight/templates/scene_templater.rb +47 -0
- data/lib/limelight/templates/sources/freezing/limelight_init.rb.template +5 -0
- data/lib/limelight/templates/sources/production/init.rb.template +15 -0
- data/lib/limelight/templates/sources/production/production.rb.template +49 -0
- data/lib/limelight/templates/sources/production/spec/spec_helper.rb.template +12 -0
- data/lib/limelight/templates/sources/production/stages.rb.template +17 -0
- data/lib/limelight/templates/sources/production/styles.rb.template +12 -0
- data/lib/limelight/templates/sources/scene/props.rb.template +6 -0
- data/lib/limelight/templates/sources/scene/styles.rb.template +18 -0
- data/lib/limelight/templates/sources/scene_spec/scene_spec.rb.template +13 -0
- data/lib/limelight/templates/templater.rb +131 -0
- data/lib/limelight/templates/templater_logger.rb +39 -0
- data/lib/limelight/theater.rb +77 -0
- data/lib/limelight/util.rb +65 -0
- data/lib/limelight/util/downloader.rb +115 -0
- data/lib/limelight/version.rb +20 -0
- data/productions/examples/8thlight.com/about/about.txt +24 -0
- data/productions/examples/8thlight.com/about/props.rb +11 -0
- data/productions/examples/8thlight.com/about/styles.rb +2 -0
- data/productions/examples/8thlight.com/footer.rb +6 -0
- data/productions/examples/8thlight.com/home/props.rb +28 -0
- data/productions/examples/8thlight.com/home/styles.rb +2 -0
- data/productions/examples/8thlight.com/images/anvil.jpg +0 -0
- data/productions/examples/8thlight.com/images/bg.jpg +0 -0
- data/productions/examples/8thlight.com/images/botticelli.jpg +0 -0
- data/productions/examples/8thlight.com/images/button_bg.jpg +0 -0
- data/productions/examples/8thlight.com/images/canvas_bg.jpg +0 -0
- data/productions/examples/8thlight.com/images/footer_bg.jpg +0 -0
- data/productions/examples/8thlight.com/images/header.jpg +0 -0
- data/productions/examples/8thlight.com/images/moses.jpg +0 -0
- data/productions/examples/8thlight.com/images/statemachine_thumbnail.png +0 -0
- data/productions/examples/8thlight.com/images/thumbnail_book.jpg +0 -0
- data/productions/examples/8thlight.com/menu.rb +11 -0
- data/productions/examples/8thlight.com/services/props.rb +11 -0
- data/productions/examples/8thlight.com/services/services.txt +8 -0
- data/productions/examples/8thlight.com/services/styles.rb +2 -0
- data/productions/examples/8thlight.com/stages.rb +8 -0
- data/productions/examples/8thlight.com/styles.rb +210 -0
- data/productions/examples/calculator/players/button.rb +24 -0
- data/productions/examples/calculator/players/calculator.rb +15 -0
- data/productions/examples/calculator/players/calculator_model.rb +13 -0
- data/productions/examples/calculator/props.rb +23 -0
- data/productions/examples/calculator/styles.rb +36 -0
- data/productions/examples/langstons_ant/html_javascript/ant.css +39 -0
- data/productions/examples/langstons_ant/html_javascript/ant.html +22 -0
- data/productions/examples/langstons_ant/html_javascript/ant.js +23 -0
- data/productions/examples/langstons_ant/init.rb +4 -0
- data/productions/examples/langstons_ant/players/ant.rb +103 -0
- data/productions/examples/langstons_ant/players/log.rb +29 -0
- data/productions/examples/langstons_ant/players/start_stop_button.rb +37 -0
- data/productions/examples/langstons_ant/players/world.rb +35 -0
- data/productions/examples/langstons_ant/props.rb +22 -0
- data/productions/examples/langstons_ant/styles.rb +104 -0
- data/productions/examples/sandbox/alerts/incompatible_production/default_scene/props.rb +10 -0
- data/productions/examples/sandbox/alerts/incompatible_production/default_scene/styles.rb +32 -0
- data/productions/examples/sandbox/alerts/incompatible_production/production.rb +52 -0
- data/productions/examples/sandbox/alerts/incompatible_production/spec/default_scene/default_scene_spec.rb +16 -0
- data/productions/examples/sandbox/alerts/incompatible_production/spec/spec_helper.rb +8 -0
- data/productions/examples/sandbox/alerts/incompatible_production/stages.rb +20 -0
- data/productions/examples/sandbox/alerts/incompatible_production/styles.rb +15 -0
- data/productions/examples/sandbox/alerts/players/alerts.rb +17 -0
- data/productions/examples/sandbox/alerts/props.rb +10 -0
- data/productions/examples/sandbox/alerts/styles.rb +46 -0
- data/productions/examples/sandbox/background_images/props.rb +22 -0
- data/productions/examples/sandbox/background_images/styles.rb +40 -0
- data/productions/examples/sandbox/click_me/players/chromaton.rb +52 -0
- data/productions/examples/sandbox/click_me/props.rb +8 -0
- data/productions/examples/sandbox/click_me/styles.rb +11 -0
- data/productions/examples/sandbox/floaters/players/floater.rb +108 -0
- data/productions/examples/sandbox/floaters/players/surface.rb +21 -0
- data/productions/examples/sandbox/floaters/props.rb +10 -0
- data/productions/examples/sandbox/floaters/styles.rb +24 -0
- data/productions/examples/sandbox/frameing/players/sandbox.rb +17 -0
- data/productions/examples/sandbox/frameing/props.rb +35 -0
- data/productions/examples/sandbox/frameing/styles.rb +45 -0
- data/productions/examples/sandbox/gradients/players/spinner.rb +20 -0
- data/productions/examples/sandbox/gradients/players/teaser.rb +19 -0
- data/productions/examples/sandbox/gradients/players/wave.rb +19 -0
- data/productions/examples/sandbox/gradients/players/waves.rb +19 -0
- data/productions/examples/sandbox/gradients/props.rb +13 -0
- data/productions/examples/sandbox/gradients/styles.rb +47 -0
- data/productions/examples/sandbox/header.rb +22 -0
- data/productions/examples/sandbox/homer/players/homer.rb +24 -0
- data/productions/examples/sandbox/homer/props.rb +10 -0
- data/productions/examples/sandbox/homer/styles.rb +16 -0
- data/productions/examples/sandbox/images/arch.jpg +0 -0
- data/productions/examples/sandbox/images/beach.jpg +0 -0
- data/productions/examples/sandbox/images/homer.jpg +0 -0
- data/productions/examples/sandbox/images/limelight_spotlight.jpg +0 -0
- data/productions/examples/sandbox/images/logo.png +0 -0
- data/productions/examples/sandbox/images/marilyn.jpg +0 -0
- data/productions/examples/sandbox/images/space.png +0 -0
- data/productions/examples/sandbox/images_scene/props.rb +36 -0
- data/productions/examples/sandbox/images_scene/styles.rb +34 -0
- data/productions/examples/sandbox/inputs/players/button_input.rb +48 -0
- data/productions/examples/sandbox/inputs/players/check_box_input.rb +40 -0
- data/productions/examples/sandbox/inputs/players/combo_box_input.rb +41 -0
- data/productions/examples/sandbox/inputs/players/radio_button_input.rb +43 -0
- data/productions/examples/sandbox/inputs/players/text_area_input.rb +36 -0
- data/productions/examples/sandbox/inputs/players/text_box_input.rb +36 -0
- data/productions/examples/sandbox/inputs/props.rb +40 -0
- data/productions/examples/sandbox/inputs/styles.rb +39 -0
- data/productions/examples/sandbox/kiosk/players/kiosk.rb +39 -0
- data/productions/examples/sandbox/kiosk/props.rb +9 -0
- data/productions/examples/sandbox/kiosk/styles.rb +37 -0
- data/productions/examples/sandbox/players/sandbox.rb +11 -0
- data/productions/examples/sandbox/rounded_corners/players/box.rb +11 -0
- data/productions/examples/sandbox/rounded_corners/props.rb +22 -0
- data/productions/examples/sandbox/rounded_corners/styles.rb +17 -0
- data/productions/examples/sandbox/scrolling/players/add_button.rb +19 -0
- data/productions/examples/sandbox/scrolling/players/cell.rb +15 -0
- data/productions/examples/sandbox/scrolling/props.rb +45 -0
- data/productions/examples/sandbox/scrolling/styles.rb +33 -0
- data/productions/examples/sandbox/sketching/players/sketchpad.rb +46 -0
- data/productions/examples/sandbox/sketching/props.rb +25 -0
- data/productions/examples/sandbox/sketching/styles.rb +35 -0
- data/productions/examples/sandbox/sounds/bird.au +0 -0
- data/productions/examples/sandbox/sounds/cat.au +0 -0
- data/productions/examples/sandbox/sounds/cow.au +0 -0
- data/productions/examples/sandbox/sounds/dog.au +0 -0
- data/productions/examples/sandbox/sounds/donkey.au +0 -0
- data/productions/examples/sandbox/sounds/duck.au +0 -0
- data/productions/examples/sandbox/sounds/players/clip.rb +10 -0
- data/productions/examples/sandbox/sounds/props.rb +10 -0
- data/productions/examples/sandbox/sounds/styles.rb +17 -0
- data/productions/examples/sandbox/spec/alerts/alerts_spec.rb +16 -0
- data/productions/examples/sandbox/stage_handles/players/sizer.rb +35 -0
- data/productions/examples/sandbox/stage_handles/props.rb +17 -0
- data/productions/examples/sandbox/stage_handles/styles.rb +58 -0
- data/productions/examples/sandbox/stages.rb +8 -0
- data/productions/examples/sandbox/styles.rb +35 -0
- data/productions/examples/sandbox/teaser/players/fader.rb +58 -0
- data/productions/examples/sandbox/teaser/props.rb +14 -0
- data/productions/examples/sandbox/teaser/styles.rb +21 -0
- data/productions/examples/tutorials/tutorial_1/players/sample.rb +11 -0
- data/productions/examples/tutorials/tutorial_1/props.rb +9 -0
- data/productions/examples/tutorials/tutorial_1/styles.rb +25 -0
- data/productions/playbills.lll +1 -0
- data/productions/stage_composer/init.rb +10 -0
- data/productions/stage_composer/inspector/players/inspector.rb +80 -0
- data/productions/stage_composer/inspector/players/prop_row.rb +12 -0
- data/productions/stage_composer/inspector/players/prop_tree.rb +33 -0
- data/productions/stage_composer/inspector/players/style_table.rb +12 -0
- data/productions/stage_composer/inspector/players/style_value.rb +16 -0
- data/productions/stage_composer/inspector/props.rb +19 -0
- data/productions/stage_composer/inspector/styles.rb +71 -0
- data/productions/stage_composer/lib/init.rb +5 -0
- data/productions/stage_composer/lib/limelight/composer/controller.rb +51 -0
- data/productions/stage_composer/lib/limelight/composer/lethargy.rb +24 -0
- data/productions/stage_composer/production.rb +6 -0
- data/productions/stage_composer/stages.rb +15 -0
- data/productions/startup/images/logo.png +0 -0
- data/productions/startup/images/splash.png +0 -0
- data/productions/startup/production.rb +52 -0
- data/productions/startup/spec/default_scene/default_scene_spec.rb +16 -0
- data/productions/startup/spec/spec_helper.rb +8 -0
- data/productions/startup/stages.rb +9 -0
- data/productions/startup/styles.rb +15 -0
- data/productions/startup/welcome/players/browse_button.rb +10 -0
- data/productions/startup/welcome/players/download_button.rb +17 -0
- data/productions/startup/welcome/players/sandbox_button.rb +11 -0
- data/productions/startup/welcome/props.rb +23 -0
- data/productions/startup/welcome/styles.rb +103 -0
- data/spec/limelight/builtin/players/button_spec.rb +20 -0
- data/spec/limelight/builtin/players/check_box_spec.rb +29 -0
- data/spec/limelight/builtin/players/combo_box_spec.rb +29 -0
- data/spec/limelight/builtin/players/image_spec.rb +43 -0
- data/spec/limelight/builtin/players/password_box_spec.rb +27 -0
- data/spec/limelight/builtin/players/radio_button_spec.rb +64 -0
- data/spec/limelight/builtin/players/stage_mover_spec.rb +36 -0
- data/spec/limelight/builtin/players/stage_sizer_spec.rb +40 -0
- data/spec/limelight/builtin/players/text_area_spec.rb +27 -0
- data/spec/limelight/builtin/players/text_box_spec.rb +27 -0
- data/spec/limelight/builtin/utilities_production/spec_helper.rb +7 -0
- data/spec/limelight/builtin/utilities_production/utilities_production_spec.rb +146 -0
- data/spec/limelight/casting_director_spec.rb +164 -0
- data/spec/limelight/client/playbills_spec.rb +79 -0
- data/spec/limelight/commands/command_spec.rb +26 -0
- data/spec/limelight/commands/create_command_spec.rb +108 -0
- data/spec/limelight/commands/freeze_command_spec.rb +143 -0
- data/spec/limelight/commands/help_command_spec.rb +42 -0
- data/spec/limelight/commands/open_command_spec.rb +52 -0
- data/spec/limelight/commands/pack_command_spec.rb +26 -0
- data/spec/limelight/commands/unpack_command_spec.rb +47 -0
- data/spec/limelight/data_spec.rb +36 -0
- data/spec/limelight/dsl/prop_builder_spec.rb +245 -0
- data/spec/limelight/dsl/stage_builder_spec.rb +90 -0
- data/spec/limelight/dsl/styles_builder_spec.rb +194 -0
- data/spec/limelight/file_chooser_spec.rb +64 -0
- data/spec/limelight/file_filter_spec.rb +29 -0
- data/spec/limelight/file_loader_spec.rb +28 -0
- data/spec/limelight/gems_spec.rb +92 -0
- data/spec/limelight/java_util_spec.rb +37 -0
- data/spec/limelight/main_spec.rb +40 -0
- data/spec/limelight/paint_action_spec.rb +30 -0
- data/spec/limelight/pen_spec.rb +62 -0
- data/spec/limelight/producer_spec.rb +210 -0
- data/spec/limelight/production_spec.rb +100 -0
- data/spec/limelight/prop_spec.rb +431 -0
- data/spec/limelight/scene_spec.rb +173 -0
- data/spec/limelight/stage_spec.rb +202 -0
- data/spec/limelight/string_spec.rb +38 -0
- data/spec/limelight/studio_spec.rb +157 -0
- data/spec/limelight/styles_spec.rb +53 -0
- data/spec/limelight/templates/production_templater_spec.rb +66 -0
- data/spec/limelight/templates/scene_templater_spec.rb +51 -0
- data/spec/limelight/templates/templater_logger_spec.rb +41 -0
- data/spec/limelight/templates/templater_spec.rb +107 -0
- data/spec/limelight/theater_spec.rb +72 -0
- data/spec/limelight/util/downloader_spec.rb +92 -0
- data/spec/spec_helper.rb +70 -0
- metadata +335 -0
@@ -0,0 +1,65 @@
|
|
1
|
+
#- Copyright � 2008-2009 8th Light, Inc. All Rights Reserved.
|
2
|
+
#- Limelight and all included source files are distributed under terms of the GNU LGPL.
|
3
|
+
|
4
|
+
module Limelight
|
5
|
+
|
6
|
+
# Utility methods for Limelight
|
7
|
+
#
|
8
|
+
module Util
|
9
|
+
|
10
|
+
# Returns true if the specified file is a directory and has the structure of a Scene.
|
11
|
+
#
|
12
|
+
def self.is_limelight_scene?(dir)
|
13
|
+
return directory_contains_file(dir, "props.rb")
|
14
|
+
end
|
15
|
+
|
16
|
+
# Returns true if the specified file is a directory and has the structure of a Production.
|
17
|
+
def self.is_limelight_production?(dir)
|
18
|
+
return directory_contains_file(dir, "stages.rb")
|
19
|
+
end
|
20
|
+
|
21
|
+
# Returns true of the file is a directory containing an entry named file_name.
|
22
|
+
#
|
23
|
+
def self.directory_contains_file(file, file_name)
|
24
|
+
if file.is_a? String
|
25
|
+
return File.directory?(file) && File.exists?(File.join(file, file_name))
|
26
|
+
else
|
27
|
+
return file.isDirectory() && File.exists?(File.join(file.absolute_path, file_name))
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
# Removed all methods from a class except instance_eval and methods starting with __.
|
32
|
+
# This is used by the DSL Builder classes to minimize reserved keywords.
|
33
|
+
#
|
34
|
+
def self.lobotomize(klass)
|
35
|
+
klass.methods.each do |method_name|
|
36
|
+
unless method_name[0..1] == "__" || method_name == "instance_eval"
|
37
|
+
begin
|
38
|
+
klass.instance_eval "undef_method :#{method_name}"
|
39
|
+
rescue Exception => e
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
class Module
|
50
|
+
|
51
|
+
def prop_reader(*symbols)
|
52
|
+
symbols.each do |sym|
|
53
|
+
define_method(sym) do
|
54
|
+
return scene.find(sym.to_s)
|
55
|
+
# value = instance_variable_get("@#{sym}")
|
56
|
+
# if value.nil?
|
57
|
+
# value = scene.find(sym.to_s)
|
58
|
+
# instance_variable_set("@#{sym}", value) unless value.nil?
|
59
|
+
# end
|
60
|
+
# return value
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
@@ -0,0 +1,115 @@
|
|
1
|
+
#- Copyright � 2008-2009 8th Light, Inc. All Rights Reserved.
|
2
|
+
#- Limelight and all included source files are distributed under terms of the GNU LGPL.
|
3
|
+
|
4
|
+
require 'limelight/data'
|
5
|
+
require 'limelight/limelight_exception'
|
6
|
+
require 'uri'
|
7
|
+
require 'ftools'
|
8
|
+
require 'net/http'
|
9
|
+
require 'net/https'
|
10
|
+
|
11
|
+
module Limelight
|
12
|
+
module Util
|
13
|
+
|
14
|
+
class Downloader
|
15
|
+
|
16
|
+
def self.download(resource)
|
17
|
+
new.download(resource)
|
18
|
+
end
|
19
|
+
|
20
|
+
def initialize
|
21
|
+
Data.establish_data_dirs
|
22
|
+
end
|
23
|
+
|
24
|
+
def download(resource)
|
25
|
+
uri = URI.parse(resource)
|
26
|
+
case uri.scheme
|
27
|
+
when nil, "file"
|
28
|
+
download_file(uri)
|
29
|
+
when 'http', 'https'
|
30
|
+
download_http(uri)
|
31
|
+
else
|
32
|
+
raise LimelightException.new("Download failed. Unhandled URI scheme: #{uri.scheme}")
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def download_file(uri)
|
37
|
+
raise LimelightException.new("Download failed. Not found: #{uri.path}") if !File.exists?(uri.path)
|
38
|
+
filename = File.basename(uri.path)
|
39
|
+
destination = find_unused_downloads_filename(filename)
|
40
|
+
File.copy(uri.path, destination)
|
41
|
+
return destination
|
42
|
+
end
|
43
|
+
|
44
|
+
def download_http(uri)
|
45
|
+
saved_filename = nil
|
46
|
+
|
47
|
+
begin
|
48
|
+
saved_filename = attempt_http_download(uri)
|
49
|
+
rescue Exception => e
|
50
|
+
raise LimelightException.new(e)
|
51
|
+
end
|
52
|
+
|
53
|
+
return saved_filename
|
54
|
+
end
|
55
|
+
|
56
|
+
|
57
|
+
private #############################################
|
58
|
+
|
59
|
+
def find_unused_downloads_filename(filename)
|
60
|
+
default = File.join(Data.downloads_dir, filename)
|
61
|
+
extension = File.extname(default)
|
62
|
+
filename_without_extension = default[0...(-1 * extension.length)]
|
63
|
+
attempt = default
|
64
|
+
postfix = 2
|
65
|
+
while (File.exists?(attempt))
|
66
|
+
attempt = "#{filename_without_extension}_#{postfix}#{extension}"
|
67
|
+
postfix += 1
|
68
|
+
end
|
69
|
+
return attempt
|
70
|
+
end
|
71
|
+
|
72
|
+
def calculate_filename(uri, response)
|
73
|
+
content_disposition = response['content-disposition']
|
74
|
+
if content_disposition
|
75
|
+
match = /filename="(.*)"/.match(content_disposition)
|
76
|
+
return match[1] if match
|
77
|
+
end
|
78
|
+
return File.basename(uri.path)
|
79
|
+
end
|
80
|
+
|
81
|
+
def save_to_file(uri, response)
|
82
|
+
filename = calculate_filename(uri, response)
|
83
|
+
destination = find_unused_downloads_filename(filename)
|
84
|
+
file = File.open(destination, 'w')
|
85
|
+
|
86
|
+
begin
|
87
|
+
response.read_body do |segment|
|
88
|
+
file.write(segment)
|
89
|
+
end
|
90
|
+
ensure
|
91
|
+
file.close
|
92
|
+
end
|
93
|
+
|
94
|
+
return destination
|
95
|
+
end
|
96
|
+
|
97
|
+
def attempt_http_download(uri, attempts = 5)
|
98
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
99
|
+
http.use_ssl = true if uri.port.to_s == "443"
|
100
|
+
http.request_get(uri.path) do |response|
|
101
|
+
case response
|
102
|
+
when Net::HTTPSuccess
|
103
|
+
return save_to_file(uri, response)
|
104
|
+
when Net::HTTPRedirection
|
105
|
+
return attempt_http_download(URI.parse(response['location']), attempts - 1)
|
106
|
+
else
|
107
|
+
raise LimelightException.new("Download failed. #{response.code}: #{response.message}")
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
end
|
113
|
+
|
114
|
+
end
|
115
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
#- Copyright � 2008-2009 8th Light, Inc. All Rights Reserved.
|
2
|
+
#- Limelight and all included source files are distributed under terms of the GNU LGPL.
|
3
|
+
|
4
|
+
module Limelight
|
5
|
+
module VERSION #:nodoc:
|
6
|
+
unless defined? MAJOR
|
7
|
+
MAJOR = 0
|
8
|
+
MINOR = 5
|
9
|
+
TINY = 0
|
10
|
+
|
11
|
+
STRING = [MAJOR, MINOR, TINY].join('.')
|
12
|
+
TAG = "REL_" + [MAJOR, MINOR, TINY].join('_')
|
13
|
+
|
14
|
+
NAME = "Limelight"
|
15
|
+
URL = "http://limelight.8thlight.com"
|
16
|
+
|
17
|
+
DESCRIPTION = "#{NAME}-#{STRING} - Limelight\n#{URL}"
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
You may ask, "Where does the name '8th Light' come from?" To answer that, let's first discuss the foundational principles held by 8th Light.
|
2
|
+
|
3
|
+
<sub_title>Craftsmanship</sub_title>
|
4
|
+
The folks at 8th Light consider themselves as software craftsmen rather than software engineers or software scientists. Clearly, engineering skills and scientific understanding are required to write good software. It is the application of these skills in combination with a pragmatic attitude and a sense of quality that define craftsmanship.
|
5
|
+
|
6
|
+
As craftsmen, our style of software development differs from traditional styles of software development. For one, we maintain close collaboration with the customers or end users of the systems we build. We are continually refining and improving every bit of the code base as the system evolves. Every member of our team works together in an open and synergistic workspace. To ensure a well designed system with almost no defects we drive development though tests. Feedback during development is extremely valuable which is why we work in iterations delivering working functionality regularly.
|
7
|
+
|
8
|
+
Perhaps the most important aspect of our work is pride. We build software that we are proud to have built and that our clients are proud to have.
|
9
|
+
|
10
|
+
<sub_title>Apprenticeship</sub_title>
|
11
|
+
It has been known for decades that the best way to become a good software developer is to learn from a good software developer. This is in line with the craftsmanship model. In any craft, newcomers start out as apprentices. 8th Light hires only apprentices.
|
12
|
+
|
13
|
+
This serves two purposes. The first is that of maintaining quality. Starting out as an apprentice allows newcomers to focus on nothing but learning as much as possible by working with senior 8th Light developers. When an apprentice concludes his apprenticeship he is able to build quality software.
|
14
|
+
|
15
|
+
The second reason is uniformity and consistency. Studies have shown that good developers are consistent and uniform in their style of coding. Every good developer has a different style but each one is consistent with themself. Inconsistencies in a software system add complexity and decrease productivity. Therefore, 8th Light strives to build development teams that practice the same style of development. In this way our teams remain productive and our software remains simple.
|
16
|
+
|
17
|
+
<sub_title>8th Light</sub_title>
|
18
|
+
The values described above are not unlike those of martial arts. The name '8th Light' holds special meaning to Micah (the company's founder) who trained in the Eighth Light school of Jujitsu called Hakkoryu. 8th Light was chosen as a name for this company because we share much of the spirit and values of martial arts, particularly Hakkoryu Jujitsu.
|
19
|
+
|
20
|
+
"The name "Hakkoryu" is based on a philosophical Japanese view of the color spectrum as being divided into nine bands of light. The eighth shade is infrared, which is invisible to the naked eye but extremely powerful, as are Hakkoryu techniques. The number eight in Japan also has associated with it numerous philosophical and religious meanings that are beyond the scope of this brief introduction."
|
21
|
+
|
22
|
+
- hakkoryu.com
|
23
|
+
|
24
|
+
Coincidentally, the number eight also has special meaning in the world of software.
|
@@ -0,0 +1,11 @@
|
|
1
|
+
#- Copyright � 2008-2009 8th Light, Inc. All Rights Reserved.
|
2
|
+
#- Limelight and all included source files are distributed under terms of the GNU LGPL.
|
3
|
+
|
4
|
+
__ :name => "page"
|
5
|
+
main_column do
|
6
|
+
__install "menu.rb"
|
7
|
+
about_tagline :text => "By the work one knows the workmen.\nJean De La Fontaine"
|
8
|
+
section_title :text => "About Us"
|
9
|
+
section_body :text => __loader__.read("about/about.txt")
|
10
|
+
__install "footer.rb"
|
11
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
#- Copyright � 2008-2009 8th Light, Inc. All Rights Reserved.
|
2
|
+
#- Limelight and all included source files are distributed under terms of the GNU LGPL.
|
3
|
+
|
4
|
+
__ :name => "page"
|
5
|
+
main_column do
|
6
|
+
__install "menu.rb"
|
7
|
+
tag_line
|
8
|
+
spot_light do
|
9
|
+
spot_light_title :text => "In the spotlight"
|
10
|
+
book_news do
|
11
|
+
book_news_img
|
12
|
+
book_news_text :text => "Micah coathors Agile Principles, Patterns, and Practices in C# with Unclebob."
|
13
|
+
end
|
14
|
+
sm_news do
|
15
|
+
sm_news_img
|
16
|
+
sm_news_text :text => "Check out the Statemachine Ruby Gem and Rails plugin."
|
17
|
+
end
|
18
|
+
end
|
19
|
+
news do
|
20
|
+
news_title :text => "Recent News"
|
21
|
+
new_item :text => "07.07 8th Light welcomes Doug Bradbury to the team!"
|
22
|
+
new_item :text => "07.07 8th Light doing Agile Rails Fest at Agile Conference in August."
|
23
|
+
new_item :text => "02.07 Eric Smith Joins the 8th Light team!"
|
24
|
+
new_item :text => "01.07 Jim Suchy Joins the 8th Light team!"
|
25
|
+
new_item :text => "01.07 Micah Martin contributes article on FitNesse to the just released \"Windows Developer Power Tools\" book."
|
26
|
+
end
|
27
|
+
__install "footer.rb"
|
28
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,11 @@
|
|
1
|
+
#- Copyright � 2008-2009 8th Light, Inc. All Rights Reserved.
|
2
|
+
#- Limelight and all included source files are distributed under terms of the GNU LGPL.
|
3
|
+
|
4
|
+
header
|
5
|
+
menu do
|
6
|
+
link :on_mouse_clicked => "scene.load('home')", :text => "Home"
|
7
|
+
link :on_mouse_clicked => "scene.load('services')", :text => "Services"
|
8
|
+
link :on_mouse_clicked => "scene.load('about')", :text => "About"
|
9
|
+
link :text => "Blog"
|
10
|
+
link :text => "Contact"
|
11
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
#- Copyright � 2008-2009 8th Light, Inc. All Rights Reserved.
|
2
|
+
#- Limelight and all included source files are distributed under terms of the GNU LGPL.
|
3
|
+
|
4
|
+
__ :name => "page"
|
5
|
+
main_column do
|
6
|
+
__install "menu.rb"
|
7
|
+
services_tagline :text => "Pleasure in the job puts perfection in the work.\n\tAristotle"
|
8
|
+
section_title :text => "services"
|
9
|
+
section_body :text => __loader__.read("services/services.txt")
|
10
|
+
__install "footer.rb"
|
11
|
+
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
At 8th Light, we use a unique process of actuating ideas, accepting the best and most efficient practices, and synthesizing those practices into an effectual and coherent method. Communication, quality, and innovation drive the decisions in this process, and the end goal is to produce impressive software for clients according to their specifications.
|
2
|
+
|
3
|
+
<sub_title>Values</sub_title>
|
4
|
+
Communication is a priority. We believe that working closely with the customer is the only way to ensure that a product is created in sync with both the customer’s vision and their desired outcome. Daily interactions with the customer are preferred, as is working on site. We create with the understanding that each finished product is the result of its own specific evolution, and that the software being written should constantly be subject to modifications of concept and conclusion. Each iteration produces more business value, as with each brush stroke the image on a canvas is further disclosed. At 8th Light, we employ a creative process that highlights cooperation and consideration, and we appreciate that this practice is the difference between good software and great software.
|
5
|
+
|
6
|
+
The quality of code in an application indicates many things; high-quality code makes your product easier to extend and maintain, as changes to the code are embraced by the framework and design. Moving fast becomes easier, and the customer is able to stay ahead of their competitors as well as adapt to changes quickly and efficiently.
|
7
|
+
|
8
|
+
Commitment, creativity, and innovation form the bridge between discipline and art at 8th Light. A customer once expressed to our team, “we hired you as problem solvers,” and this focus on innovation—the idea that problems extend beyond the technical realm of computer programming—is what continues to drive our professional attitude. We believe that innovation in software happens when one dives into the business domain, imaginatively solving those problems first, and then figures out how to write code after what they have learned there. When software developers allow themselves to think in an open and inspired manner, that originality and complexity of thought enables them to meaningfully connect the dots between business and implementation.
|
@@ -0,0 +1,210 @@
|
|
1
|
+
#- Copyright � 2008-2009 8th Light, Inc. All Rights Reserved.
|
2
|
+
#- Limelight and all included source files are distributed under terms of the GNU LGPL.
|
3
|
+
|
4
|
+
page {
|
5
|
+
width "100%"
|
6
|
+
height "100%"
|
7
|
+
horizontal_alignment "center"
|
8
|
+
background_image "images/bg.jpg"
|
9
|
+
vertical_scrollbar :on
|
10
|
+
}
|
11
|
+
|
12
|
+
main_column {
|
13
|
+
border_width 0
|
14
|
+
background_image "images/canvas_bg.jpg"
|
15
|
+
width 823
|
16
|
+
height :auto
|
17
|
+
horizontal_alignment "center"
|
18
|
+
}
|
19
|
+
|
20
|
+
header {
|
21
|
+
height 200
|
22
|
+
background_image "images/header.jpg"
|
23
|
+
width 823
|
24
|
+
horizontal_alignment "center"
|
25
|
+
}
|
26
|
+
|
27
|
+
menu {
|
28
|
+
height 67
|
29
|
+
top_border_width 1
|
30
|
+
bottom_border_width 1
|
31
|
+
border_color "#333333"
|
32
|
+
width 823
|
33
|
+
horizontal_alignment :right
|
34
|
+
right_margin 25
|
35
|
+
left_margin 25
|
36
|
+
bottom_margin 15
|
37
|
+
}
|
38
|
+
|
39
|
+
link {
|
40
|
+
width 80
|
41
|
+
height 50
|
42
|
+
text_color "#0049F4"
|
43
|
+
font_face "Arial"
|
44
|
+
font_size 13
|
45
|
+
alignment :center
|
46
|
+
hover {
|
47
|
+
text_color "#ffffff"
|
48
|
+
background_image "images/button_bg.jpg"
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
tag_line {
|
53
|
+
width 823
|
54
|
+
height 70
|
55
|
+
background_image "images/anvil.jpg"
|
56
|
+
right_margin 25
|
57
|
+
left_margin 25
|
58
|
+
horizontal_alignment :left
|
59
|
+
font_style "italic"
|
60
|
+
text_color "white"
|
61
|
+
font_size 18
|
62
|
+
top_padding 10
|
63
|
+
left_padding 10
|
64
|
+
right_padding 375
|
65
|
+
}
|
66
|
+
|
67
|
+
services_tagline {
|
68
|
+
extends :tag_line
|
69
|
+
background_image "images/botticelli.jpg"
|
70
|
+
horizontal_alignment "right"
|
71
|
+
}
|
72
|
+
|
73
|
+
about_tagline {
|
74
|
+
extends :tag_line
|
75
|
+
background_image "images/moses.jpg"
|
76
|
+
horizontal_alignment "right"
|
77
|
+
}
|
78
|
+
|
79
|
+
section_title {
|
80
|
+
width 823
|
81
|
+
height 50
|
82
|
+
top_margin 20
|
83
|
+
left_margin 50
|
84
|
+
right_margin 50
|
85
|
+
bottom_border_width 1
|
86
|
+
border_color "#0049F4"
|
87
|
+
text_color "white"
|
88
|
+
font_size 20
|
89
|
+
font_style "bold"
|
90
|
+
}
|
91
|
+
|
92
|
+
sub_title {
|
93
|
+
text_color "#0049F4"
|
94
|
+
font_size 32
|
95
|
+
font_face "Courier"
|
96
|
+
}
|
97
|
+
|
98
|
+
section_body {
|
99
|
+
width 823
|
100
|
+
height :auto
|
101
|
+
left_margin 50
|
102
|
+
right_margin 50
|
103
|
+
text_color "white"
|
104
|
+
font_size 14
|
105
|
+
}
|
106
|
+
|
107
|
+
spot_light {
|
108
|
+
width 412
|
109
|
+
height 300
|
110
|
+
top_margin 20
|
111
|
+
left_margin 50
|
112
|
+
right_margin 50
|
113
|
+
}
|
114
|
+
|
115
|
+
spot_light_title {
|
116
|
+
width 312
|
117
|
+
height 45
|
118
|
+
bottom_border_width 1
|
119
|
+
border_color "#0049F4"
|
120
|
+
font_size 20
|
121
|
+
text_color "white"
|
122
|
+
}
|
123
|
+
|
124
|
+
book_news {
|
125
|
+
height 75
|
126
|
+
width "100%"
|
127
|
+
bottom_border_width 1
|
128
|
+
border_color "#333333"
|
129
|
+
top_margin 10
|
130
|
+
}
|
131
|
+
|
132
|
+
book_news_img {
|
133
|
+
background_image "images/thumbnail_book.jpg"
|
134
|
+
width 59
|
135
|
+
height 58
|
136
|
+
}
|
137
|
+
|
138
|
+
book_news_text {
|
139
|
+
width 253
|
140
|
+
height 58
|
141
|
+
left_margin 10
|
142
|
+
font_size 15
|
143
|
+
font_face "Helvetica"
|
144
|
+
text_color "#919191"
|
145
|
+
}
|
146
|
+
|
147
|
+
sm_news {
|
148
|
+
height 75
|
149
|
+
width "100%"
|
150
|
+
bottom_border_width 1
|
151
|
+
border_color "#333333"
|
152
|
+
top_margin 10
|
153
|
+
}
|
154
|
+
|
155
|
+
sm_news_img {
|
156
|
+
background_image "images/statemachine_thumbnail.png"
|
157
|
+
width 59
|
158
|
+
height 58
|
159
|
+
}
|
160
|
+
|
161
|
+
sm_news_text {
|
162
|
+
extends :book_news_text
|
163
|
+
}
|
164
|
+
|
165
|
+
news {
|
166
|
+
width 411
|
167
|
+
height 320
|
168
|
+
top_margin 20
|
169
|
+
left_margin 30
|
170
|
+
right_margin 50
|
171
|
+
}
|
172
|
+
|
173
|
+
news_title {
|
174
|
+
width 311
|
175
|
+
height 45
|
176
|
+
bottom_border_width 1
|
177
|
+
border_color "#0049F4"
|
178
|
+
font_size 20
|
179
|
+
text_color "white"
|
180
|
+
}
|
181
|
+
|
182
|
+
new_item {
|
183
|
+
text_color "#919191"
|
184
|
+
font_size 12
|
185
|
+
font_face "Helvetica"
|
186
|
+
height 50
|
187
|
+
width "100%"
|
188
|
+
bottom_border_width 1
|
189
|
+
border_color "#333333"
|
190
|
+
top_margin 10
|
191
|
+
background_color "black"
|
192
|
+
hover {
|
193
|
+
text_color "white"
|
194
|
+
background_color "black"
|
195
|
+
}
|
196
|
+
}
|
197
|
+
|
198
|
+
footer {
|
199
|
+
background_image "images/footer_bg.jpg"
|
200
|
+
height 80
|
201
|
+
width 823
|
202
|
+
}
|
203
|
+
|
204
|
+
copyright {
|
205
|
+
top_margin 40
|
206
|
+
alignment :center
|
207
|
+
text_color "#666"
|
208
|
+
width 823
|
209
|
+
height 80
|
210
|
+
}
|