uki 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/bin/uki +1 -1
- data/frameworks/uki/README.rdoc +1 -1
- data/frameworks/uki/examples/core-examples/controls/controls.js +6 -6
- data/frameworks/uki/examples/core-examples/flow/flow.js +4 -4
- data/frameworks/uki/examples/core-examples/linearGradient/gradient.svg +11 -0
- data/frameworks/uki/examples/core-examples/linearGradient/linearGradient.js +87 -0
- data/frameworks/uki/examples/core-examples/popup/popup.js +23 -10
- data/frameworks/uki/examples/core-examples/resizeToContents/resizeToContents.js +12 -1
- data/frameworks/uki/examples/core-examples/slider/slider.js +1 -1
- data/frameworks/uki/examples/core-examples/splitPaneExtended/splitPaneExtended.js +1 -1
- data/frameworks/uki/examples/core-examples/table/table.js +19 -2
- data/frameworks/uki/examples/core-examples/wave/wave-theme.js +1 -1
- data/frameworks/uki/examples/core-examples/wave/wave.js +1 -1
- data/frameworks/uki/examples/more-examples/radioButton/radioButton.js +3 -3
- data/frameworks/uki/examples/more-examples/select/select.js +35 -0
- data/frameworks/uki/examples/touch-examples/scrollPane/scrollPane.js +53 -0
- data/frameworks/uki/spec/unit/background.spec.js +1 -1
- data/frameworks/uki/spec/unit/selector.spec.js +28 -12
- data/frameworks/uki/spec/unit/utils.spec.js +14 -0
- data/frameworks/uki/src/uki-core.js +3 -1
- data/frameworks/uki/src/uki-core/after.js +57 -0
- data/frameworks/uki/src/uki-core/attachment.js +15 -6
- data/frameworks/uki/src/uki-core/background.js +4 -3
- data/frameworks/uki/src/uki-core/background/css.js +1 -0
- data/frameworks/uki/src/uki-core/background/cssBox.js +5 -3
- data/frameworks/uki/src/uki-core/background/linearGradient.js +112 -0
- data/frameworks/uki/src/uki-core/background/multi.js +2 -2
- data/frameworks/uki/src/uki-core/background/rows.js +1 -0
- data/frameworks/uki/src/uki-core/background/sliced9.js +5 -2
- data/frameworks/uki/src/uki-core/builder.js +5 -4
- data/frameworks/uki/src/uki-core/collection.js +18 -13
- data/frameworks/uki/src/uki-core/dom/browser.js +114 -0
- data/frameworks/uki/src/uki-core/dom/event.js +3 -0
- data/frameworks/uki/src/uki-core/image.js +1 -26
- data/frameworks/uki/src/uki-core/selector.js +5 -0
- data/frameworks/uki/src/uki-core/theme.js +24 -23
- data/frameworks/uki/src/uki-core/theme/template.js +1 -1
- data/frameworks/uki/src/uki-core/uki.js +7 -4
- data/frameworks/uki/src/uki-core/utils.js +51 -26
- data/frameworks/uki/src/uki-core/view.js +6 -3
- data/frameworks/uki/src/uki-core/view/base.js +16 -1
- data/frameworks/uki/src/uki-core/view/container.js +15 -5
- data/frameworks/uki/src/uki-core/view/focusable.js +17 -4
- data/frameworks/uki/src/uki-core/view/observable.js +15 -2
- data/frameworks/uki/src/uki-core/view/styleable.js +4 -11
- data/frameworks/uki/src/uki-data/ajax.js +4 -30
- data/frameworks/uki/src/uki-data/json.js +191 -0
- data/frameworks/uki/src/uki-data/localStore.js +37 -0
- data/frameworks/uki/src/uki-data/model.js +1 -1
- data/frameworks/uki/src/uki-more.js +4 -0
- data/frameworks/uki/src/uki-more/more/background.js +2 -0
- data/frameworks/uki/src/uki-more/more/color.js +168 -0
- data/frameworks/uki/src/uki-more/more/utils.js +5 -12
- data/frameworks/uki/src/uki-more/more/view.js +3 -1
- data/frameworks/uki/src/uki-more/more/view/form.js +30 -0
- data/frameworks/uki/src/uki-more/more/view/hTile.js +59 -0
- data/frameworks/uki/src/uki-more/more/view/nativeButton.js +3 -0
- data/frameworks/uki/src/uki-more/more/view/nativeCheckbox.js +38 -0
- data/frameworks/uki/src/uki-more/more/view/nativeControl.js +40 -0
- data/frameworks/uki/src/uki-more/more/view/nativeInput.js +78 -0
- data/frameworks/uki/src/uki-more/more/view/nativeSelect.js +29 -0
- data/frameworks/uki/src/uki-more/more/view/radioButton.js +1 -1
- data/frameworks/uki/src/uki-more/more/view/select-theme.js +55 -0
- data/frameworks/uki/src/uki-more/more/view/select.js +208 -0
- data/frameworks/uki/src/uki-theme/airport.js +145 -88
- data/frameworks/uki/src/uki-theme/airport/i/table/a-down.png +0 -0
- data/frameworks/uki/src/uki-theme/airport/i/table/a-up.png +0 -0
- data/frameworks/uki/src/uki-touch.js +2 -0
- data/frameworks/uki/src/uki-touch/touch.js +1 -0
- data/frameworks/uki/src/uki-touch/touch/const.js +24 -0
- data/frameworks/uki/src/uki-touch/touch/setup.js +52 -0
- data/frameworks/uki/src/uki-touch/touch/view.js +4 -0
- data/frameworks/uki/src/uki-touch/touch/view/scrollPane.js +505 -0
- data/frameworks/uki/src/uki-touch/touch/view/scrollableList.js +27 -0
- data/frameworks/uki/src/uki-view/view/box.js +9 -0
- data/frameworks/uki/src/uki-view/view/button.js +36 -1
- data/frameworks/uki/src/uki-view/view/checkbox.js +32 -3
- data/frameworks/uki/src/uki-view/view/flow.js +37 -9
- data/frameworks/uki/src/uki-view/view/image.js +14 -1
- data/frameworks/uki/src/uki-view/view/label.js +72 -11
- data/frameworks/uki/src/uki-view/view/list.js +143 -13
- data/frameworks/uki/src/uki-view/view/list/render.js +1 -0
- data/frameworks/uki/src/uki-view/view/popup.js +46 -2
- data/frameworks/uki/src/uki-view/view/radio.js +19 -4
- data/frameworks/uki/src/uki-view/view/scrollPane.js +91 -33
- data/frameworks/uki/src/uki-view/view/slider.js +67 -54
- data/frameworks/uki/src/uki-view/view/splitPane.js +102 -9
- data/frameworks/uki/src/uki-view/view/table.js +59 -2
- data/frameworks/uki/src/uki-view/view/table/column.js +45 -17
- data/frameworks/uki/src/uki-view/view/table/header.js +40 -12
- data/frameworks/uki/src/uki-view/view/table/render.js +4 -0
- data/frameworks/uki/src/uki-view/view/textField.js +75 -21
- data/frameworks/uki/src/uki-view/view/toolbar.js +16 -0
- data/lib/uki/builder.rb +1 -1
- data/lib/uki/include_js.rb +2 -2
- data/lib/uki/project.rb +14 -14
- data/templates/index.html.erb +2 -2
- data/templates/myapp.js.erb +2 -2
- data/uki.gemspec +34 -48
- metadata +44 -47
- data/frameworks/uki/src/uki-core/dom/nativeLayout.js +0 -18
- 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/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/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
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uki
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 23
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 1
|
7
8
|
- 1
|
8
|
-
-
|
9
|
-
version: 1.1.
|
9
|
+
- 2
|
10
|
+
version: 1.1.2
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Vladimir Kolesnikov
|
@@ -14,16 +15,18 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date: 2010-
|
18
|
+
date: 2010-10-18 00:00:00 +04:00
|
18
19
|
default_executable: uki
|
19
20
|
dependencies:
|
20
21
|
- !ruby/object:Gem::Dependency
|
21
22
|
name: sinatra
|
22
23
|
prerelease: false
|
23
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
24
26
|
requirements:
|
25
27
|
- - ">="
|
26
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
27
30
|
segments:
|
28
31
|
- 0
|
29
32
|
version: "0"
|
@@ -33,9 +36,11 @@ dependencies:
|
|
33
36
|
name: commander
|
34
37
|
prerelease: false
|
35
38
|
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
36
40
|
requirements:
|
37
41
|
- - ">="
|
38
42
|
- !ruby/object:Gem::Version
|
43
|
+
hash: 61
|
39
44
|
segments:
|
40
45
|
- 4
|
41
46
|
- 0
|
@@ -47,9 +52,11 @@ dependencies:
|
|
47
52
|
name: jspec
|
48
53
|
prerelease: false
|
49
54
|
requirement: &id003 !ruby/object:Gem::Requirement
|
55
|
+
none: false
|
50
56
|
requirements:
|
51
57
|
- - ">="
|
52
58
|
- !ruby/object:Gem::Version
|
59
|
+
hash: 15
|
53
60
|
segments:
|
54
61
|
- 3
|
55
62
|
- 3
|
@@ -92,6 +99,8 @@ files:
|
|
92
99
|
- frameworks/uki/examples/core-examples/controls/controls.js
|
93
100
|
- frameworks/uki/examples/core-examples/dnd/dnd.js
|
94
101
|
- frameworks/uki/examples/core-examples/flow/flow.js
|
102
|
+
- frameworks/uki/examples/core-examples/linearGradient/gradient.svg
|
103
|
+
- frameworks/uki/examples/core-examples/linearGradient/linearGradient.js
|
95
104
|
- frameworks/uki/examples/core-examples/list/list.js
|
96
105
|
- frameworks/uki/examples/core-examples/popup/popup.js
|
97
106
|
- frameworks/uki/examples/core-examples/resizeToContents/resizeToContents.js
|
@@ -216,12 +225,14 @@ files:
|
|
216
225
|
- frameworks/uki/examples/css/index.css
|
217
226
|
- frameworks/uki/examples/css/reset.css
|
218
227
|
- frameworks/uki/examples/more-examples/radioButton/radioButton.js
|
228
|
+
- frameworks/uki/examples/more-examples/select/select.js
|
219
229
|
- frameworks/uki/examples/more-examples/splitTable/library.js
|
220
230
|
- frameworks/uki/examples/more-examples/splitTable/searchable.js
|
221
231
|
- frameworks/uki/examples/more-examples/splitTable/splitTable.js
|
222
232
|
- frameworks/uki/examples/more-examples/toggleButton/toggleButton.js
|
223
233
|
- frameworks/uki/examples/more-examples/treeList/i/arrows.png
|
224
234
|
- frameworks/uki/examples/more-examples/treeList/treeList.js
|
235
|
+
- frameworks/uki/examples/touch-examples/scrollPane/scrollPane.js
|
225
236
|
- frameworks/uki/examples/views/example.haml
|
226
237
|
- frameworks/uki/examples/views/exampleList.haml
|
227
238
|
- frameworks/uki/server.rb
|
@@ -252,10 +263,12 @@ files:
|
|
252
263
|
- frameworks/uki/spec/unit/view/container.spec.js
|
253
264
|
- frameworks/uki/src/airport.js
|
254
265
|
- frameworks/uki/src/uki-core.js
|
266
|
+
- frameworks/uki/src/uki-core/after.js
|
255
267
|
- frameworks/uki/src/uki-core/attachment.js
|
256
268
|
- frameworks/uki/src/uki-core/background.js
|
257
269
|
- frameworks/uki/src/uki-core/background/css.js
|
258
270
|
- frameworks/uki/src/uki-core/background/cssBox.js
|
271
|
+
- frameworks/uki/src/uki-core/background/linearGradient.js
|
259
272
|
- frameworks/uki/src/uki-core/background/multi.js
|
260
273
|
- frameworks/uki/src/uki-core/background/null.js
|
261
274
|
- frameworks/uki/src/uki-core/background/rows.js
|
@@ -264,9 +277,9 @@ files:
|
|
264
277
|
- frameworks/uki/src/uki-core/collection.js
|
265
278
|
- frameworks/uki/src/uki-core/const.js
|
266
279
|
- frameworks/uki/src/uki-core/dom.js
|
280
|
+
- frameworks/uki/src/uki-core/dom/browser.js
|
267
281
|
- frameworks/uki/src/uki-core/dom/dnd.js
|
268
282
|
- frameworks/uki/src/uki-core/dom/event.js
|
269
|
-
- frameworks/uki/src/uki-core/dom/nativeLayout.js
|
270
283
|
- frameworks/uki/src/uki-core/dom/offset.js
|
271
284
|
- frameworks/uki/src/uki-core/dom/w3cdnd.js
|
272
285
|
- frameworks/uki/src/uki-core/geometry.js
|
@@ -287,14 +300,27 @@ files:
|
|
287
300
|
- frameworks/uki/src/uki-data.js
|
288
301
|
- frameworks/uki/src/uki-data/ajax.js
|
289
302
|
- frameworks/uki/src/uki-data/data.js
|
303
|
+
- frameworks/uki/src/uki-data/json.js
|
304
|
+
- frameworks/uki/src/uki-data/localStore.js
|
290
305
|
- frameworks/uki/src/uki-data/model.js
|
291
306
|
- frameworks/uki/src/uki-data/observable.js
|
292
307
|
- frameworks/uki/src/uki-more.js
|
293
308
|
- frameworks/uki/src/uki-more/more.js
|
309
|
+
- frameworks/uki/src/uki-more/more/background.js
|
310
|
+
- frameworks/uki/src/uki-more/more/color.js
|
294
311
|
- frameworks/uki/src/uki-more/more/utils.js
|
295
312
|
- frameworks/uki/src/uki-more/more/view.js
|
313
|
+
- frameworks/uki/src/uki-more/more/view/form.js
|
314
|
+
- frameworks/uki/src/uki-more/more/view/hTile.js
|
296
315
|
- frameworks/uki/src/uki-more/more/view/listContainer.js
|
316
|
+
- frameworks/uki/src/uki-more/more/view/nativeButton.js
|
317
|
+
- frameworks/uki/src/uki-more/more/view/nativeCheckbox.js
|
318
|
+
- frameworks/uki/src/uki-more/more/view/nativeControl.js
|
319
|
+
- frameworks/uki/src/uki-more/more/view/nativeInput.js
|
320
|
+
- frameworks/uki/src/uki-more/more/view/nativeSelect.js
|
297
321
|
- frameworks/uki/src/uki-more/more/view/radioButton.js
|
322
|
+
- frameworks/uki/src/uki-more/more/view/select-theme.js
|
323
|
+
- frameworks/uki/src/uki-more/more/view/select.js
|
298
324
|
- frameworks/uki/src/uki-more/more/view/splitTable.js
|
299
325
|
- frameworks/uki/src/uki-more/more/view/splitTable/render.js
|
300
326
|
- frameworks/uki/src/uki-more/more/view/toggleButton.js
|
@@ -302,59 +328,19 @@ files:
|
|
302
328
|
- frameworks/uki/src/uki-more/more/view/treeList/render.js
|
303
329
|
- frameworks/uki/src/uki-theamless.js
|
304
330
|
- frameworks/uki/src/uki-theme/airport.js
|
305
|
-
- frameworks/uki/src/uki-theme/airport/i/button/down-c.gif
|
306
|
-
- frameworks/uki/src/uki-theme/airport/i/button/down-c.png
|
307
|
-
- frameworks/uki/src/uki-theme/airport/i/button/down-h.gif
|
308
|
-
- frameworks/uki/src/uki-theme/airport/i/button/down-h.png
|
309
|
-
- frameworks/uki/src/uki-theme/airport/i/button/down-m.png
|
310
|
-
- frameworks/uki/src/uki-theme/airport/i/button/down-v.png
|
311
|
-
- frameworks/uki/src/uki-theme/airport/i/button/focusRing-c.png
|
312
|
-
- frameworks/uki/src/uki-theme/airport/i/button/focusRing-h.png
|
313
|
-
- frameworks/uki/src/uki-theme/airport/i/button/focusRing-m.png
|
314
|
-
- frameworks/uki/src/uki-theme/airport/i/button/focusRing-v.png
|
315
|
-
- frameworks/uki/src/uki-theme/airport/i/button/focusRing.png
|
316
|
-
- frameworks/uki/src/uki-theme/airport/i/button/hover-c.gif
|
317
|
-
- frameworks/uki/src/uki-theme/airport/i/button/hover-c.png
|
318
|
-
- frameworks/uki/src/uki-theme/airport/i/button/hover-h.gif
|
319
|
-
- frameworks/uki/src/uki-theme/airport/i/button/hover-h.png
|
320
|
-
- frameworks/uki/src/uki-theme/airport/i/button/hover-m.png
|
321
|
-
- frameworks/uki/src/uki-theme/airport/i/button/hover-v.png
|
322
|
-
- frameworks/uki/src/uki-theme/airport/i/button/hover.png
|
323
|
-
- frameworks/uki/src/uki-theme/airport/i/button/normal-c.gif
|
324
|
-
- frameworks/uki/src/uki-theme/airport/i/button/normal-c.png
|
325
|
-
- frameworks/uki/src/uki-theme/airport/i/button/normal-h.gif
|
326
|
-
- frameworks/uki/src/uki-theme/airport/i/button/normal-h.png
|
327
|
-
- frameworks/uki/src/uki-theme/airport/i/button/normal-m.png
|
328
|
-
- frameworks/uki/src/uki-theme/airport/i/button/normal-v.png
|
329
|
-
- frameworks/uki/src/uki-theme/airport/i/button/normal.png
|
330
331
|
- frameworks/uki/src/uki-theme/airport/i/checkbox/checkbox.png
|
331
332
|
- frameworks/uki/src/uki-theme/airport/i/checkbox/focus.png
|
332
333
|
- frameworks/uki/src/uki-theme/airport/i/checkbox/normal.gif
|
333
334
|
- frameworks/uki/src/uki-theme/airport/i/checkbox/normal.png
|
334
|
-
- frameworks/uki/src/uki-theme/airport/i/panel/dark-h.gif
|
335
|
-
- frameworks/uki/src/uki-theme/airport/i/panel/dark-h.png
|
336
|
-
- frameworks/uki/src/uki-theme/airport/i/panel/dark-m.png
|
337
|
-
- frameworks/uki/src/uki-theme/airport/i/panel/dark.png
|
338
|
-
- frameworks/uki/src/uki-theme/airport/i/popup/normal.png
|
339
335
|
- frameworks/uki/src/uki-theme/airport/i/radio/focus.png
|
340
336
|
- frameworks/uki/src/uki-theme/airport/i/radio/normal.gif
|
341
337
|
- frameworks/uki/src/uki-theme/airport/i/radio/normal.png
|
342
338
|
- frameworks/uki/src/uki-theme/airport/i/radio/radio.png
|
343
|
-
- frameworks/uki/src/uki-theme/airport/i/shadow/large-c.png
|
344
|
-
- frameworks/uki/src/uki-theme/airport/i/shadow/large-h.png
|
345
|
-
- frameworks/uki/src/uki-theme/airport/i/shadow/large-m.png
|
346
|
-
- frameworks/uki/src/uki-theme/airport/i/shadow/large-v.png
|
347
|
-
- frameworks/uki/src/uki-theme/airport/i/shadow/large.png
|
348
|
-
- frameworks/uki/src/uki-theme/airport/i/slider/bar-m.gif
|
349
|
-
- frameworks/uki/src/uki-theme/airport/i/slider/bar-m.png
|
350
|
-
- frameworks/uki/src/uki-theme/airport/i/slider/bar-v.gif
|
351
|
-
- frameworks/uki/src/uki-theme/airport/i/slider/bar-v.png
|
352
|
-
- frameworks/uki/src/uki-theme/airport/i/slider/bar.png
|
353
|
-
- frameworks/uki/src/uki-theme/airport/i/slider/focus.png
|
354
|
-
- frameworks/uki/src/uki-theme/airport/i/slider/handle.gif
|
355
339
|
- frameworks/uki/src/uki-theme/airport/i/splitPane/horizontal.gif
|
356
340
|
- frameworks/uki/src/uki-theme/airport/i/splitPane/horizontal.png
|
357
341
|
- frameworks/uki/src/uki-theme/airport/i/splitPane/vertical.gif
|
342
|
+
- frameworks/uki/src/uki-theme/airport/i/table/a-down.png
|
343
|
+
- frameworks/uki/src/uki-theme/airport/i/table/a-up.png
|
358
344
|
- frameworks/uki/src/uki-theme/airport/i/x.gif
|
359
345
|
- frameworks/uki/src/uki-theme/aristo.js
|
360
346
|
- frameworks/uki/src/uki-theme/aristo/i/button/down-c.gif
|
@@ -400,6 +386,13 @@ files:
|
|
400
386
|
- frameworks/uki/src/uki-theme/aristo/i/splitPane/horizontal.png
|
401
387
|
- frameworks/uki/src/uki-theme/aristo/i/splitPane/vertical.gif
|
402
388
|
- frameworks/uki/src/uki-theme/aristo/i/x.gif
|
389
|
+
- frameworks/uki/src/uki-touch.js
|
390
|
+
- frameworks/uki/src/uki-touch/touch.js
|
391
|
+
- frameworks/uki/src/uki-touch/touch/const.js
|
392
|
+
- frameworks/uki/src/uki-touch/touch/setup.js
|
393
|
+
- frameworks/uki/src/uki-touch/touch/view.js
|
394
|
+
- frameworks/uki/src/uki-touch/touch/view/scrollPane.js
|
395
|
+
- frameworks/uki/src/uki-touch/touch/view/scrollableList.js
|
403
396
|
- frameworks/uki/src/uki-view.js
|
404
397
|
- frameworks/uki/src/uki-view/view/box.js
|
405
398
|
- frameworks/uki/src/uki-view/view/button.js
|
@@ -449,23 +442,27 @@ rdoc_options:
|
|
449
442
|
require_paths:
|
450
443
|
- lib
|
451
444
|
required_ruby_version: !ruby/object:Gem::Requirement
|
445
|
+
none: false
|
452
446
|
requirements:
|
453
447
|
- - ">="
|
454
448
|
- !ruby/object:Gem::Version
|
449
|
+
hash: 3
|
455
450
|
segments:
|
456
451
|
- 0
|
457
452
|
version: "0"
|
458
453
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
454
|
+
none: false
|
459
455
|
requirements:
|
460
456
|
- - ">="
|
461
457
|
- !ruby/object:Gem::Version
|
458
|
+
hash: 3
|
462
459
|
segments:
|
463
460
|
- 0
|
464
461
|
version: "0"
|
465
462
|
requirements: []
|
466
463
|
|
467
464
|
rubyforge_project:
|
468
|
-
rubygems_version: 1.3.
|
465
|
+
rubygems_version: 1.3.7
|
469
466
|
signing_key:
|
470
467
|
specification_version: 3
|
471
468
|
summary: uki development tools
|
@@ -1,18 +0,0 @@
|
|
1
|
-
include('../dom.js');
|
2
|
-
|
3
|
-
uki.initNativeLayout = function() {
|
4
|
-
if (uki.supportNativeLayout === undefined) {
|
5
|
-
uki.dom.probe(
|
6
|
-
uki.createElement(
|
7
|
-
'div',
|
8
|
-
'position:absolute;width:100px;height:100px;left:-999em;',
|
9
|
-
'<div style="position:absolute;left:0;right:0"></div>'
|
10
|
-
),
|
11
|
-
function(div) {
|
12
|
-
uki.supportNativeLayout = div.childNodes[0].offsetWidth == 100 && !root.opera;
|
13
|
-
}
|
14
|
-
);
|
15
|
-
}
|
16
|
-
};
|
17
|
-
|
18
|
-
// uki.supportNativeLayout = false;
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|