uki 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +7 -0
- data/.gitmodules +3 -0
- data/LICENSE +20 -0
- data/Rakefile +23 -0
- data/Readme.rdoc +9 -0
- data/VERSION +1 -0
- data/bin/uki +102 -0
- data/frameworks/jspec/lib/images/bg.png +0 -0
- data/frameworks/jspec/lib/images/hr.png +0 -0
- data/frameworks/jspec/lib/images/loading.gif +0 -0
- data/frameworks/jspec/lib/images/sprites.bg.png +0 -0
- data/frameworks/jspec/lib/images/sprites.png +0 -0
- data/frameworks/jspec/lib/images/vr.png +0 -0
- data/frameworks/jspec/lib/jspec.css +149 -0
- data/frameworks/jspec/lib/jspec.growl.js +115 -0
- data/frameworks/jspec/lib/jspec.jquery.js +72 -0
- data/frameworks/jspec/lib/jspec.js +1756 -0
- data/frameworks/jspec/lib/jspec.shell.js +39 -0
- data/frameworks/jspec/lib/jspec.timers.js +90 -0
- data/frameworks/jspec/lib/jspec.xhr.js +195 -0
- data/frameworks/uki/README.rdoc +179 -0
- data/frameworks/uki/compiler.jar +0 -0
- data/frameworks/uki/run.rb +2 -0
- data/frameworks/uki/spec/commands/example_command.rb +19 -0
- data/frameworks/uki/spec/dom.html +39 -0
- data/frameworks/uki/spec/support/images/bg.png +0 -0
- data/frameworks/uki/spec/support/images/hr.png +0 -0
- data/frameworks/uki/spec/support/images/loading.gif +0 -0
- data/frameworks/uki/spec/support/images/sprites.bg.png +0 -0
- data/frameworks/uki/spec/support/images/sprites.png +0 -0
- data/frameworks/uki/spec/support/images/vr.png +0 -0
- data/frameworks/uki/spec/support/jspec.css +149 -0
- data/frameworks/uki/spec/support/jspec.js +1773 -0
- data/frameworks/uki/spec/support/jspec.xhr.js +193 -0
- data/frameworks/uki/spec/support/spec.helper.js +1 -0
- data/frameworks/uki/spec/unit/background.spec.js +29 -0
- data/frameworks/uki/spec/unit/builder.spec.js +51 -0
- data/frameworks/uki/spec/unit/data/model.spec.js +29 -0
- data/frameworks/uki/spec/unit/dom/dnd.spec.js +71 -0
- data/frameworks/uki/spec/unit/dom/event.spec.js +78 -0
- data/frameworks/uki/spec/unit/dom.spec.js +28 -0
- data/frameworks/uki/spec/unit/geometry.spec.js +79 -0
- data/frameworks/uki/spec/unit/selector.spec.js +140 -0
- data/frameworks/uki/spec/unit/theme/template.spec.js +31 -0
- data/frameworks/uki/spec/unit/utils.spec.js +176 -0
- data/frameworks/uki/spec/unit/view/base.spec.js +86 -0
- data/frameworks/uki/spec/unit/view/container.spec.js +73 -0
- data/frameworks/uki/spec/unit/view.spec.js +13 -0
- data/frameworks/uki/src/airport.js +1 -0
- data/frameworks/uki/src/uki-core/attachment.js +175 -0
- data/frameworks/uki/src/uki-core/background/css.js +37 -0
- data/frameworks/uki/src/uki-core/background/cssBox.js +73 -0
- data/frameworks/uki/src/uki-core/background/multi.js +20 -0
- data/frameworks/uki/src/uki-core/background/null.js +10 -0
- data/frameworks/uki/src/uki-core/background/rows.js +77 -0
- data/frameworks/uki/src/uki-core/background/sliced9.js +206 -0
- data/frameworks/uki/src/uki-core/background.js +35 -0
- data/frameworks/uki/src/uki-core/builder.js +68 -0
- data/frameworks/uki/src/uki-core/collection.js +278 -0
- data/frameworks/uki/src/uki-core/const.js +17 -0
- data/frameworks/uki/src/uki-core/dom/dnd.js +93 -0
- data/frameworks/uki/src/uki-core/dom/event.js +194 -0
- data/frameworks/uki/src/uki-core/dom/nativeLayout.js +18 -0
- data/frameworks/uki/src/uki-core/dom/offset.js +130 -0
- data/frameworks/uki/src/uki-core/dom/w3cdnd.js +333 -0
- data/frameworks/uki/src/uki-core/dom.js +109 -0
- data/frameworks/uki/src/uki-core/geometry.js +658 -0
- data/frameworks/uki/src/uki-core/image.js +90 -0
- data/frameworks/uki/src/uki-core/selector.js +201 -0
- data/frameworks/uki/src/uki-core/theme/base.js +39 -0
- data/frameworks/uki/src/uki-core/theme/template.js +26 -0
- data/frameworks/uki/src/uki-core/theme.js +45 -0
- data/frameworks/uki/src/uki-core/uki.js +45 -0
- data/frameworks/uki/src/uki-core/utils.js +399 -0
- data/frameworks/uki/src/uki-core/view/base.js +480 -0
- data/frameworks/uki/src/uki-core/view/container.js +155 -0
- data/frameworks/uki/src/uki-core/view/focusable.js +93 -0
- data/frameworks/uki/src/uki-core/view/observable.js +66 -0
- data/frameworks/uki/src/uki-core/view/styleable.js +70 -0
- data/frameworks/uki/src/uki-core/view/utils.js +66 -0
- data/frameworks/uki/src/uki-core/view.js +21 -0
- data/frameworks/uki/src/uki-core.js +36 -0
- data/frameworks/uki/src/uki-data/data.js +1 -0
- data/frameworks/uki/src/uki-data/model.js +28 -0
- data/frameworks/uki/src/uki-data/observable.js +34 -0
- data/frameworks/uki/src/uki-data.js +1 -0
- data/frameworks/uki/src/uki-more/more/utils.js +20 -0
- data/frameworks/uki/src/uki-more/more/view/listContainer.js +4 -0
- data/frameworks/uki/src/uki-more/more/view/multiselectList.js +196 -0
- data/frameworks/uki/src/uki-more/more/view/radioButton.js +27 -0
- data/frameworks/uki/src/uki-more/more/view/splitTable.js +79 -0
- data/frameworks/uki/src/uki-more/more/view/toggleButton.js +24 -0
- data/frameworks/uki/src/uki-more/more/view/treeList/render.js +53 -0
- data/frameworks/uki/src/uki-more/more/view/treeList.js +110 -0
- data/frameworks/uki/src/uki-more/more/view.js +2 -0
- data/frameworks/uki/src/uki-more/more.js +1 -0
- data/frameworks/uki/src/uki-more.js +4 -0
- data/frameworks/uki/src/uki-theamless.js +15 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/down-c.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/down-c.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/down-h.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/down-h.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/down-m.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/down-v.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/focusRing-c.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/focusRing-h.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/focusRing-m.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/focusRing-v.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/focusRing.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/hover-c.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/hover-c.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/hover-h.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/hover-h.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/hover-m.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/hover-v.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/hover.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/normal-c.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/normal-c.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/normal-h.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/normal-h.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/normal-m.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/normal-v.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/button/normal.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/checkbox/checkbox.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/checkbox/focus.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/checkbox/normal.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/checkbox/normal.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/panel/dark-h.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/panel/dark-h.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/panel/dark-m.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/panel/dark.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/popup/normal.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/radio/focus.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/radio/normal.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/radio/normal.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/radio/radio.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/shadow/large-c.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/shadow/large-h.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/shadow/large-m.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/shadow/large-v.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/shadow/large.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/slider/bar-m.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/slider/bar-m.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/slider/bar-v.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/slider/bar-v.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/slider/bar.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/slider/focus.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/slider/handle.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/splitPane/horizontal.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/splitPane/horizontal.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/splitPane/vertical.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/x.gif +0 -0
- data/frameworks/uki/src/uki-theme/airport.js +322 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/down-c.gif +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/down-c.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/down-h.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/down-m.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/down-v.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/down.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/focusRing-c.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/focusRing-h.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/focusRing-m.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/focusRing-v.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/focusRing.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/normal-c.gif +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/normal-c.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/normal-h.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/normal-m.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/normal-v.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/button/normal.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/checkbox/focus.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/checkbox/normal.gif +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/checkbox/normal.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/panel/normal-h.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/panel/normal-m.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/panel/normal.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/popup/normal.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/radio/focus.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/radio/normal.gif +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/radio/normal.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/shadow/large-c.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/shadow/large-h.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/shadow/large-m.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/shadow/large-v.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/shadow/large.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/slider/bar-m.gif +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/slider/bar-m.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/slider/bar-v.gif +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/slider/bar-v.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/slider/bar.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/slider/handle.gif +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/slider/handle.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/splitPane/horizontal.gif +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/splitPane/horizontal.png +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/splitPane/vertical.gif +0 -0
- data/frameworks/uki/src/uki-theme/aristo/i/x.gif +0 -0
- data/frameworks/uki/src/uki-theme/aristo.js +217 -0
- data/frameworks/uki/src/uki-view/view/box.js +1 -0
- data/frameworks/uki/src/uki-view/view/button.js +126 -0
- data/frameworks/uki/src/uki-view/view/checkbox.js +36 -0
- data/frameworks/uki/src/uki-view/view/flow.js +48 -0
- data/frameworks/uki/src/uki-view/view/image.js +9 -0
- data/frameworks/uki/src/uki-view/view/label.js +123 -0
- data/frameworks/uki/src/uki-view/view/list/render.js +23 -0
- data/frameworks/uki/src/uki-view/view/list.js +442 -0
- data/frameworks/uki/src/uki-view/view/popup.js +113 -0
- data/frameworks/uki/src/uki-view/view/radio.js +57 -0
- data/frameworks/uki/src/uki-view/view/scrollPane.js +139 -0
- data/frameworks/uki/src/uki-view/view/slider.js +154 -0
- data/frameworks/uki/src/uki-view/view/splitPane.js +213 -0
- data/frameworks/uki/src/uki-view/view/table/column.js +96 -0
- data/frameworks/uki/src/uki-view/view/table/header.js +53 -0
- data/frameworks/uki/src/uki-view/view/table/render.js +25 -0
- data/frameworks/uki/src/uki-view/view/table.js +71 -0
- data/frameworks/uki/src/uki-view/view/textField.js +145 -0
- data/frameworks/uki/src/uki-view/view/toolbar.js +93 -0
- data/frameworks/uki/src/uki-view.js +15 -0
- data/frameworks/uki/src/uki.js +2 -0
- data/frameworks/uki/thin.yaml +11 -0
- data/frameworks/uki/uki.rb +38 -0
- data/frameworks/uki/uki.ru +2 -0
- data/lib/uki/include_js.rb +50 -0
- data/lib/uki/project.rb +207 -0
- data/lib/uki/routes.rb +20 -0
- data/lib/uki/server.rb +42 -0
- data/lib/uki.rb +9 -0
- data/templates/index.html.erb +10 -0
- data/templates/model.js.erb +5 -0
- data/templates/myapp.js.erb +44 -0
- data/templates/package.js.erb +3 -0
- data/templates/spec.html.erb +23 -0
- data/templates/spec.js.erb +6 -0
- data/templates/view.js.erb +10 -0
- data/uki.gemspec +281 -0
- metadata +317 -0
metadata
ADDED
@@ -0,0 +1,317 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: uki
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Vladimir Kolesnikov
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-03-22 00:00:00 +03:00
|
13
|
+
default_executable: uki
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: sinatra
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: commander
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 4.0.1
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: jspec
|
37
|
+
type: :runtime
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 3.3.2
|
44
|
+
version:
|
45
|
+
description: Project creation, dev server, testing, building for uki apps
|
46
|
+
email: voloko@gmail.com
|
47
|
+
executables:
|
48
|
+
- uki
|
49
|
+
extensions: []
|
50
|
+
|
51
|
+
extra_rdoc_files:
|
52
|
+
- LICENSE
|
53
|
+
files:
|
54
|
+
- .gitignore
|
55
|
+
- .gitmodules
|
56
|
+
- LICENSE
|
57
|
+
- Rakefile
|
58
|
+
- Readme.rdoc
|
59
|
+
- VERSION
|
60
|
+
- bin/uki
|
61
|
+
- frameworks/jspec/lib/images/bg.png
|
62
|
+
- frameworks/jspec/lib/images/hr.png
|
63
|
+
- frameworks/jspec/lib/images/loading.gif
|
64
|
+
- frameworks/jspec/lib/images/sprites.bg.png
|
65
|
+
- frameworks/jspec/lib/images/sprites.png
|
66
|
+
- frameworks/jspec/lib/images/vr.png
|
67
|
+
- frameworks/jspec/lib/jspec.css
|
68
|
+
- frameworks/jspec/lib/jspec.growl.js
|
69
|
+
- frameworks/jspec/lib/jspec.jquery.js
|
70
|
+
- frameworks/jspec/lib/jspec.js
|
71
|
+
- frameworks/jspec/lib/jspec.shell.js
|
72
|
+
- frameworks/jspec/lib/jspec.timers.js
|
73
|
+
- frameworks/jspec/lib/jspec.xhr.js
|
74
|
+
- frameworks/uki/README.rdoc
|
75
|
+
- frameworks/uki/compiler.jar
|
76
|
+
- frameworks/uki/run.rb
|
77
|
+
- frameworks/uki/spec/commands/example_command.rb
|
78
|
+
- frameworks/uki/spec/dom.html
|
79
|
+
- frameworks/uki/spec/support/images/bg.png
|
80
|
+
- frameworks/uki/spec/support/images/hr.png
|
81
|
+
- frameworks/uki/spec/support/images/loading.gif
|
82
|
+
- frameworks/uki/spec/support/images/sprites.bg.png
|
83
|
+
- frameworks/uki/spec/support/images/sprites.png
|
84
|
+
- frameworks/uki/spec/support/images/vr.png
|
85
|
+
- frameworks/uki/spec/support/jspec.css
|
86
|
+
- frameworks/uki/spec/support/jspec.js
|
87
|
+
- frameworks/uki/spec/support/jspec.xhr.js
|
88
|
+
- frameworks/uki/spec/support/spec.helper.js
|
89
|
+
- frameworks/uki/spec/unit/background.spec.js
|
90
|
+
- frameworks/uki/spec/unit/builder.spec.js
|
91
|
+
- frameworks/uki/spec/unit/data/model.spec.js
|
92
|
+
- frameworks/uki/spec/unit/dom.spec.js
|
93
|
+
- frameworks/uki/spec/unit/dom/dnd.spec.js
|
94
|
+
- frameworks/uki/spec/unit/dom/event.spec.js
|
95
|
+
- frameworks/uki/spec/unit/geometry.spec.js
|
96
|
+
- frameworks/uki/spec/unit/selector.spec.js
|
97
|
+
- frameworks/uki/spec/unit/theme/template.spec.js
|
98
|
+
- frameworks/uki/spec/unit/utils.spec.js
|
99
|
+
- frameworks/uki/spec/unit/view.spec.js
|
100
|
+
- frameworks/uki/spec/unit/view/base.spec.js
|
101
|
+
- frameworks/uki/spec/unit/view/container.spec.js
|
102
|
+
- frameworks/uki/src/airport.js
|
103
|
+
- frameworks/uki/src/uki-core.js
|
104
|
+
- frameworks/uki/src/uki-core/attachment.js
|
105
|
+
- frameworks/uki/src/uki-core/background.js
|
106
|
+
- frameworks/uki/src/uki-core/background/css.js
|
107
|
+
- frameworks/uki/src/uki-core/background/cssBox.js
|
108
|
+
- frameworks/uki/src/uki-core/background/multi.js
|
109
|
+
- frameworks/uki/src/uki-core/background/null.js
|
110
|
+
- frameworks/uki/src/uki-core/background/rows.js
|
111
|
+
- frameworks/uki/src/uki-core/background/sliced9.js
|
112
|
+
- frameworks/uki/src/uki-core/builder.js
|
113
|
+
- frameworks/uki/src/uki-core/collection.js
|
114
|
+
- frameworks/uki/src/uki-core/const.js
|
115
|
+
- frameworks/uki/src/uki-core/dom.js
|
116
|
+
- frameworks/uki/src/uki-core/dom/dnd.js
|
117
|
+
- frameworks/uki/src/uki-core/dom/event.js
|
118
|
+
- frameworks/uki/src/uki-core/dom/nativeLayout.js
|
119
|
+
- frameworks/uki/src/uki-core/dom/offset.js
|
120
|
+
- frameworks/uki/src/uki-core/dom/w3cdnd.js
|
121
|
+
- frameworks/uki/src/uki-core/geometry.js
|
122
|
+
- frameworks/uki/src/uki-core/image.js
|
123
|
+
- frameworks/uki/src/uki-core/selector.js
|
124
|
+
- frameworks/uki/src/uki-core/theme.js
|
125
|
+
- frameworks/uki/src/uki-core/theme/base.js
|
126
|
+
- frameworks/uki/src/uki-core/theme/template.js
|
127
|
+
- frameworks/uki/src/uki-core/uki.js
|
128
|
+
- frameworks/uki/src/uki-core/utils.js
|
129
|
+
- frameworks/uki/src/uki-core/view.js
|
130
|
+
- frameworks/uki/src/uki-core/view/base.js
|
131
|
+
- frameworks/uki/src/uki-core/view/container.js
|
132
|
+
- frameworks/uki/src/uki-core/view/focusable.js
|
133
|
+
- frameworks/uki/src/uki-core/view/observable.js
|
134
|
+
- frameworks/uki/src/uki-core/view/styleable.js
|
135
|
+
- frameworks/uki/src/uki-core/view/utils.js
|
136
|
+
- frameworks/uki/src/uki-data.js
|
137
|
+
- frameworks/uki/src/uki-data/data.js
|
138
|
+
- frameworks/uki/src/uki-data/model.js
|
139
|
+
- frameworks/uki/src/uki-data/observable.js
|
140
|
+
- frameworks/uki/src/uki-more.js
|
141
|
+
- frameworks/uki/src/uki-more/more.js
|
142
|
+
- frameworks/uki/src/uki-more/more/utils.js
|
143
|
+
- frameworks/uki/src/uki-more/more/view.js
|
144
|
+
- frameworks/uki/src/uki-more/more/view/listContainer.js
|
145
|
+
- frameworks/uki/src/uki-more/more/view/multiselectList.js
|
146
|
+
- frameworks/uki/src/uki-more/more/view/radioButton.js
|
147
|
+
- frameworks/uki/src/uki-more/more/view/splitTable.js
|
148
|
+
- frameworks/uki/src/uki-more/more/view/toggleButton.js
|
149
|
+
- frameworks/uki/src/uki-more/more/view/treeList.js
|
150
|
+
- frameworks/uki/src/uki-more/more/view/treeList/render.js
|
151
|
+
- frameworks/uki/src/uki-theamless.js
|
152
|
+
- frameworks/uki/src/uki-theme/airport.js
|
153
|
+
- frameworks/uki/src/uki-theme/airport/i/button/down-c.gif
|
154
|
+
- frameworks/uki/src/uki-theme/airport/i/button/down-c.png
|
155
|
+
- frameworks/uki/src/uki-theme/airport/i/button/down-h.gif
|
156
|
+
- frameworks/uki/src/uki-theme/airport/i/button/down-h.png
|
157
|
+
- frameworks/uki/src/uki-theme/airport/i/button/down-m.png
|
158
|
+
- frameworks/uki/src/uki-theme/airport/i/button/down-v.png
|
159
|
+
- frameworks/uki/src/uki-theme/airport/i/button/focusRing-c.png
|
160
|
+
- frameworks/uki/src/uki-theme/airport/i/button/focusRing-h.png
|
161
|
+
- frameworks/uki/src/uki-theme/airport/i/button/focusRing-m.png
|
162
|
+
- frameworks/uki/src/uki-theme/airport/i/button/focusRing-v.png
|
163
|
+
- frameworks/uki/src/uki-theme/airport/i/button/focusRing.png
|
164
|
+
- frameworks/uki/src/uki-theme/airport/i/button/hover-c.gif
|
165
|
+
- frameworks/uki/src/uki-theme/airport/i/button/hover-c.png
|
166
|
+
- frameworks/uki/src/uki-theme/airport/i/button/hover-h.gif
|
167
|
+
- frameworks/uki/src/uki-theme/airport/i/button/hover-h.png
|
168
|
+
- frameworks/uki/src/uki-theme/airport/i/button/hover-m.png
|
169
|
+
- frameworks/uki/src/uki-theme/airport/i/button/hover-v.png
|
170
|
+
- frameworks/uki/src/uki-theme/airport/i/button/hover.png
|
171
|
+
- frameworks/uki/src/uki-theme/airport/i/button/normal-c.gif
|
172
|
+
- frameworks/uki/src/uki-theme/airport/i/button/normal-c.png
|
173
|
+
- frameworks/uki/src/uki-theme/airport/i/button/normal-h.gif
|
174
|
+
- frameworks/uki/src/uki-theme/airport/i/button/normal-h.png
|
175
|
+
- frameworks/uki/src/uki-theme/airport/i/button/normal-m.png
|
176
|
+
- frameworks/uki/src/uki-theme/airport/i/button/normal-v.png
|
177
|
+
- frameworks/uki/src/uki-theme/airport/i/button/normal.png
|
178
|
+
- frameworks/uki/src/uki-theme/airport/i/checkbox/checkbox.png
|
179
|
+
- frameworks/uki/src/uki-theme/airport/i/checkbox/focus.png
|
180
|
+
- frameworks/uki/src/uki-theme/airport/i/checkbox/normal.gif
|
181
|
+
- frameworks/uki/src/uki-theme/airport/i/checkbox/normal.png
|
182
|
+
- frameworks/uki/src/uki-theme/airport/i/panel/dark-h.gif
|
183
|
+
- frameworks/uki/src/uki-theme/airport/i/panel/dark-h.png
|
184
|
+
- frameworks/uki/src/uki-theme/airport/i/panel/dark-m.png
|
185
|
+
- frameworks/uki/src/uki-theme/airport/i/panel/dark.png
|
186
|
+
- frameworks/uki/src/uki-theme/airport/i/popup/normal.png
|
187
|
+
- frameworks/uki/src/uki-theme/airport/i/radio/focus.png
|
188
|
+
- frameworks/uki/src/uki-theme/airport/i/radio/normal.gif
|
189
|
+
- frameworks/uki/src/uki-theme/airport/i/radio/normal.png
|
190
|
+
- frameworks/uki/src/uki-theme/airport/i/radio/radio.png
|
191
|
+
- frameworks/uki/src/uki-theme/airport/i/shadow/large-c.png
|
192
|
+
- frameworks/uki/src/uki-theme/airport/i/shadow/large-h.png
|
193
|
+
- frameworks/uki/src/uki-theme/airport/i/shadow/large-m.png
|
194
|
+
- frameworks/uki/src/uki-theme/airport/i/shadow/large-v.png
|
195
|
+
- frameworks/uki/src/uki-theme/airport/i/shadow/large.png
|
196
|
+
- frameworks/uki/src/uki-theme/airport/i/slider/bar-m.gif
|
197
|
+
- frameworks/uki/src/uki-theme/airport/i/slider/bar-m.png
|
198
|
+
- frameworks/uki/src/uki-theme/airport/i/slider/bar-v.gif
|
199
|
+
- frameworks/uki/src/uki-theme/airport/i/slider/bar-v.png
|
200
|
+
- frameworks/uki/src/uki-theme/airport/i/slider/bar.png
|
201
|
+
- frameworks/uki/src/uki-theme/airport/i/slider/focus.png
|
202
|
+
- frameworks/uki/src/uki-theme/airport/i/slider/handle.gif
|
203
|
+
- frameworks/uki/src/uki-theme/airport/i/splitPane/horizontal.gif
|
204
|
+
- frameworks/uki/src/uki-theme/airport/i/splitPane/horizontal.png
|
205
|
+
- frameworks/uki/src/uki-theme/airport/i/splitPane/vertical.gif
|
206
|
+
- frameworks/uki/src/uki-theme/airport/i/x.gif
|
207
|
+
- frameworks/uki/src/uki-theme/aristo.js
|
208
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/down-c.gif
|
209
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/down-c.png
|
210
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/down-h.png
|
211
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/down-m.png
|
212
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/down-v.png
|
213
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/down.png
|
214
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/focusRing-c.png
|
215
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/focusRing-h.png
|
216
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/focusRing-m.png
|
217
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/focusRing-v.png
|
218
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/focusRing.png
|
219
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/normal-c.gif
|
220
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/normal-c.png
|
221
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/normal-h.png
|
222
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/normal-m.png
|
223
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/normal-v.png
|
224
|
+
- frameworks/uki/src/uki-theme/aristo/i/button/normal.png
|
225
|
+
- frameworks/uki/src/uki-theme/aristo/i/checkbox/focus.png
|
226
|
+
- frameworks/uki/src/uki-theme/aristo/i/checkbox/normal.gif
|
227
|
+
- frameworks/uki/src/uki-theme/aristo/i/checkbox/normal.png
|
228
|
+
- frameworks/uki/src/uki-theme/aristo/i/panel/normal-h.png
|
229
|
+
- frameworks/uki/src/uki-theme/aristo/i/panel/normal-m.png
|
230
|
+
- frameworks/uki/src/uki-theme/aristo/i/panel/normal.png
|
231
|
+
- frameworks/uki/src/uki-theme/aristo/i/popup/normal.png
|
232
|
+
- frameworks/uki/src/uki-theme/aristo/i/radio/focus.png
|
233
|
+
- frameworks/uki/src/uki-theme/aristo/i/radio/normal.gif
|
234
|
+
- frameworks/uki/src/uki-theme/aristo/i/radio/normal.png
|
235
|
+
- frameworks/uki/src/uki-theme/aristo/i/shadow/large-c.png
|
236
|
+
- frameworks/uki/src/uki-theme/aristo/i/shadow/large-h.png
|
237
|
+
- frameworks/uki/src/uki-theme/aristo/i/shadow/large-m.png
|
238
|
+
- frameworks/uki/src/uki-theme/aristo/i/shadow/large-v.png
|
239
|
+
- frameworks/uki/src/uki-theme/aristo/i/shadow/large.png
|
240
|
+
- frameworks/uki/src/uki-theme/aristo/i/slider/bar-m.gif
|
241
|
+
- frameworks/uki/src/uki-theme/aristo/i/slider/bar-m.png
|
242
|
+
- frameworks/uki/src/uki-theme/aristo/i/slider/bar-v.gif
|
243
|
+
- frameworks/uki/src/uki-theme/aristo/i/slider/bar-v.png
|
244
|
+
- frameworks/uki/src/uki-theme/aristo/i/slider/bar.png
|
245
|
+
- frameworks/uki/src/uki-theme/aristo/i/slider/handle.gif
|
246
|
+
- frameworks/uki/src/uki-theme/aristo/i/slider/handle.png
|
247
|
+
- frameworks/uki/src/uki-theme/aristo/i/splitPane/horizontal.gif
|
248
|
+
- frameworks/uki/src/uki-theme/aristo/i/splitPane/horizontal.png
|
249
|
+
- frameworks/uki/src/uki-theme/aristo/i/splitPane/vertical.gif
|
250
|
+
- frameworks/uki/src/uki-theme/aristo/i/x.gif
|
251
|
+
- frameworks/uki/src/uki-view.js
|
252
|
+
- frameworks/uki/src/uki-view/view/box.js
|
253
|
+
- frameworks/uki/src/uki-view/view/button.js
|
254
|
+
- frameworks/uki/src/uki-view/view/checkbox.js
|
255
|
+
- frameworks/uki/src/uki-view/view/flow.js
|
256
|
+
- frameworks/uki/src/uki-view/view/image.js
|
257
|
+
- frameworks/uki/src/uki-view/view/label.js
|
258
|
+
- frameworks/uki/src/uki-view/view/list.js
|
259
|
+
- frameworks/uki/src/uki-view/view/list/render.js
|
260
|
+
- frameworks/uki/src/uki-view/view/popup.js
|
261
|
+
- frameworks/uki/src/uki-view/view/radio.js
|
262
|
+
- frameworks/uki/src/uki-view/view/scrollPane.js
|
263
|
+
- frameworks/uki/src/uki-view/view/slider.js
|
264
|
+
- frameworks/uki/src/uki-view/view/splitPane.js
|
265
|
+
- frameworks/uki/src/uki-view/view/table.js
|
266
|
+
- frameworks/uki/src/uki-view/view/table/column.js
|
267
|
+
- frameworks/uki/src/uki-view/view/table/header.js
|
268
|
+
- frameworks/uki/src/uki-view/view/table/render.js
|
269
|
+
- frameworks/uki/src/uki-view/view/textField.js
|
270
|
+
- frameworks/uki/src/uki-view/view/toolbar.js
|
271
|
+
- frameworks/uki/src/uki.js
|
272
|
+
- frameworks/uki/thin.yaml
|
273
|
+
- frameworks/uki/uki.rb
|
274
|
+
- frameworks/uki/uki.ru
|
275
|
+
- lib/uki.rb
|
276
|
+
- lib/uki/include_js.rb
|
277
|
+
- lib/uki/project.rb
|
278
|
+
- lib/uki/routes.rb
|
279
|
+
- lib/uki/server.rb
|
280
|
+
- templates/index.html.erb
|
281
|
+
- templates/model.js.erb
|
282
|
+
- templates/myapp.js.erb
|
283
|
+
- templates/package.js.erb
|
284
|
+
- templates/spec.html.erb
|
285
|
+
- templates/spec.js.erb
|
286
|
+
- templates/view.js.erb
|
287
|
+
- uki.gemspec
|
288
|
+
has_rdoc: true
|
289
|
+
homepage: http://github.com/voloko/uki
|
290
|
+
licenses: []
|
291
|
+
|
292
|
+
post_install_message:
|
293
|
+
rdoc_options:
|
294
|
+
- --charset=UTF-8
|
295
|
+
require_paths:
|
296
|
+
- lib
|
297
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
298
|
+
requirements:
|
299
|
+
- - ">="
|
300
|
+
- !ruby/object:Gem::Version
|
301
|
+
version: "0"
|
302
|
+
version:
|
303
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
304
|
+
requirements:
|
305
|
+
- - ">="
|
306
|
+
- !ruby/object:Gem::Version
|
307
|
+
version: "0"
|
308
|
+
version:
|
309
|
+
requirements: []
|
310
|
+
|
311
|
+
rubyforge_project:
|
312
|
+
rubygems_version: 1.3.5
|
313
|
+
signing_key:
|
314
|
+
specification_version: 3
|
315
|
+
summary: uki development tools
|
316
|
+
test_files: []
|
317
|
+
|