epall-limelight 0.5.0-java → 0.5.1-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/limelight.jar
CHANGED
Binary file
|
@@ -10,7 +10,8 @@ require 'limelight/builtin/players/text_box'
|
|
10
10
|
require 'limelight/builtin/players/combo_box_popup_list_item'
|
11
11
|
require 'limelight/builtin/players/combo_box_popup_list'
|
12
12
|
require 'limelight/builtin/players/curtains'
|
13
|
+
require 'limelight/builtin/players/html'
|
13
14
|
require 'limelight/builtin/players/image'
|
14
15
|
require "limelight/builtin/players/password_box"
|
15
16
|
require "limelight/builtin/players/stage_mover"
|
16
|
-
require "limelight/builtin/players/stage_sizer"
|
17
|
+
require "limelight/builtin/players/stage_sizer"
|
@@ -0,0 +1,30 @@
|
|
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 Builtin
|
6
|
+
module Players
|
7
|
+
|
8
|
+
module Html
|
9
|
+
|
10
|
+
class << self
|
11
|
+
|
12
|
+
def extended(prop) #:nodoc:
|
13
|
+
html_panel = Limelight::UI::Model::HTMLPanel.new
|
14
|
+
prop.panel.add(html_panel)
|
15
|
+
prop.html_panel = html_panel
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
attr_accessor :html_panel #:nodoc:
|
21
|
+
|
22
|
+
def html=(path)
|
23
|
+
html_panel.html = path
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -32,6 +32,7 @@ module Limelight #:nodoc:
|
|
32
32
|
Frame = Java::limelight.ui.model.StageFrame
|
33
33
|
Panel = Java::limelight.ui.model.PropPanel
|
34
34
|
ImagePanel = Java::limelight.ui.model.ImagePanel
|
35
|
+
HTMLPanel = Java::limelight.ui.model.HTMLPanel
|
35
36
|
|
36
37
|
module Inputs #:nodoc:
|
37
38
|
ButtonPanel = Java::limelight.ui.model.inputs.ButtonPanel
|
data/lib/limelight/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: epall-limelight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Eric Allen
|
@@ -9,7 +9,7 @@ autorequire: init
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-10-
|
12
|
+
date: 2009-10-22 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -30,6 +30,7 @@ files:
|
|
30
30
|
- lib/limelight/builtin/players/combo_box_popup_list.rb
|
31
31
|
- lib/limelight/builtin/players/combo_box_popup_list_item.rb
|
32
32
|
- lib/limelight/builtin/players/curtains.rb
|
33
|
+
- lib/limelight/builtin/players/html.rb
|
33
34
|
- lib/limelight/builtin/players/image.rb
|
34
35
|
- lib/limelight/builtin/players/password_box.rb
|
35
36
|
- lib/limelight/builtin/players/radio_button.rb
|
@@ -330,6 +331,6 @@ rubyforge_project: limelight
|
|
330
331
|
rubygems_version: 1.3.5
|
331
332
|
signing_key:
|
332
333
|
specification_version: 3
|
333
|
-
summary: Limelight-0.5.
|
334
|
+
summary: Limelight-0.5.1 - Limelight http://limelight.8thlight.com
|
334
335
|
test_files: []
|
335
336
|
|