mm_os 1.3.4 → 1.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (368) hide show
  1. package/README.en.md +36 -0
  2. package/README.md +25 -166
  3. package/conf.json +3 -0
  4. package/core/base/index.js +29 -0
  5. package/core/base/mqtt/index.js +268 -0
  6. package/core/base/mqtt/lib.js +40 -0
  7. package/core/base/web/index.js +110 -0
  8. package/core/com/api/com.json +4 -0
  9. package/{bin → core}/com/api/config.tpl.json +9 -7
  10. package/{bin → core}/com/api/drive.js +239 -64
  11. package/{bin → core}/com/api/index.js +8 -9
  12. package/{bin → core}/com/api/oauth.js +23 -14
  13. package/core/com/api/script.js +32 -0
  14. package/core/com/db/com.json +4 -0
  15. package/{bin → core}/com/db/drive.js +99 -65
  16. package/{bin → core}/com/db/index.js +2 -2
  17. package/core/com/event/com.json +4 -0
  18. package/{bin → core}/com/event/config.tpl.json +2 -2
  19. package/core/com/event/drive.js +125 -0
  20. package/{bin → core}/com/event/index.js +5 -10
  21. package/core/com/event/script.js +26 -0
  22. package/core/com/eventer/com.js +450 -0
  23. package/core/com/eventer/com.json +4 -0
  24. package/core/com/middleware/com.js +128 -0
  25. package/core/com/middleware/com.json +4 -0
  26. package/core/com/middleware/config.tpl.json +8 -0
  27. package/core/com/middleware/script.js +9 -0
  28. package/core/com/mqtt/com.json +4 -0
  29. package/core/com/mqtt/config.tpl.json +12 -0
  30. package/core/com/mqtt/drive.js +139 -0
  31. package/core/com/mqtt/index.js +138 -0
  32. package/core/com/mqtt/script.js +33 -0
  33. package/core/com/msg/com.js +296 -0
  34. package/core/com/msg/com.json +4 -0
  35. package/{bin → core}/com/nav/drive.js +42 -17
  36. package/{bin → core}/com/nav/index.js +4 -4
  37. package/core/com/nav/tpl/admin_pc/page_channel.vue +299 -0
  38. package/core/com/nav/tpl/admin_pc/page_config.vue +279 -0
  39. package/core/com/nav/tpl/admin_pc/page_config_form.vue +194 -0
  40. package/core/com/nav/tpl/admin_pc/page_default.vue +287 -0
  41. package/core/com/nav/tpl/admin_pc/page_form.vue +180 -0
  42. package/core/com/nav/tpl/admin_pc/page_lang.vue +265 -0
  43. package/core/com/nav/tpl/admin_pc/page_nav.vue +313 -0
  44. package/core/com/nav/tpl/admin_pc/page_table.vue +285 -0
  45. package/core/com/nav/tpl/admin_pc/page_type.vue +313 -0
  46. package/core/com/nav/tpl/dev_pc/page_channel.vue +253 -0
  47. package/core/com/nav/tpl/dev_pc/page_config.vue +253 -0
  48. package/core/com/nav/tpl/dev_pc/page_default.vue +247 -0
  49. package/core/com/nav/tpl/dev_pc/page_form.vue +162 -0
  50. package/core/com/nav/tpl/dev_pc/page_nav.vue +253 -0
  51. package/core/com/nav/tpl/dev_pc/page_table.vue +247 -0
  52. package/core/com/nav/tpl/dev_pc/page_type.vue +253 -0
  53. package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_channel.vue +231 -231
  54. package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_default.vue +231 -231
  55. package/{bin → core}/com/nav/tpl/home_pc/page_form.vue +9 -9
  56. package/{bin → core}/com/nav/tpl/home_pc/page_list.vue +231 -231
  57. package/{bin → core}/com/nav/tpl/home_pc/page_nav.vue +221 -221
  58. package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_type.vue +231 -231
  59. package/{bin → core}/com/nav/tpl/home_pc/page_view.vue +8 -8
  60. package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_channel.vue +231 -231
  61. package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_default.vue +231 -231
  62. package/{bin → core}/com/nav/tpl/home_phone/page_form.vue +9 -9
  63. package/{bin → core}/com/nav/tpl/home_phone/page_list.vue +231 -231
  64. package/{bin/com/nav/tpl/admin_pc → core/com/nav/tpl/home_phone}/page_nav.vue +236 -220
  65. package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_type.vue +231 -231
  66. package/{bin → core}/com/nav/tpl/home_phone/page_view.vue +8 -8
  67. package/core/com/nav/viewmodel.js +296 -0
  68. package/{bin → core}/com/param/config.tpl.json +24 -0
  69. package/{bin → core}/com/param/drive.js +47 -15
  70. package/core/com/plugin/com.json +4 -0
  71. package/core/com/plugin/config.tpl.json +20 -0
  72. package/{bin → core}/com/plugin/drive.js +5 -8
  73. package/{bin → core}/com/plugin/index.js +11 -56
  74. package/core/com/socket/README.md +47 -0
  75. package/core/com/socket/com.json +4 -0
  76. package/core/com/socket/config.tpl.json +14 -0
  77. package/{bin → core}/com/socket/drive.js +74 -51
  78. package/{bin → core}/com/socket/index.js +4 -2
  79. package/{bin → core}/com/socket/script.js +8 -6
  80. package/core/com/sql/config.tpl.json +70 -0
  81. package/{bin → core}/com/sql/drive.js +281 -58
  82. package/core/com/static/com.json +4 -0
  83. package/core/com/static/config.tpl.json +20 -0
  84. package/{bin → core}/com/static/drive.js +6 -4
  85. package/{bin → core}/com/static/index.js +5 -1
  86. package/core/com/task/com.json +4 -0
  87. package/core/com/task/config.tpl.json +24 -0
  88. package/core/com/task/drive.js +374 -0
  89. package/{bin → core}/com/task/index.js +14 -20
  90. package/core/com/task/script.js +37 -0
  91. package/core/com/timer/com.js +217 -0
  92. package/core/com/timer/com.json +4 -0
  93. package/core/com/tpl/com.js +19 -0
  94. package/core/com/tpl/com.json +4 -0
  95. package/index.js +161 -740
  96. package/lib/actions.js +50 -0
  97. package/lib/app.js +73 -0
  98. package/lib/base.js +355 -0
  99. package/lib/com.js +31 -0
  100. package/lib/game.js +31 -0
  101. package/lib/ref.js +121 -0
  102. package/middleware/cors/index.js +57 -0
  103. package/middleware/cors/middleware.json +7 -0
  104. package/middleware/mqtt_base/index.js +10 -0
  105. package/middleware/mqtt_base/middleware.json +8 -0
  106. package/{waf.js → middleware/waf/index.js} +12 -2
  107. package/middleware/waf/middleware.json +9 -0
  108. package/middleware/web_base/index.js +67 -0
  109. package/middleware/web_base/middleware.json +9 -0
  110. package/middleware/web_event/index.js +411 -0
  111. package/middleware/web_event/middleware.json +10 -0
  112. package/middleware/web_proxy/index.js +24 -0
  113. package/middleware/web_proxy/middleware.json +9 -0
  114. package/middleware/web_router/index.js +33 -0
  115. package/middleware/web_router/middleware.json +10 -0
  116. package/middleware/web_socket/index.js +21 -0
  117. package/middleware/web_socket/middleware.json +9 -0
  118. package/middleware/web_static/index.js +26 -0
  119. package/middleware/web_static/middleware.json +9 -0
  120. package/nodemon.json +12 -2
  121. package/package.json +56 -66
  122. package/.gitattributes +0 -5
  123. package/bin/com/README.md +0 -2
  124. package/bin/com/api/script.js +0 -14
  125. package/bin/com/cmd/README.md +0 -3
  126. package/bin/com/cmd/config.tpl.json +0 -41
  127. package/bin/com/cmd/drive.js +0 -512
  128. package/bin/com/cmd/index.js +0 -213
  129. package/bin/com/cmd/old/5w2h.js +0 -54
  130. package/bin/com/cmd/old/drive.js +0 -423
  131. package/bin/com/cmd/script.js +0 -11
  132. package/bin/com/event/drive.js +0 -69
  133. package/bin/com/event/script.js +0 -12
  134. package/bin/com/nav/tpl/admin_pc/page_channel.vue +0 -234
  135. package/bin/com/nav/tpl/admin_pc/page_default.vue +0 -236
  136. package/bin/com/nav/tpl/admin_pc/page_form.vue +0 -152
  137. package/bin/com/nav/tpl/admin_pc/page_table.vue +0 -236
  138. package/bin/com/nav/tpl/admin_pc/page_type.vue +0 -234
  139. package/bin/com/nav/tpl/home_phone/page_nav.vue +0 -221
  140. package/bin/com/nav/viewmodel.js +0 -161
  141. package/bin/com/plugin/config.tpl.json +0 -11
  142. package/bin/com/socket/config.tpl.json +0 -8
  143. package/bin/com/sql/config.tpl.json +0 -34
  144. package/bin/com/static/config.tpl.json +0 -11
  145. package/bin/com/task/config.tpl.json +0 -13
  146. package/bin/com/task/drive.js +0 -288
  147. package/bin/com/task/script.js +0 -38
  148. package/bin/com.js +0 -74
  149. package/bin/mm.conf +0 -48
  150. package/bin/static/404.html +0 -52
  151. package/bin/static/README.md +0 -1
  152. package/bin/static/css/font-awesome.min.css +0 -7
  153. package/bin/static/css/mm_base.css +0 -220
  154. package/bin/static/css/mm_common.css +0 -518
  155. package/bin/static/css/mm_component.css +0 -307
  156. package/bin/static/css/mm_expand.css +0 -634
  157. package/bin/static/css/mm_theme.css +0 -291
  158. package/bin/static/css/new_file.css +0 -79
  159. package/bin/static/css/swiper.min.css +0 -12
  160. package/bin/static/favicon.ico +0 -0
  161. package/bin/static/font/FontAwesome.otf +0 -0
  162. package/bin/static/font/HelveticaNeue.eot +0 -0
  163. package/bin/static/font/HelveticaNeue.otf +0 -0
  164. package/bin/static/font/HelveticaNeue.svg +0 -1273
  165. package/bin/static/font/HelveticaNeue.woff +0 -0
  166. package/bin/static/font/HelveticaNeue.woff2 +0 -0
  167. package/bin/static/font/fontawesome-webfont.eot +0 -0
  168. package/bin/static/font/fontawesome-webfont.svg +0 -2671
  169. package/bin/static/font/fontawesome-webfont.ttf +0 -0
  170. package/bin/static/font/fontawesome-webfont.woff +0 -0
  171. package/bin/static/font/fontawesome-webfont.woff2 +0 -0
  172. package/bin/static/h5.html +0 -325
  173. package/bin/static/highlight/highlight.pack.js +0 -2
  174. package/bin/static/highlight/styles/a11y-dark.css +0 -99
  175. package/bin/static/highlight/styles/a11y-light.css +0 -99
  176. package/bin/static/highlight/styles/agate.css +0 -108
  177. package/bin/static/highlight/styles/an-old-hope.css +0 -89
  178. package/bin/static/highlight/styles/androidstudio.css +0 -66
  179. package/bin/static/highlight/styles/arduino-light.css +0 -88
  180. package/bin/static/highlight/styles/arta.css +0 -73
  181. package/bin/static/highlight/styles/ascetic.css +0 -45
  182. package/bin/static/highlight/styles/atelier-cave-dark.css +0 -83
  183. package/bin/static/highlight/styles/atelier-cave-light.css +0 -85
  184. package/bin/static/highlight/styles/atelier-dune-dark.css +0 -69
  185. package/bin/static/highlight/styles/atelier-dune-light.css +0 -69
  186. package/bin/static/highlight/styles/atelier-estuary-dark.css +0 -84
  187. package/bin/static/highlight/styles/atelier-estuary-light.css +0 -84
  188. package/bin/static/highlight/styles/atelier-forest-dark.css +0 -69
  189. package/bin/static/highlight/styles/atelier-forest-light.css +0 -69
  190. package/bin/static/highlight/styles/atelier-heath-dark.css +0 -69
  191. package/bin/static/highlight/styles/atelier-heath-light.css +0 -69
  192. package/bin/static/highlight/styles/atelier-lakeside-dark.css +0 -69
  193. package/bin/static/highlight/styles/atelier-lakeside-light.css +0 -69
  194. package/bin/static/highlight/styles/atelier-plateau-dark.css +0 -84
  195. package/bin/static/highlight/styles/atelier-plateau-light.css +0 -84
  196. package/bin/static/highlight/styles/atelier-savanna-dark.css +0 -84
  197. package/bin/static/highlight/styles/atelier-savanna-light.css +0 -84
  198. package/bin/static/highlight/styles/atelier-seaside-dark.css +0 -69
  199. package/bin/static/highlight/styles/atelier-seaside-light.css +0 -69
  200. package/bin/static/highlight/styles/atelier-sulphurpool-dark.css +0 -69
  201. package/bin/static/highlight/styles/atelier-sulphurpool-light.css +0 -69
  202. package/bin/static/highlight/styles/atom-one-dark-reasonable.css +0 -77
  203. package/bin/static/highlight/styles/atom-one-dark.css +0 -96
  204. package/bin/static/highlight/styles/atom-one-light.css +0 -96
  205. package/bin/static/highlight/styles/brown-paper.css +0 -64
  206. package/bin/static/highlight/styles/brown-papersq.png +0 -0
  207. package/bin/static/highlight/styles/codepen-embed.css +0 -60
  208. package/bin/static/highlight/styles/color-brewer.css +0 -71
  209. package/bin/static/highlight/styles/darcula.css +0 -77
  210. package/bin/static/highlight/styles/dark.css +0 -63
  211. package/bin/static/highlight/styles/darkula.css +0 -6
  212. package/bin/static/highlight/styles/default.css +0 -99
  213. package/bin/static/highlight/styles/docco.css +0 -97
  214. package/bin/static/highlight/styles/dracula.css +0 -76
  215. package/bin/static/highlight/styles/far.css +0 -71
  216. package/bin/static/highlight/styles/foundation.css +0 -88
  217. package/bin/static/highlight/styles/github-gist.css +0 -79
  218. package/bin/static/highlight/styles/github.css +0 -99
  219. package/bin/static/highlight/styles/gml.css +0 -78
  220. package/bin/static/highlight/styles/googlecode.css +0 -89
  221. package/bin/static/highlight/styles/grayscale.css +0 -101
  222. package/bin/static/highlight/styles/gruvbox-dark.css +0 -108
  223. package/bin/static/highlight/styles/gruvbox-light.css +0 -108
  224. package/bin/static/highlight/styles/hopscotch.css +0 -83
  225. package/bin/static/highlight/styles/hybrid.css +0 -102
  226. package/bin/static/highlight/styles/idea.css +0 -97
  227. package/bin/static/highlight/styles/ir-black.css +0 -73
  228. package/bin/static/highlight/styles/isbl-editor-dark.css +0 -112
  229. package/bin/static/highlight/styles/isbl-editor-light.css +0 -112
  230. package/bin/static/highlight/styles/kimbie.dark.css +0 -74
  231. package/bin/static/highlight/styles/kimbie.light.css +0 -74
  232. package/bin/static/highlight/styles/lightfair.css +0 -87
  233. package/bin/static/highlight/styles/magula.css +0 -70
  234. package/bin/static/highlight/styles/mono-blue.css +0 -59
  235. package/bin/static/highlight/styles/monokai-sublime.css +0 -83
  236. package/bin/static/highlight/styles/monokai.css +0 -70
  237. package/bin/static/highlight/styles/nord.css +0 -309
  238. package/bin/static/highlight/styles/obsidian.css +0 -88
  239. package/bin/static/highlight/styles/ocean.css +0 -74
  240. package/bin/static/highlight/styles/paraiso-dark.css +0 -72
  241. package/bin/static/highlight/styles/paraiso-light.css +0 -72
  242. package/bin/static/highlight/styles/pojoaque.css +0 -83
  243. package/bin/static/highlight/styles/pojoaque.jpg +0 -0
  244. package/bin/static/highlight/styles/purebasic.css +0 -96
  245. package/bin/static/highlight/styles/qtcreator_dark.css +0 -83
  246. package/bin/static/highlight/styles/qtcreator_light.css +0 -83
  247. package/bin/static/highlight/styles/railscasts.css +0 -106
  248. package/bin/static/highlight/styles/rainbow.css +0 -85
  249. package/bin/static/highlight/styles/routeros.css +0 -108
  250. package/bin/static/highlight/styles/school-book.css +0 -69
  251. package/bin/static/highlight/styles/school-book.png +0 -0
  252. package/bin/static/highlight/styles/shades-of-purple.css +0 -97
  253. package/bin/static/highlight/styles/solarized-dark.css +0 -84
  254. package/bin/static/highlight/styles/solarized-light.css +0 -84
  255. package/bin/static/highlight/styles/sunburst.css +0 -102
  256. package/bin/static/highlight/styles/tomorrow-night-blue.css +0 -75
  257. package/bin/static/highlight/styles/tomorrow-night-bright.css +0 -74
  258. package/bin/static/highlight/styles/tomorrow-night-eighties.css +0 -74
  259. package/bin/static/highlight/styles/tomorrow-night.css +0 -75
  260. package/bin/static/highlight/styles/tomorrow.css +0 -72
  261. package/bin/static/highlight/styles/vs.css +0 -68
  262. package/bin/static/highlight/styles/vs2015.css +0 -115
  263. package/bin/static/highlight/styles/xcode.css +0 -104
  264. package/bin/static/highlight/styles/xt256.css +0 -92
  265. package/bin/static/highlight/styles/zenburn.css +0 -80
  266. package/bin/static/highlight/vue-highlight.js +0 -29
  267. package/bin/static/ifame.html +0 -24
  268. package/bin/static/img/add.png +0 -0
  269. package/bin/static/img/avatar.png +0 -0
  270. package/bin/static/img/banner_2.png +0 -0
  271. package/bin/static/img/default.png +0 -0
  272. package/bin/static/img/loading.svg +0 -1
  273. package/bin/static/img/logo.png +0 -0
  274. package/bin/static/img/logo1.png +0 -0
  275. package/bin/static/img/logo_gray.png +0 -0
  276. package/bin/static/img/logo_round.png +0 -0
  277. package/bin/static/img/mm.ico +0 -0
  278. package/bin/static/img/mm.jpg +0 -0
  279. package/bin/static/img/select.png +0 -0
  280. package/bin/static/img/web.png +0 -0
  281. package/bin/static/index.html +0 -12
  282. package/bin/static/js/clipboard.min.js +0 -257
  283. package/bin/static/js/css.min.js +0 -1
  284. package/bin/static/js/echarts.js +0 -22
  285. package/bin/static/js/html5.min.js +0 -1
  286. package/bin/static/js/jquery.lazyload.min.js +0 -2
  287. package/bin/static/js/jquery.min.js +0 -4189
  288. package/bin/static/js/jquery.scrollstop.min.js +0 -2
  289. package/bin/static/js/mm-requirejs-vue.js +0 -283
  290. package/bin/static/js/mm_check.js +0 -490
  291. package/bin/static/js/mm_flexble.js +0 -112
  292. package/bin/static/js/mm_picker.js +0 -1417
  293. package/bin/static/js/mm_pinyinlite.js +0 -873
  294. package/bin/static/js/mm_sdk.js +0 -2841
  295. package/bin/static/js/mm_ui_expand.js +0 -468
  296. package/bin/static/js/mm_vue.js +0 -376
  297. package/bin/static/js/mm_vue_ui.js +0 -2375
  298. package/bin/static/js/mm_websocket.js +0 -145
  299. package/bin/static/js/require.js +0 -5
  300. package/bin/static/js/sortable.min.js +0 -3
  301. package/bin/static/js/swiper.min.js +0 -13
  302. package/bin/static/js/text.min.js +0 -1
  303. package/bin/static/js/vue-router.min.js +0 -6
  304. package/bin/static/js/vue.js +0 -12338
  305. package/bin/static/js/vuedraggable.min.js +0 -2
  306. package/bin/static/js/vuex.min.js +0 -6
  307. package/bin/static/src/components/bar/mm_action.vue +0 -19
  308. package/bin/static/src/components/bar/mm_buy.vue +0 -19
  309. package/bin/static/src/components/bar/mm_chat.vue +0 -18
  310. package/bin/static/src/components/bar/mm_count.vue +0 -18
  311. package/bin/static/src/components/bar/mm_filter.vue +0 -18
  312. package/bin/static/src/components/bar/mm_search.vue +0 -18
  313. package/bin/static/src/components/bar/mm_sort.vue +0 -18
  314. package/bin/static/src/components/bar/mm_tag.vue +0 -18
  315. package/bin/static/src/components/bar/mm_title.vue +0 -19
  316. package/bin/static/src/components/content/mm_pre.vue +0 -70
  317. package/bin/static/src/components/expand/mm_drag.vue +0 -39
  318. package/bin/static/src/components/item/mm_article.vue +0 -115
  319. package/bin/static/src/components/item/mm_base.vue +0 -26
  320. package/bin/static/src/components/item/mm_contact.vue +0 -25
  321. package/bin/static/src/components/item/mm_goods.vue +0 -23
  322. package/bin/static/src/components/item/mm_img.vue +0 -21
  323. package/bin/static/src/components/item/mm_media.vue +0 -18
  324. package/bin/static/src/components/item/mm_message.vue +0 -18
  325. package/bin/static/src/components/item/mm_music.vue +0 -95
  326. package/bin/static/src/components/item/mm_news.vue +0 -22
  327. package/bin/static/src/components/item/mm_number.vue +0 -26
  328. package/bin/static/src/components/item/mm_question.vue +0 -35
  329. package/bin/static/src/components/item/mm_user.vue +0 -22
  330. package/bin/static/src/components/item/mm_video.vue +0 -95
  331. package/bin/static/src/components/slide/mm_slide_card.vue +0 -64
  332. package/bin/static/src/components/slide/mm_slide_img.vue +0 -47
  333. package/bin/static/src/components/slide/mm_slide_page.vue +0 -8
  334. package/bin/static/src/components/slide/mm_slide_text.vue +0 -54
  335. package/bin/static/src/main.js +0 -84
  336. package/bin/static/src/mixins/form.js +0 -223
  337. package/bin/static/src/mixins/item.js +0 -242
  338. package/bin/static/src/mixins/list.js +0 -244
  339. package/bin/static/src/mixins/page.js +0 -1011
  340. package/bin/static/src/mm_component.js +0 -74
  341. package/bin/static/src/router.js +0 -72
  342. package/bin/static/src/store/user.js +0 -75
  343. package/bin/static/src/store/web.js +0 -50
  344. package/bin/static/user/1/number_info.xlsx +0 -0
  345. package/bin/static/w3c.html +0 -94
  346. package/init.js +0 -55
  347. package/update.md +0 -1
  348. /package/{bin → core}/com/api/README.md +0 -0
  349. /package/{bin → core}/com/api/rpc.js +0 -0
  350. /package/{bin → core}/com/db/README.md +0 -0
  351. /package/{bin → core}/com/event/README.md +0 -0
  352. /package/{bin/com/socket → core/com/mqtt}/README.md +0 -0
  353. /package/{bin → core}/com/nav/README.md +0 -0
  354. /package/{bin → core}/com/nav/config.tpl.json +0 -0
  355. /package/{bin → core}/com/param/README.md +0 -0
  356. /package/{bin → core}/com/param/index.js +0 -0
  357. /package/{bin → core}/com/param/script.js +0 -0
  358. /package/{bin → core}/com/param/test.js +0 -0
  359. /package/{bin → core}/com/plugin/README.md +0 -0
  360. /package/{bin → core}/com/plugin/script.js +0 -0
  361. /package/{bin → core}/com/sql/README.md +0 -0
  362. /package/{bin → core}/com/sql/index.js +0 -0
  363. /package/{bin → core}/com/sql/script.js +0 -0
  364. /package/{bin → core}/com/static/README.md +0 -0
  365. /package/{bin → core}/com/static/script.js +0 -0
  366. /package/{bin → core}/com/task/README.md +0 -0
  367. /package/{bin/rps.bat → rps.bat} +0 -0
  368. /package/{bin/tps.bat → tps.bat} +0 -0
@@ -1,108 +0,0 @@
1
- /*!
2
- * Agate by Taufik Nurrohman <https://github.com/tovic>
3
- * ----------------------------------------------------
4
- *
5
- * #ade5fc
6
- * #a2fca2
7
- * #c6b4f0
8
- * #d36363
9
- * #fcc28c
10
- * #fc9b9b
11
- * #ffa
12
- * #fff
13
- * #333
14
- * #62c8f3
15
- * #888
16
- *
17
- */
18
-
19
- .hljs {
20
- display: block;
21
- overflow-x: auto;
22
- padding: 0.5em;
23
- background: #333;
24
- color: white;
25
- }
26
-
27
- .hljs-name,
28
- .hljs-strong {
29
- font-weight: bold;
30
- }
31
-
32
- .hljs-code,
33
- .hljs-emphasis {
34
- font-style: italic;
35
- }
36
-
37
- .hljs-tag {
38
- color: #62c8f3;
39
- }
40
-
41
- .hljs-variable,
42
- .hljs-template-variable,
43
- .hljs-selector-id,
44
- .hljs-selector-class {
45
- color: #ade5fc;
46
- }
47
-
48
- .hljs-string,
49
- .hljs-bullet {
50
- color: #a2fca2;
51
- }
52
-
53
- .hljs-type,
54
- .hljs-title,
55
- .hljs-section,
56
- .hljs-attribute,
57
- .hljs-quote,
58
- .hljs-built_in,
59
- .hljs-builtin-name {
60
- color: #ffa;
61
- }
62
-
63
- .hljs-number,
64
- .hljs-symbol,
65
- .hljs-bullet {
66
- color: #d36363;
67
- }
68
-
69
- .hljs-keyword,
70
- .hljs-selector-tag,
71
- .hljs-literal {
72
- color: #fcc28c;
73
- }
74
-
75
- .hljs-comment,
76
- .hljs-deletion,
77
- .hljs-code {
78
- color: #888;
79
- }
80
-
81
- .hljs-regexp,
82
- .hljs-link {
83
- color: #c6b4f0;
84
- }
85
-
86
- .hljs-meta {
87
- color: #fc9b9b;
88
- }
89
-
90
- .hljs-deletion {
91
- background-color: #fc9b9b;
92
- color: #333;
93
- }
94
-
95
- .hljs-addition {
96
- background-color: #a2fca2;
97
- color: #333;
98
- }
99
-
100
- .hljs a {
101
- color: inherit;
102
- }
103
-
104
- .hljs a:focus,
105
- .hljs a:hover {
106
- color: inherit;
107
- text-decoration: underline;
108
- }
@@ -1,89 +0,0 @@
1
- /*
2
-
3
- An Old Hope – Star Wars Syntax (c) Gustavo Costa <gusbemacbe@gmail.com>
4
- Original theme - Ocean Dark Theme – by https://github.com/gavsiu
5
- Based on Jesse Leite's Atom syntax theme 'An Old Hope' – https://github.com/JesseLeite/an-old-hope-syntax-atom
6
-
7
- */
8
-
9
- /* Death Star Comment */
10
- .hljs-comment,
11
- .hljs-quote
12
- {
13
- color: #B6B18B;
14
- }
15
-
16
- /* Darth Vader */
17
- .hljs-variable,
18
- .hljs-template-variable,
19
- .hljs-tag,
20
- .hljs-name,
21
- .hljs-selector-id,
22
- .hljs-selector-class,
23
- .hljs-regexp,
24
- .hljs-deletion
25
- {
26
- color: #EB3C54;
27
- }
28
-
29
- /* Threepio */
30
- .hljs-number,
31
- .hljs-built_in,
32
- .hljs-builtin-name,
33
- .hljs-literal,
34
- .hljs-type,
35
- .hljs-params,
36
- .hljs-meta,
37
- .hljs-link
38
- {
39
- color: #E7CE56;
40
- }
41
-
42
- /* Luke Skywalker */
43
- .hljs-attribute
44
- {
45
- color: #EE7C2B;
46
- }
47
-
48
- /* Obi Wan Kenobi */
49
- .hljs-string,
50
- .hljs-symbol,
51
- .hljs-bullet,
52
- .hljs-addition
53
- {
54
- color: #4FB4D7;
55
- }
56
-
57
- /* Yoda */
58
- .hljs-title,
59
- .hljs-section
60
- {
61
- color: #78BB65;
62
- }
63
-
64
- /* Mace Windu */
65
- .hljs-keyword,
66
- .hljs-selector-tag
67
- {
68
- color: #B45EA4;
69
- }
70
-
71
- /* Millenium Falcon */
72
- .hljs
73
- {
74
- display: block;
75
- overflow-x: auto;
76
- background: #1C1D21;
77
- color: #c0c5ce;
78
- padding: 0.5em;
79
- }
80
-
81
- .hljs-emphasis
82
- {
83
- font-style: italic;
84
- }
85
-
86
- .hljs-strong
87
- {
88
- font-weight: bold;
89
- }
@@ -1,66 +0,0 @@
1
- /*
2
- Date: 24 Fev 2015
3
- Author: Pedro Oliveira <kanytu@gmail . com>
4
- */
5
-
6
- .hljs {
7
- color: #a9b7c6;
8
- background: #282b2e;
9
- display: block;
10
- overflow-x: auto;
11
- padding: 0.5em;
12
- }
13
-
14
- .hljs-number,
15
- .hljs-literal,
16
- .hljs-symbol,
17
- .hljs-bullet {
18
- color: #6897BB;
19
- }
20
-
21
- .hljs-keyword,
22
- .hljs-selector-tag,
23
- .hljs-deletion {
24
- color: #cc7832;
25
- }
26
-
27
- .hljs-variable,
28
- .hljs-template-variable,
29
- .hljs-link {
30
- color: #629755;
31
- }
32
-
33
- .hljs-comment,
34
- .hljs-quote {
35
- color: #808080;
36
- }
37
-
38
- .hljs-meta {
39
- color: #bbb529;
40
- }
41
-
42
- .hljs-string,
43
- .hljs-attribute,
44
- .hljs-addition {
45
- color: #6A8759;
46
- }
47
-
48
- .hljs-section,
49
- .hljs-title,
50
- .hljs-type {
51
- color: #ffc66d;
52
- }
53
-
54
- .hljs-name,
55
- .hljs-selector-id,
56
- .hljs-selector-class {
57
- color: #e8bf6a;
58
- }
59
-
60
- .hljs-emphasis {
61
- font-style: italic;
62
- }
63
-
64
- .hljs-strong {
65
- font-weight: bold;
66
- }
@@ -1,88 +0,0 @@
1
- /*
2
-
3
- Arduino® Light Theme - Stefania Mellai <s.mellai@arduino.cc>
4
-
5
- */
6
-
7
- .hljs {
8
- display: block;
9
- overflow-x: auto;
10
- padding: 0.5em;
11
- background: #FFFFFF;
12
- }
13
-
14
- .hljs,
15
- .hljs-subst {
16
- color: #434f54;
17
- }
18
-
19
- .hljs-keyword,
20
- .hljs-attribute,
21
- .hljs-selector-tag,
22
- .hljs-doctag,
23
- .hljs-name {
24
- color: #00979D;
25
- }
26
-
27
- .hljs-built_in,
28
- .hljs-literal,
29
- .hljs-bullet,
30
- .hljs-code,
31
- .hljs-addition {
32
- color: #D35400;
33
- }
34
-
35
- .hljs-regexp,
36
- .hljs-symbol,
37
- .hljs-variable,
38
- .hljs-template-variable,
39
- .hljs-link,
40
- .hljs-selector-attr,
41
- .hljs-selector-pseudo {
42
- color: #00979D;
43
- }
44
-
45
- .hljs-type,
46
- .hljs-string,
47
- .hljs-selector-id,
48
- .hljs-selector-class,
49
- .hljs-quote,
50
- .hljs-template-tag,
51
- .hljs-deletion {
52
- color: #005C5F;
53
- }
54
-
55
- .hljs-title,
56
- .hljs-section {
57
- color: #880000;
58
- font-weight: bold;
59
- }
60
-
61
- .hljs-comment {
62
- color: rgba(149,165,166,.8);
63
- }
64
-
65
- .hljs-meta-keyword {
66
- color: #728E00;
67
- }
68
-
69
- .hljs-meta {
70
- color: #728E00;
71
- color: #434f54;
72
- }
73
-
74
- .hljs-emphasis {
75
- font-style: italic;
76
- }
77
-
78
- .hljs-strong {
79
- font-weight: bold;
80
- }
81
-
82
- .hljs-function {
83
- color: #728E00;
84
- }
85
-
86
- .hljs-number {
87
- color: #8A7B52;
88
- }
@@ -1,73 +0,0 @@
1
- /*
2
- Date: 17.V.2011
3
- Author: pumbur <pumbur@pumbur.net>
4
- */
5
-
6
- .hljs {
7
- display: block;
8
- overflow-x: auto;
9
- padding: 0.5em;
10
- background: #222;
11
- }
12
-
13
- .hljs,
14
- .hljs-subst {
15
- color: #aaa;
16
- }
17
-
18
- .hljs-section {
19
- color: #fff;
20
- }
21
-
22
- .hljs-comment,
23
- .hljs-quote,
24
- .hljs-meta {
25
- color: #444;
26
- }
27
-
28
- .hljs-string,
29
- .hljs-symbol,
30
- .hljs-bullet,
31
- .hljs-regexp {
32
- color: #ffcc33;
33
- }
34
-
35
- .hljs-number,
36
- .hljs-addition {
37
- color: #00cc66;
38
- }
39
-
40
- .hljs-built_in,
41
- .hljs-builtin-name,
42
- .hljs-literal,
43
- .hljs-type,
44
- .hljs-template-variable,
45
- .hljs-attribute,
46
- .hljs-link {
47
- color: #32aaee;
48
- }
49
-
50
- .hljs-keyword,
51
- .hljs-selector-tag,
52
- .hljs-name,
53
- .hljs-selector-id,
54
- .hljs-selector-class {
55
- color: #6644aa;
56
- }
57
-
58
- .hljs-title,
59
- .hljs-variable,
60
- .hljs-deletion,
61
- .hljs-template-tag {
62
- color: #bb1166;
63
- }
64
-
65
- .hljs-section,
66
- .hljs-doctag,
67
- .hljs-strong {
68
- font-weight: bold;
69
- }
70
-
71
- .hljs-emphasis {
72
- font-style: italic;
73
- }
@@ -1,45 +0,0 @@
1
- /*
2
-
3
- Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
4
-
5
- */
6
-
7
- .hljs {
8
- display: block;
9
- overflow-x: auto;
10
- padding: 0.5em;
11
- background: white;
12
- color: black;
13
- }
14
-
15
- .hljs-string,
16
- .hljs-variable,
17
- .hljs-template-variable,
18
- .hljs-symbol,
19
- .hljs-bullet,
20
- .hljs-section,
21
- .hljs-addition,
22
- .hljs-attribute,
23
- .hljs-link {
24
- color: #888;
25
- }
26
-
27
- .hljs-comment,
28
- .hljs-quote,
29
- .hljs-meta,
30
- .hljs-deletion {
31
- color: #ccc;
32
- }
33
-
34
- .hljs-keyword,
35
- .hljs-selector-tag,
36
- .hljs-section,
37
- .hljs-name,
38
- .hljs-type,
39
- .hljs-strong {
40
- font-weight: bold;
41
- }
42
-
43
- .hljs-emphasis {
44
- font-style: italic;
45
- }
@@ -1,83 +0,0 @@
1
- /* Base16 Atelier Cave Dark - Theme */
2
- /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */
3
- /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
-
5
- /* Atelier-Cave Comment */
6
- .hljs-comment,
7
- .hljs-quote {
8
- color: #7e7887;
9
- }
10
-
11
- /* Atelier-Cave Red */
12
- .hljs-variable,
13
- .hljs-template-variable,
14
- .hljs-attribute,
15
- .hljs-regexp,
16
- .hljs-link,
17
- .hljs-tag,
18
- .hljs-name,
19
- .hljs-selector-id,
20
- .hljs-selector-class {
21
- color: #be4678;
22
- }
23
-
24
- /* Atelier-Cave Orange */
25
- .hljs-number,
26
- .hljs-meta,
27
- .hljs-built_in,
28
- .hljs-builtin-name,
29
- .hljs-literal,
30
- .hljs-type,
31
- .hljs-params {
32
- color: #aa573c;
33
- }
34
-
35
- /* Atelier-Cave Green */
36
- .hljs-string,
37
- .hljs-symbol,
38
- .hljs-bullet {
39
- color: #2a9292;
40
- }
41
-
42
- /* Atelier-Cave Blue */
43
- .hljs-title,
44
- .hljs-section {
45
- color: #576ddb;
46
- }
47
-
48
- /* Atelier-Cave Purple */
49
- .hljs-keyword,
50
- .hljs-selector-tag {
51
- color: #955ae7;
52
- }
53
-
54
- .hljs-deletion,
55
- .hljs-addition {
56
- color: #19171c;
57
- display: inline-block;
58
- width: 100%;
59
- }
60
-
61
- .hljs-deletion {
62
- background-color: #be4678;
63
- }
64
-
65
- .hljs-addition {
66
- background-color: #2a9292;
67
- }
68
-
69
- .hljs {
70
- display: block;
71
- overflow-x: auto;
72
- background: #19171c;
73
- color: #8b8792;
74
- padding: 0.5em;
75
- }
76
-
77
- .hljs-emphasis {
78
- font-style: italic;
79
- }
80
-
81
- .hljs-strong {
82
- font-weight: bold;
83
- }
@@ -1,85 +0,0 @@
1
- /* Base16 Atelier Cave Light - Theme */
2
- /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/cave) */
3
- /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
-
5
- /* Atelier-Cave Comment */
6
- .hljs-comment,
7
- .hljs-quote {
8
- color: #655f6d;
9
- }
10
-
11
- /* Atelier-Cave Red */
12
- .hljs-variable,
13
- .hljs-template-variable,
14
- .hljs-attribute,
15
- .hljs-tag,
16
- .hljs-name,
17
- .hljs-regexp,
18
- .hljs-link,
19
- .hljs-name,
20
- .hljs-name,
21
- .hljs-selector-id,
22
- .hljs-selector-class {
23
- color: #be4678;
24
- }
25
-
26
- /* Atelier-Cave Orange */
27
- .hljs-number,
28
- .hljs-meta,
29
- .hljs-built_in,
30
- .hljs-builtin-name,
31
- .hljs-literal,
32
- .hljs-type,
33
- .hljs-params {
34
- color: #aa573c;
35
- }
36
-
37
- /* Atelier-Cave Green */
38
- .hljs-string,
39
- .hljs-symbol,
40
- .hljs-bullet {
41
- color: #2a9292;
42
- }
43
-
44
- /* Atelier-Cave Blue */
45
- .hljs-title,
46
- .hljs-section {
47
- color: #576ddb;
48
- }
49
-
50
- /* Atelier-Cave Purple */
51
- .hljs-keyword,
52
- .hljs-selector-tag {
53
- color: #955ae7;
54
- }
55
-
56
- .hljs-deletion,
57
- .hljs-addition {
58
- color: #19171c;
59
- display: inline-block;
60
- width: 100%;
61
- }
62
-
63
- .hljs-deletion {
64
- background-color: #be4678;
65
- }
66
-
67
- .hljs-addition {
68
- background-color: #2a9292;
69
- }
70
-
71
- .hljs {
72
- display: block;
73
- overflow-x: auto;
74
- background: #efecf4;
75
- color: #585260;
76
- padding: 0.5em;
77
- }
78
-
79
- .hljs-emphasis {
80
- font-style: italic;
81
- }
82
-
83
- .hljs-strong {
84
- font-weight: bold;
85
- }
@@ -1,69 +0,0 @@
1
- /* Base16 Atelier Dune Dark - Theme */
2
- /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */
3
- /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
-
5
- /* Atelier-Dune Comment */
6
- .hljs-comment,
7
- .hljs-quote {
8
- color: #999580;
9
- }
10
-
11
- /* Atelier-Dune Red */
12
- .hljs-variable,
13
- .hljs-template-variable,
14
- .hljs-attribute,
15
- .hljs-tag,
16
- .hljs-name,
17
- .hljs-regexp,
18
- .hljs-link,
19
- .hljs-name,
20
- .hljs-selector-id,
21
- .hljs-selector-class {
22
- color: #d73737;
23
- }
24
-
25
- /* Atelier-Dune Orange */
26
- .hljs-number,
27
- .hljs-meta,
28
- .hljs-built_in,
29
- .hljs-builtin-name,
30
- .hljs-literal,
31
- .hljs-type,
32
- .hljs-params {
33
- color: #b65611;
34
- }
35
-
36
- /* Atelier-Dune Green */
37
- .hljs-string,
38
- .hljs-symbol,
39
- .hljs-bullet {
40
- color: #60ac39;
41
- }
42
-
43
- /* Atelier-Dune Blue */
44
- .hljs-title,
45
- .hljs-section {
46
- color: #6684e1;
47
- }
48
-
49
- /* Atelier-Dune Purple */
50
- .hljs-keyword,
51
- .hljs-selector-tag {
52
- color: #b854d4;
53
- }
54
-
55
- .hljs {
56
- display: block;
57
- overflow-x: auto;
58
- background: #20201d;
59
- color: #a6a28c;
60
- padding: 0.5em;
61
- }
62
-
63
- .hljs-emphasis {
64
- font-style: italic;
65
- }
66
-
67
- .hljs-strong {
68
- font-weight: bold;
69
- }