From 6904582cf22be5af56f35f9ca8a48a901f007a72 Mon Sep 17 00:00:00 2001 From: Graham Trott Date: Fri, 22 May 2020 09:36:00 +0100 Subject: [PATCH 1/3] Add Mostrami --- mostrami/demo.html | 20 + mostrami/favicon.gif | 0 mostrami/favicon.ico | Bin 0 -> 2238 bytes mostrami/index.html | 22 + mostrami/jsonPresenter.js | 814 ++++++++++++++++++++++ mostrami/properties.txt | 1 + mostrami/resources/README.md | 3 + mostrami/resources/ecs/blocks.txt | 12 + mostrami/resources/ecs/container.txt | 12 + mostrami/resources/ecs/content.txt | 12 + mostrami/resources/ecs/defaults.txt | 12 + mostrami/resources/ecs/globals.txt | 12 + mostrami/resources/ecs/presenter.txt | 570 +++++++++++++++ mostrami/resources/ecs/scripted.ecs | 258 +++++++ mostrami/resources/ecs/scripted.txt | 271 +++++++ mostrami/resources/ecs/steps.txt | 194 ++++++ mostrami/resources/icon/apple.png | Bin 0 -> 6598 bytes mostrami/resources/icon/arrow-back.png | Bin 0 -> 5542 bytes mostrami/resources/icon/arrow-forward.png | Bin 0 -> 5426 bytes mostrami/resources/icon/binoculars.png | Bin 0 -> 8142 bytes mostrami/resources/icon/book.png | Bin 0 -> 6277 bytes mostrami/resources/icon/cycle.png | Bin 0 -> 3790 bytes mostrami/resources/icon/document.png | Bin 0 -> 11721 bytes mostrami/resources/icon/down.png | Bin 0 -> 4124 bytes mostrami/resources/icon/duckthink.jpg | Bin 0 -> 4179 bytes mostrami/resources/icon/edit.png | Bin 0 -> 4052 bytes mostrami/resources/icon/exit.png | Bin 0 -> 2248 bytes mostrami/resources/icon/folder.png | Bin 0 -> 1064 bytes mostrami/resources/icon/gear.png | Bin 0 -> 13247 bytes mostrami/resources/icon/heart.png | Bin 0 -> 13041 bytes mostrami/resources/icon/image.png | Bin 0 -> 2798 bytes mostrami/resources/icon/left.png | Bin 0 -> 3947 bytes mostrami/resources/icon/list.png | Bin 0 -> 1076 bytes mostrami/resources/icon/media.png | Bin 0 -> 2983 bytes mostrami/resources/icon/new.png | Bin 0 -> 1705 bytes mostrami/resources/icon/open.png | Bin 0 -> 1792 bytes mostrami/resources/icon/reference.png | Bin 0 -> 12430 bytes mostrami/resources/icon/right.png | Bin 0 -> 4031 bytes mostrami/resources/icon/run.png | Bin 0 -> 3937 bytes mostrami/resources/icon/runstop.png | Bin 0 -> 3761 bytes mostrami/resources/icon/save.png | Bin 0 -> 1794 bytes mostrami/resources/icon/stop.png | Bin 0 -> 1832 bytes mostrami/resources/icon/teacher.png | Bin 0 -> 7323 bytes mostrami/resources/icon/tools.png | Bin 0 -> 13026 bytes mostrami/resources/icon/trash.png | Bin 0 -> 2224 bytes mostrami/resources/icon/unknown.png | Bin 0 -> 1594 bytes mostrami/resources/icon/up.png | Bin 0 -> 4056 bytes mostrami/resources/img/flowers.jpg | Bin 0 -> 75832 bytes mostrami/resources/img/moon.jpg | Bin 0 -> 65626 bytes mostrami/resources/json/demo.json | 255 +++++++ mostrami/resources/json/test.json | 263 +++++++ mostrami/resources/plugins/test.js | 32 + mostrami/resources/properties.txt | 1 + mostrami/rest.php | 546 +++++++++++++++ mostrami/scripted.html | 24 + 55 files changed, 3334 insertions(+) create mode 100644 mostrami/demo.html create mode 100644 mostrami/favicon.gif create mode 100644 mostrami/favicon.ico create mode 100644 mostrami/index.html create mode 100644 mostrami/jsonPresenter.js create mode 100644 mostrami/properties.txt create mode 100644 mostrami/resources/README.md create mode 100644 mostrami/resources/ecs/blocks.txt create mode 100644 mostrami/resources/ecs/container.txt create mode 100644 mostrami/resources/ecs/content.txt create mode 100644 mostrami/resources/ecs/defaults.txt create mode 100644 mostrami/resources/ecs/globals.txt create mode 100644 mostrami/resources/ecs/presenter.txt create mode 100644 mostrami/resources/ecs/scripted.ecs create mode 100644 mostrami/resources/ecs/scripted.txt create mode 100644 mostrami/resources/ecs/steps.txt create mode 100644 mostrami/resources/icon/apple.png create mode 100644 mostrami/resources/icon/arrow-back.png create mode 100644 mostrami/resources/icon/arrow-forward.png create mode 100644 mostrami/resources/icon/binoculars.png create mode 100644 mostrami/resources/icon/book.png create mode 100644 mostrami/resources/icon/cycle.png create mode 100644 mostrami/resources/icon/document.png create mode 100644 mostrami/resources/icon/down.png create mode 100644 mostrami/resources/icon/duckthink.jpg create mode 100644 mostrami/resources/icon/edit.png create mode 100644 mostrami/resources/icon/exit.png create mode 100644 mostrami/resources/icon/folder.png create mode 100644 mostrami/resources/icon/gear.png create mode 100644 mostrami/resources/icon/heart.png create mode 100644 mostrami/resources/icon/image.png create mode 100644 mostrami/resources/icon/left.png create mode 100644 mostrami/resources/icon/list.png create mode 100644 mostrami/resources/icon/media.png create mode 100644 mostrami/resources/icon/new.png create mode 100644 mostrami/resources/icon/open.png create mode 100644 mostrami/resources/icon/reference.png create mode 100644 mostrami/resources/icon/right.png create mode 100644 mostrami/resources/icon/run.png create mode 100644 mostrami/resources/icon/runstop.png create mode 100644 mostrami/resources/icon/save.png create mode 100644 mostrami/resources/icon/stop.png create mode 100644 mostrami/resources/icon/teacher.png create mode 100644 mostrami/resources/icon/tools.png create mode 100644 mostrami/resources/icon/trash.png create mode 100644 mostrami/resources/icon/unknown.png create mode 100644 mostrami/resources/icon/up.png create mode 100644 mostrami/resources/img/flowers.jpg create mode 100644 mostrami/resources/img/moon.jpg create mode 100644 mostrami/resources/json/demo.json create mode 100644 mostrami/resources/json/test.json create mode 100644 mostrami/resources/plugins/test.js create mode 100644 mostrami/resources/properties.txt create mode 100644 mostrami/rest.php create mode 100644 mostrami/scripted.html diff --git a/mostrami/demo.html b/mostrami/demo.html new file mode 100644 index 0000000..a190144 --- /dev/null +++ b/mostrami/demo.html @@ -0,0 +1,20 @@ + + + + + + + + +
+ JSON::Presenter
+ Click/Tap or key Space/RightArrow to start in manual mode
+ Click/Tap or key Space/RightArrow to advance
+ Key Enter to start in auto mode
+ Click/Tap to exit auto mode +
+ + + + + diff --git a/mostrami/favicon.gif b/mostrami/favicon.gif new file mode 100644 index 0000000..e69de29 diff --git a/mostrami/favicon.ico b/mostrami/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..ed89efe3c13a104c3f35d2154cb6c0fedb66df07 GIT binary patch literal 2238 zcmdT^`Bzg{9{*rSG!ZCEl(Ys&*(5|8XcSNkn1Hf_3d9A2s1R*X1W6zu1xX>XEGA+o zJPnJD7BFf83YKDxKm|>yiqjTHZ98+OXY6VHVP?+!JZElTdYu1Y&V1gv_q}&N%l+Q_ z7Ql@hJRV5D0)s1n)c_($BSY9qnrnO!?n|e|-fii6B_{*{nl|j&nG8l~2t>vncpO;( zE9C}Iw*c(8hl*@ImQDPG{Ms`>(J)eqOX0TvHfY&OT%CIchU_7r9t31HD9=v-d+6^# z_jBBGzQDS{Nq8h{vHNHV{BnvxJNOv9u_y4jcP`w-&JGJ`iF<*z8}Lr- z$1>XjwiX-%OLqfJRh59|M=ZbfEf|{b;1LoDMoACg_zQeXU!XW|8xB`jLzN!`M!_t6 z`CCwz69eIv6liM8a7K9ub*6qW2j?*Q^f%~KB|z&a+^@fYtg;?wJI>+M!Bm7rZvt)n zX9%lXK|Om7nwJl*Ie!3po!|sVqvcZ@_;MB5m&*tW5g_yVKjCh90%rOr;Awt>vaucO z)3Y(;cnr_t=QwA-3wE9!wT(^4e)t25W$~a##$nZo1+45CN3wyeVc%oq7L{V)>CfOL z<-^zU5~0C-)MzS^QIH4sz$i3#T!H3L7L4Ejg5;7StUf^YL;DmQ?z;f>C8l1!LZt4m zFn63s+3pyW=1Wob@*kkB&w$%r6;@PtL9_50mWAJdf$xyDGYxg>QZ%ZLV&AjB!7G3Z zq&kpvEarfzMw+S5pR#X` zIF=R+Y%2n-;*X$(y$A2sA<&JJsLl#Q-?e-2wEv3M#?!#YOgMl11;$H5F!YYVcS}2# zA9)0ZgnTRir|^6G^5gmWdF}8DA0MBhqK*!kj2^WFI)U8JZ_nkhdB*Sjl7J}WQBgAa zkbHW|&#&w4Foss^^7|BVI~Eh@GGdkQid?t)>nXpk_jWSohnECgB9JXYzU$;r&=o;X z$eF+!HCL}OhKGkY_-xp~<&pyE^e6Jjd*x!hdt^z^!WWvh~lbvfJp4|%W8s)@bXc|9wk&^*(8 z&xNwp5AF7DyIoN0@9l3L{5UK2=H_pXCnT87X=yv^>Jk&X6A8L?Ri{$@t=1z`=GffM zjLiEpF5V>|itz4k`=#xvsaC5su1D}$?&gf$HE;ZjH0$&!Z*Qx0&NL8kICt}d_9++d za)%3acDr48zRI7ZSIn8>H18VUd35o5#NzZkSF}#2n>b%;^|w}3%<<#$1W5V3{o?Ka z;#sVT;?FRebkI6SDHLC>G1A)e*OgaIX^qXV(Aa}JZkQRrtp@nEglyjY%ni5H}wSU;K+TR~{kox-mhAFM4jkCC+# zze^x2{;FhjAZcK(Ug0o(dc5Xn`^LiZu^l{8KjDc$cf4d^ASr)4;T2SqTlL1b%1MDP zeo-J4h95nV?OB>dQT6<@o0{D2mlOXRo@H+na6XD?6Y3kzip6mk-oG93h9~=@V+n=H zEMc3Fq8jv+li$1dZiKnq<#!dZ2tt!G6cj}{oldHuVe1#<0k{O=zw;!0&Dpy7%nD;GC#- I|MhR{- + + + + + + + + + +