-
Notifications
You must be signed in to change notification settings - Fork 38
/
gallery_manifest.json
2078 lines (2078 loc) · 91.9 KB
/
gallery_manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"owners": {
"dimitrk": {
"name": "DimitrK",
"website": "http://www.appopsi.com",
"twitter": "jimfeedback"
},
"Rahien": {
"name": "Rahien",
"website": "https://github.com/Rahien",
"twitter": ""
},
"tjwebb": {
"name": "NBT Solutions",
"website": "http://www.nbtsolutions.com",
"twitter": "NBTSolutions"
},
"rwatkins": {
"name": "Ryan Watkins",
"website": "http://www.ryanwatkins.net",
"twitter": "ryanwatkins"
},
"omastudios": {
"name": "Jack Newcombe",
"website": "http://oma-studios.co.uk/",
"twitter": "omastudios"
},
"MaKleSoft": {
"name": "MaKleSoft",
"website": "http://maklesoft.com/",
"twitter": "MaKleSoft"
},
"villo": {
"name": "Villo Labs",
"website": "http://villo.me/labs/",
"twitter": "villo"
},
"germboy": {
"name": "germboy",
"website": "http://www.variablelimit.com/",
"twitter": "germboy"
},
"MacFJA": {
"name": "MacFJA",
"website": "",
"twitter": ""
},
"morethanreal": {
"name": "morethanreal",
"website": "",
"twitter": "morethanreal"
},
"isandunk": {
"name": "isandunk",
"website": "http://www.duncanstevenson.com/",
"twitter": ""
},
"JayCanuck": {
"name": "Jason Robitaille",
"website": "http://canuckcoding.ca/",
"twitter": "JayCanuck"
},
"MachiApps": {
"name": "MachiApps",
"website": "http://www.machiapps.com",
"twitter": "MachiApps"
},
"onecrayon": {
"name": "One Crayon",
"website": "http://onecrayon.com/",
"twitter": "ianbeck"
},
"webOS101": {
"name": "Roy Sutton",
"website": "http://webos101.com",
"twitter": "pre101"
},
"GlitchTechScience": {
"name": "GlitchTech Science",
"website": "http://glitchtechscience.com/",
"twitter": "GlitchTech"
},
"newness": {
"name": "Newness Developments",
"website": "http://www.newnessdevelopments.com/",
"twitter": "newnessdevs"
},
"sfeast": {
"name": "sfeast",
"website": "",
"twitter": ""
},
"rok": {
"name": "Robert Kowalski",
"website": "http://robert-kowalski.de",
"twitter": "robinson_k"
},
"whatfield73": {
"name": "Will Hatfield",
"website": "http://designtechllc.com",
"twitter": "cbcames"
},
"fxspec06": {
"name": "Bryan Leasot",
"website": "",
"twitter": "fxspec06"
},
"ShiftyAxel": {
"name": "Josh Palmer",
"website": "",
"twitter": "ShiftyAxel"
},
"sugardave": {
"name": "sugardave",
"website": "http://app.sugardave.com",
"twitter": "sugar_dave"
},
"JMTK": {
"name": "JMTK",
"website": "http://jmtk.us.to/",
"twitter": "@jakemorrison24"
},
"phated": {
"name": "Blaine Bublitz",
"website": "http://www.iceddev.com",
"twitter": "BlaineBublitz"
},
"ryanjduffy": {
"name": "ryanjduffy",
"website": "http://blog.technisode.com",
"twitter": "ryanjduffy"
},
"DougReeder": {
"name": "Doug Reeder",
"website": "http://hominidsoftware.com/",
"twitter": "reeder29"
},
"appsbychris": {
"name": "Chris Van Hooser",
"website": "http://appsbychris.net/"
},
"pcimino": {
"name": "Paul L. Cimino",
"website": "http://translunardesigns.com",
"twitter": "PLCimino"
},
"webosports": {
"name": "WebOS Ports",
"website": "http://webos-ports.org/wiki/",
"twitter": "webosports"
},
"cayasso": {
"name": "Jonathan Brumley",
"website": "https://github.com/cayasso",
"twitter": "cayasso"
},
"jjacobsohn": {
"name": "Johann Jacobsohn",
"website": "https://github.com/johannjacobsohn",
"twitter": ""
},
"emilkm": {
"name": "Emil Malinov",
"website": "https://github.com/emilkm",
"twitter": ""
},
"oncron": {
"name": "OnCron Engineering, Inc.",
"website": "http://www.oncron.com",
"twitter": "OnCronEng"
},
"outliet": {
"name": "SeongWoong",
"website": "https://www.facebook.com/seongwoong.oh",
"twitter": "@outliet"
},
"jkpark": {
"name": "Jeong-geun Park",
"website": "https://github.com/jk-park",
"twitter": ""
},
"kmkim": {
"name": "Kyungmin Kim",
"website": "https://github.com/Screamo",
"twitter": ""
}
},
"widgets": [
{
"name": "dimitrk.enigma",
"displayName": "Enigma",
"owner": "dimitrk",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/DimitrK/enigma",
"demoUrl": "http://dimitrk.github.io/enyo/enigma/",
"submissionDate": "Jan 26, 2014",
"testedPlatforms": "Firefox 26.0.0 (windows 7), IE 10 (windows 7), Chrome 34.0.1805.0 canary (window 7), Chrome 32.0.1700.72 (windows 7), Opera 12.15 (windows 7)",
"license": "BSD",
"version": "1.0",
"blurb": "EnigmaJS is a Enyo encryption/encoding library. Form more information see the github project page."
},
{
"name": "rahien.ReorderableList",
"displayName": "Reorderable List",
"owner": "Rahien",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "layout",
"version": "2.x"
}
],
"url": "https://github.com/Rahien/enyo-ReorderableList.git",
"demoUrl": "http://rahien.github.com/enyo-ReorderableList/example.html",
"submissionDate": "Oct 4, 2012",
"testedPlatforms": "Chromium 18.0.1025.168 and 20.0.1132.47 (linux), Firefox 15.0.1 (linux, windows 7), Opera 12.02 (linux, windows 7), Firefox for mobile v. 15.0 (android 2.3), Safari IOS 5.1.1 (ipod), IE 9 (warning: mystical move event prevents dragging in one movement, two clicks are required) (windows 7), Chrome 21.0.1180.89 (windows 7)",
"license": "MIT",
"version": "1.0",
"blurb": "This component is a multi-purpose extension of the enyojs list component. It allows the user to select items in the list by holding, pull them out and insert them at another location. All using drag and drop."
},
{
"name": "nbt.OpenLayers",
"displayName": "OpenLayers Control",
"owner": "tjwebb",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "OpenLayers",
"version": "2.x"
}
],
"url": "https://github.com/NBTSolutions/enyo-openlayers",
"demoUrl": "http://dev.nbtsolutions.net/enyo-openlayers/",
"submissionDate": "Sept 7, 2012",
"testedPlatforms": "All",
"license": "LGPL 3",
"version": "1.0",
"blurb": "Enyo 2 Control for OpenLayers (openlayers.org)"
},
{
"name": "rwatkins.MenuPane",
"displayName": "MenuPane Control",
"owner": "rwatkins",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "layout",
"version": ""
}
],
"url": "https://github.com/ryanwatkins/menupane",
"demoUrl": "http://www.ryanwatkins.net/software/menupane",
"submissionDate": "Mar 17, 2012",
"testedPlatforms": "Android 2+, iOS 5+, Chrome 17+, Safari 5.1+, Firefox 10+",
"license": "Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation.",
"version": "1",
"blurb": "An Enyo 2.0 control for managing Pane/View swapping via animated menus on the left and right of the Pane - much like the menu UI component used in the Path and Facebook apps on iOS and Android. It takes a set of views to swap between, much like a simplified 1.0 Pane/View control. But also takes a set of controls to compose the left or right menus and animates the display of the menus. It does nice little things, like if you click a menu item it \"pushes out\" the view before doing the swap, or just closed the menu if the selection hasn't changed."
},
{
"name": "omastudios.Storage",
"displayName": "LocalStorage Wrapper",
"owner": "omastudios",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "http://forums.enyojs.com/discussion/comment/468#Comment_468",
"submissionDate": "Feb 12, 2012",
"testedPlatforms": "Unknown",
"license": "Unknown",
"version": "1",
"blurb": "Simple wrapper around browser localStorage."
},
{
"name": "MaKleSoft.AnimatedToggleButton",
"displayName": "Animated Togglebuttons",
"owner": "MaKleSoft",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "onyx",
"version": ""
}
],
"url": "https://github.com/MaKleSoft/enyo-plugins/blob/master/v2/AnimatedToggleButton",
"demoUrl": "http://maklesoft.com/enyo-plugins/v2/AnimatedToggleButton/example.html",
"submissionDate": "Mar 3, 2012",
"testedPlatforms": "Google Chrome, Safari, IE 9",
"license": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.",
"version": "1",
"blurb": "An extension fo the ToggleButton kind that animates between the on and off position and allows actual dragging of the knob."
},
{
"name": "villo.Book",
"displayName": "Books for Enyo 2",
"owner": "villo",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/villo/Labs/tree/master/Books",
"demoUrl": "http://villo.me/labs/projects/books/example/",
"submissionDate": "Mar 4, 2012",
"testedPlatforms": "Chrome, Safari, Firefox, IE",
"license": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.",
"version": "1",
"blurb": "Books aims to replicate the Pane kind found in Enyo 1. Books create a collection of \"Pages\", with given page numbers and names that you can move between."
},
{
"name": "germboy.Textarea",
"displayName": "Enyo Textarea control",
"owner": "germboy",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/germboy/Enyo2CustomControls",
"demoUrl": "http://www.variablelimit.com/enyo/samples/textarea-onyx/",
"submissionDate": "Mar 2, 2012",
"testedPlatforms": "Unknown",
"license": "Unknown",
"version": "1",
"blurb": "A simple textarea control, including a version with Onyx styling."
},
{
"name": "germboy.Progress",
"displayName": "Enyo Progress controls",
"owner": "germboy",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/germboy/Enyo2CustomControls",
"demoUrl": "http://www.variablelimit.com/enyo/samples/progressplayground-onyx/",
"submissionDate": "Mar 9, 2012",
"testedPlatforms": "Unknown",
"license": "Unknown",
"version": "1",
"blurb": "A set of progress controls (Progress, ProgressBar, and ProgressButton) with Onyx styling."
},
{
"name": "MacFJA.TextArea",
"displayName": "Onyx themed Textarea",
"owner": "MacFJA",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "onyx",
"version": ""
}
],
"url": "https://github.com/MacFJA/enyo2-lib/tree/master/onyx",
"demoUrl": "http://macfja.github.com/enyo2-lib/onyx/textarea.html",
"submissionDate": "Mar 7, 2012",
"testedPlatforms": "Opera 11.61 (Mac), Safari 5.1.5 (Mac), Google Chrome 17.0.963.56 (Mac), Safari (iOS 5.1)",
"license": "Apache 2.0",
"version": "1.1",
"blurb": "A TextArea control (based on onyx.Input) that automatically resizes. (Prefer MacFJA.GrowTextBox)"
},
{
"name": "morethanreal.GoogleMap",
"displayName": "Enyo Google Maps control",
"owner": "morethanreal",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/morethanreal/enyo-googlemap",
"submissionDate": "Feb 2, 2012",
"testedPlatforms": "Chrome, Safari",
"license": "Unknown",
"version": "1",
"blurb": "A Google Map control for Enyo 2."
},
{
"name": "isandunk.onyx-graphical-assets",
"displayName": "Onyx Graphical Assets",
"owner": "isandunk",
"dependencies": [],
"url": "https://github.com/isandunk/Onyx-Graphical-Assets",
"demoUrl": "https://github.com/isandunk/Onyx-Graphical-Assets/blob/master/Onyx-Icons.png",
"submissionDate": "Mar 9, 2012",
"testedPlatforms": "Unknown",
"license": "Unknown",
"version": "1",
"blurb": "This is a selection of icons for Onyx, the widget library for EnyoJS. It is an attempt provide the community with a method of consistenty reproducing the interface icons that appear in many of the original Enyo 1.0 applications."
},
{
"name": "MaKleSoft.SelectDecorator",
"displayName": "SelectDecorator kind",
"owner": "MaKleSoft",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "onyx",
"version": ""
}
],
"url": "https://github.com/MaKleSoft/enyo-plugins/tree/master/v2/SelectDecorator",
"demoUrl": "http://maklesoft.com/enyo-plugins/v2/SelectDecorator/example.html",
"submissionDate": "Mar 26, 2012",
"testedPlatforms": "Google Chrome, Safari, IE 9",
"license": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.",
"version": "1",
"blurb": "For one of my current projects I needed a way to style select elements so I came up with a SelectDecorator kind that can be wrapped around Select kinds to provide onyx-like styling. It works similar to the InputDecorator kind. Note that the SelectDecorator does not style the actual selection popup."
},
{
"name": "MacFJA.LevelProgress",
"displayName": "LevelProgress & RatingLevel control",
"owner": "MacFJA",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/MacFJA/enyo2-lib/tree/master/onyx",
"demoUrl": "http://macfja.github.com/enyo2-lib/onyx/level.html",
"submissionDate": "Mar 26, 2012",
"testedPlatforms": "Opera 11.61 (Mac), Safari 5.1.5 (Mac), Google Chrome 17.0.963.56 (Mac), Safari (iOS 5.1)",
"license": "Apache 2.0",
"version": "1.0",
"blurb": "2 controls (the second based on the first) to display level progress bar and a rating bar. Features live value change by clicking or \"sliding\", and critical value and warning value for \"LevelProgress\"."
},
{
"name": "MacFJA.UpDown",
"displayName": "Up and down control",
"owner": "MacFJA",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/MacFJA/enyo2-lib/tree/master/onyx",
"demoUrl": "http://macfja.github.com/enyo2-lib/onyx/updown.html",
"submissionDate": "Mar 30, 2012",
"testedPlatforms": "Opera 11.61 (Mac), Safari 5.1.5 (Mac), Google Chrome 17.0.963.56 (Mac), Safari (iOS 5.1)",
"license": "Apache 2.0",
"version": "1.0",
"blurb": "A Up and Down control, maintaining the cursor increase progressively the event speed."
},
{
"name": "MacFJA.NavigationBar",
"displayName": "Navigation/Path Bar",
"owner": "MacFJA",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/MacFJA/enyo2-lib/tree/master/onyx",
"demoUrl": "http://macfja.github.com/enyo2-lib/onyx/navigationbar.html",
"submissionDate": "Mar 30, 2012",
"testedPlatforms": "Opera 11.61 (Mac), Safari 5.1.5 (Mac), Google Chrome 17.0.963.56 (Mac), FireFox 11.0 (Mac)",
"license": "Apache 2.0",
"version": "1.1",
"blurb": "A path bar, that can be used as an history navigation bar"
},
{
"name": "JayCanuck.XmlpRequest",
"displayName": "XmlpRequest",
"owner": "JayCanuck",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "JsonpRequest",
"version": ""
}
],
"url": "https://github.com/JayCanuck/enyo-2-components/tree/master/xmlprequest",
"demoUrl": "http://jaycanuck.github.com/enyo-2-components/xmlprequest/demo.html",
"submissionDate": "April 2, 2012",
"testedPlatforms": "Firefox 11.0 (Windows), Google Chrome 18.0.1025.142 (Windows), Internet Explorer 9.0.8112.16421 (Windows)",
"license": "MIT License",
"version": "1.0",
"blurb": "Cross-domain fetching of xml data, via YQL, returned converted into json format."
},
{
"name": "JayCanuck.YqlpRequest",
"displayName": "YqlpRequest",
"owner": "JayCanuck",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "JsonpRequest",
"version": ""
}
],
"url": "https://github.com/JayCanuck/enyo-2-components/tree/master/yqlprequest",
"demoUrl": "http://jaycanuck.github.com/enyo-2-components/yqlprequest/demo.html",
"submissionDate": "April 9, 2012",
"testedPlatforms": "Firefox 11.0 (Windows), Google Chrome 18.0.1025.142 (Windows), Internet Explorer 9.0.8112.16421 (Windows)",
"license": "MIT License",
"version": "1.0",
"blurb": "Cross-domain fetching of YQL queries, returned in json format. More information on YQL format can be found at http://developer.yahoo.com/yql/ and an expansive collection of YQL data tables can be found at http://www.datatables.org"
},
{
"name": "JayCanuck.webOSExt",
"displayName": "webOSExt",
"owner": "JayCanuck",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/JayCanuck/enyo-2-components/tree/master/webos-ext",
"demoUrl": "http://jaycanuck.github.com/enyo-2-components/webos-ext/demo.html",
"submissionDate": "April 9, 2012",
"testedPlatforms": "webOS 3.0.5",
"license": "MIT License",
"version": "1.0",
"blurb": "webOSExt provides Enyo2 binding for an assortment of Mojo/Enyo1 webOS-exclusive API, including screen orientation, banner notifications, launch parameters, deviceinfo, palm service requests, etc."
},
{
"name": "JayCanuck.JavaApplet",
"displayName": "JavaApplet",
"owner": "JayCanuck",
"dependencies": [
{
"name": "Enyo 2",
"version": "Java 1.5 or greater"
}
],
"url": "https://github.com/JayCanuck/enyo-2-components/tree/master/javaapplet",
"demoUrl": "http://jaycanuck.github.com/enyo-2-components/javaapplet/demo.html",
"submissionDate": "April 22, 2012",
"testedPlatforms": "Firefox 11.0 (Windows), Google Chrome 18.0.1025.142 (Windows), Internet Explorer 9.0.8112.16421 (Windows)",
"license": "MIT License",
"version": "1.0",
"blurb": "Java applets brought to Enyo2, with enhanced support for 2-way communication of data between the Java applet and javascript Enyo2 code. Requires the use of EnyoApplet/EnyoJApplet (instead of Applet/JApplet), included on the git prepackaged into the EnyoApplet.jar library."
},
{
"name": "JayCanuck.FileInputDecorator",
"displayName": "FileInputDecorator",
"owner": "JayCanuck",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/JayCanuck/enyo-2-components/tree/master/fileinputdecorator",
"demoUrl": "http://jaycanuck.github.com/enyo-2-components/fileinputdecorator/demo.html",
"submissionDate": "Nov 13, 2012",
"testedPlatforms": "Firefox 16.0.2 (Windows), Google Chrome 23.0.1271.64 (Windows), Internet Explorer 9.0.8112.16421 (Windows)",
"license": "MIT License",
"version": "1.0",
"blurb": "Allows for improved customizable file input, with support for filetype filters, multiple file selection, html5 media capture across a wide breadth of browsers, including iOS6 and Android 3.x+. Note: filetype filters, multiple file support, and media capture not supported in IE."
},
{
"name": "JayCanuck.WebAppInstaller",
"displayName": "WebAppInstaller",
"owner": "JayCanuck",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "Onyx",
"version": ""
}
],
"url": "https://github.com/JayCanuck/enyo-2-components/tree/master/webappinstaller",
"demoUrl": "http://enyo2-sampler.canuckcoding.ca/",
"submissionDate": "Jan 23, 2013",
"testedPlatforms": "Firefox 18.0.1 (Windows), Firefox 17.0 (Android), FirefoxOS 1.0.0-prerelease (platform v18.0), Google Chrome 24.0.1312.52 (Windows), iOS 6.0.1",
"license": "MIT License",
"version": "1.0",
"blurb": "Unified web app installation library for Firefox, Firefox for Android, FirefoxOS, Chrome, and iOS. Includes a WebAppButton control that hides (or turns into an Update button) onces the web app is installed or on unsupported browsers. Inspired by the installation library in Mozilla's mortar app stub."
},
{
"name": "JayCanuck.Fader",
"displayName": "Fader",
"owner": "JayCanuck",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/JayCanuck/enyo-2-components/tree/master/fader",
"demoUrl": "http://jaycanuck.github.com/enyo-2-components/fader/demo.html",
"submissionDate": "Feb 4, 2013",
"testedPlatforms": "Firefox 18.0.1 (Windows), Google Chrome 24.0.1312.52 (Windows), Internet Explorer 9.0.8112.16421 (Windows)",
"license": "MIT License",
"version": "1.0",
"blurb": "A wrapper component that provides animated fading functionality. Works on all browsers that Enyo2 supports and includes a static function, enyo.Fader.attachTo(), that attaches a fader functionality to a control itself."
},
{
"name": "MacFJA.Localize",
"displayName": "Localization module",
"owner": "MacFJA",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/MacFJA/enyo2-lib/tree/master/localize",
"demoUrl": "http://macfja.github.com/enyo2-lib/localize/example/index.html",
"submissionDate": "Apr 6, 2012",
"testedPlatforms": "Opera 11.61 (Mac), Safari 5.1.5 (Mac), Google Chrome 17.0.963.56 (Mac), FireFox 11.0 (Mac)",
"license": "Apache 2.0",
"version": "2.3",
"blurb": "Localize your Enyo 2 app"
},
{
"name": "MacFJA.GradientSlider",
"displayName": "Gradient Slider",
"owner": "MacFJA",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "Onyx",
"version": ""
}
],
"url": "https://github.com/MacFJA/enyo2-lib/tree/master/onyx",
"demoUrl": "http://macfja.github.com/enyo2-lib/onyx/sliders.html",
"submissionDate": "Apr 7, 2012",
"testedPlatforms": "Opera 11.61 (Mac), Safari 5.1.5 (Mac), Google Chrome 18.0.1025.151 (Mac), FireFox 11.0 (Mac)",
"license": "Apache 2.0",
"version": "1.0",
"blurb": "Simple extension to slider, that provide gradient display"
},
{
"name": "germboy.Accordion",
"displayName": "Accordion Control",
"owner": "germboy",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "Onyx",
"version": ""
}
],
"url": "https://github.com/germboy/Accordion",
"demoUrl": "http://www.variablelimit.com/enyo/lib/germboy/Accordion/examples/accordion-stretched/",
"submissionDate": "Apr 11, 2012",
"testedPlatforms": "Google Chrome 18.0.1025.152 m (Windows), Google Chrome 18.0.1025.151 (Mac), Internet Explorer 9, Safari 5.1.5 (Mac), webOS 3.0.5, iOS 5+, Windows Phone 7.5 IE, Android 4.0.3, Google Chrome Beta 16.0.912.77 (Android)",
"license": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.",
"version": "1.0",
"blurb": "An accordion control for Enyo 2. Only 1 item can be open at a time, however all items can be closed at the same time."
},
{
"name": "MacFJA.DynamicList",
"displayName": "Dynamic loaded list",
"owner": "MacFJA",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/MacFJA/enyo2-lib/tree/master/onyx",
"demoUrl": "http://macfja.github.com/enyo2-lib/onyx/dynamiclist.html",
"submissionDate": "Apr 14, 2012",
"testedPlatforms": "Opera 11.61 (Mac), Safari 5.1.5 (Mac), Google Chrome 18.0.1025.151 (Mac), FireFox 11.0 (Mac), IE 9.0.8112.16421 (Windows)",
"license": "Apache 2.0",
"version": "1.2",
"blurb": "A list that load only visible row"
},
{
"name": "MachiApps.DatePicker",
"displayName": "Date Picker",
"owner": "MachiApps",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "Onyx",
"version": ""
}
],
"url": "https://github.com/MachiApps/Enyo-2-Components",
"demoUrl": "http://www.machiapps.com/Components/Cal.html",
"submissionDate": "Apr 15, 2012",
"testedPlatforms": "Safari 5.1.5 (Windows), Google Chrome 18.0.1025.152 (Windows)",
"license": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.",
"version": "2.0",
"blurb": "Date Picker"
},
{
"name": "MachiApps.CalendarSelector",
"displayName": "Calendar Date Picker",
"owner": "MachiApps",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "Onyx",
"version": ""
}
],
"url": "https://github.com/MachiApps/Enyo-2-Components",
"demoUrl": "http://www.machiapps.com/Components/Cal.html",
"submissionDate": "Apr 15, 2012",
"testedPlatforms": "Safari 5.1.5 (Windows), Google Chrome 18.0.1025.152 (Windows)",
"license": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.",
"version": "2.0",
"blurb": "A Date Picker which includes a calendar"
},
{
"name": "onecrayon.Database",
"displayName": "SQLite Database class",
"owner": "onecrayon",
"dependencies": [],
"url": "https://github.com/onecrayon/database-webos",
"demoUrl": "",
"submissionDate": "Apr 16, 2012",
"testedPlatforms": "webOS 1.4 - 3.0, Safari and other browsers supporting WebSQL API",
"license": "MIT",
"version": "2.1.0",
"blurb": "A class to ease working with HTML5 SQLite databases in Enyo and beyond"
},
{
"name": "germboy.DateScroller",
"displayName": "Date Scroller Calendar Control",
"owner": "germboy",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "Fittable",
"version": ""
}
],
"url": "https://github.com/germboy/DateScroller",
"demoUrl": "http://www.variablelimit.com/enyo/lib/germboy/DateScroller/examples/DateScroller/",
"submissionDate": "Apr 18, 2012",
"testedPlatforms": "Google Chrome 18.0.1025.152 m (Windows), Google Chrome 18.0.1025.151 (Mac), Internet Explorer 9, Safari 5.1.5 (Mac), Firefox 11 (Win & Mac), webOS 3.0.5, iOS 5+, Android 4.0.3, Google Chrome Beta 16.0.912.77 (Android), Windows Phone 7.5 IE*, webOS 2* - *Tap support only",
"license": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.",
"version": "1.1",
"blurb": "A date scroller calendar control for Enyo 2. Scroll through the columns or tap on row items to scroll to that date."
},
{
"name": "rwatkins.SnapScroller",
"displayName": "SnapScroller Control",
"owner": "rwatkins",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/ryanwatkins/snapscroller",
"demoUrl": "http://www.ryanwatkins.net/software/snapscroller",
"submissionDate": "Apr 18, 2012",
"testedPlatforms": "Android 2+, iOS 5+, Chrome 17+, Safari 5.1+, Firefox 10+",
"license": "Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation.",
"version": "1",
"blurb": "An Enyo 2.0 Scroller control that 'snaps' to specific scroll positions for the controls it contains when released. Similar to the Enyo 1.0 SnapScroller control."
},
{
"name": "gts.DatePicker",
"displayName": "Calendar Date Picker",
"owner": "GlitchTechScience",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "Onyx",
"version": ""
},
{
"name": "Layout/Fittable",
"version": ""
}
],
"url": "https://bitbucket.org/GlitchTechScience/gts-plugins/src/master/DatePicker",
"demoUrl": "http://jsfiddle.net/glitchtechscience/SCknQ/",
"submissionDate": "Apr 19, 2012",
"testedPlatforms": "webOS 3.0.5, Chrome 18 (Windows), Firefox (Windows), Internet Explorer 9",
"license": "Apache License, Version 2.0",
"version": "2.0.0",
"blurb": "Calendar style date picker for EnyoJS. This kind uses native Onyx and Layout/Fittable components to reduce dependencies and keep the style similar to the rest of Enyo's UI components. GTS.DatePicker uses a standard JavaScript date object for its value. *Update* Now has a client control area for easy visual integration of gts.TimePicker. The time picker will still require seperate handling."
},
{
"name": "com.Pre101.Masonry",
"displayName": "Masonry Layout Control",
"owner": "webOS101",
"dependencies": [],
"url": "https://github.com/webOS101/Enyo-Masonry",
"demoUrl": "http://dynaptic.com/enyo/Masonry/examples/SingleColumn.html",
"submissionDate": "Apr 19, 2012",
"testedPlatforms": "Tested in: Chrome 18 (Mac/PC), Safari 5 (Mac), Firefox 3.6 (Mac), Firefox 11 (Mac/PC), Opera 11 (PC), Internet Explorer 9 (PC), webOS 3.0.5, Windows Phone 7.5, iOS 5.1, Android 4",
"license": "MIT",
"version": "1",
"blurb": "The Masonry Layout kind is a port of the Vanilla Masonry from David DeSandro. It provides dynamic layout of a container's contents based on the sizes of the contents. It does its best to fit the contents as if they were bricks being arranged into a wall, hence the name Masonry."
},
{
"name": "MachiApps.Checkboxes",
"displayName": "Colored Checkboxes",
"owner": "MachiApps",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "Onyx",
"version": ""
}
],
"url": "https://github.com/MachiApps/Enyo-2-Components",
"demoUrl": "http://machiapps.com/Components/CheckBoxes.html",
"submissionDate": "Apr 21, 2012",
"testedPlatforms": "Safari 5.1.5 (Windows), Google Chrome 18.0.1025.152 (Windows)",
"license": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.",
"version": "2.0",
"blurb": "Allows you to set a color to checkboxes. Extends onyx.Checkbox. Can set just 'color', or both 'checkedColor' and 'uncheckedColor'"
},
{
"name": "newness.Calliope",
"displayName": "Calliope Visual Editor",
"owner": "newness",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/Newness/Enyo-Calliope",
"demoUrl": "http://www.newnessdevelopments.com/demos/calliope",
"submissionDate": "Apr 21, 2012",
"testedPlatforms": "Chrome 18+, Safari 5.1+, Firefox 5+",
"license": "Apache 2.0",
"version": "0.1",
"blurb": "An Enyo 2.0 extensible rich text editor."
},
{
"name": "MacFJA.Notification",
"displayName": "Notification",
"owner": "MacFJA",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "Animator",
"version": ""
}
],
"url": "https://github.com/MacFJA/enyo2-lib/tree/master/notification",
"demoUrl": "http://macfja.github.com/enyo2-lib/notification/index.html",
"submissionDate": "Apr 22, 2012",
"testedPlatforms": "Opera 11.61 (Mac), Safari 5.1.5 (Mac), Google Chrome 18.0.1025.151 (Mac), FireFox 11.0 (Mac)",
"license": "Apache 2.0",
"version": "1.1",
"blurb": "A notification center, inspered by Growl and other"
},
{
"name": "newness.InfiniteSlidingPane",
"displayName": "Infinite SlidingPane",
"owner": "newness",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "Onyx"
}
],
"url": "https://github.com/Newness/Labs/tree/master/InfiniteSlidingPane",
"demoUrl": "http://www.newnessdevelopments.com/demos/infiniteslidingpane",
"submissionDate": "Apr 25, 2012",
"testedPlatforms": "Chrome 18+ (Mac), Safari 5.1+ (Mac), Firefox 5+ (Mac), iOS 5+, webOS 3+",
"license": "Apache 2.0",
"version": "1.0",
"blurb": "Infinite SlidingPane, as seen on TV, and Facebook apps on webOS and iOS."
},
{
"name": "sfeast.SelectableRepeaters",
"displayName": "Selectable Repeaters",
"owner": "sfeast",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/sfeast/SelectableRepeaters",
"demoUrl": "http://apps.stevenf.webfactional.com/examples/enyo/SelectableRepeaters/examples/MultiSelectableRepeater/",
"submissionDate": "Apr 26, 2012",
"testedPlatforms": "Google Chrome 18.0.1025.162 m (Windows), Google Chrome 18.0.1025.165 (Mac), Safari 5.1.2 (Mac), Firefox 12 (Win & Mac), iOS 5.1, Android 2.3.6",
"license": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.",
"version": "1.0",
"blurb": "Repeater controls for Enyo 2 that allows for single and multi-selectable rows"
},
{
"name": "MachiApps.ColorPicker",
"displayName": "Color Picker",
"owner": "MachiApps",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
},
{
"name": "Onyx",
"version": ""
}
],
"url": "https://github.com/MachiApps/Enyo-2-Components",
"demoUrl": "http://machiapps.com/Components/ColorPicker.html",
"submissionDate": "May 9, 2012",
"testedPlatforms": "Safari 5.1.5 (Windows), Google Chrome 18.0.1025.152 (Windows)",
"license": "Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.",
"version": "2.0",
"blurb": "Pretty Basic Color Picker"
},
{
"name": "rok.geolocation",
"displayName": "Geolocation",
"owner": "rok",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/robertkowalski/enyo-geolocation",
"demoUrl": "http://robertkowalski.github.com/enyo-geolocation/",
"submissionDate": "May 13, 2012",
"testedPlatforms": "Firefox 12.0 (Linux), Chrome 18.0.1025.168 (Linux), webOS 3.0.5 Browser, Android 2.1 Emulator, mobile Safari (iOS 5.1), iOS 5.1 (Phonegap)",
"license": "New BSD",
"version": "1.0",
"blurb": "Geolocation for Enyo - Phonegap compatible"
},
{
"name": "whatfield73.webserviceclassic",
"displayName": "WebService Classic",
"owner": "whatfield73",
"dependencies": [
{
"name": "Enyo 2",
"version": ""
}
],
"url": "https://github.com/whatfield73/webservice/",
"submissionDate": "May 17, 2012",