logster 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (245) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/Guardfile +8 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +38 -0
  7. data/Rakefile +18 -0
  8. data/assets/javascript/app.js +377 -0
  9. data/assets/javascript/external/ember.js +44267 -0
  10. data/assets/javascript/external/ember.min.js +19 -0
  11. data/assets/javascript/external/handlebars.min.js +28 -0
  12. data/assets/javascript/external/jquery.min.js +5 -0
  13. data/assets/javascript/external/lodash.min.js +56 -0
  14. data/assets/javascript/external/moment.min.js +6 -0
  15. data/assets/javascript/templates/application.handlebars +1 -0
  16. data/assets/javascript/templates/index.handlebars +48 -0
  17. data/assets/javascript/templates/message.handlebars +7 -0
  18. data/assets/stylesheets/app.css +188 -0
  19. data/bower_components/ember/.bower.json +22 -0
  20. data/bower_components/ember/.gitignore +5 -0
  21. data/bower_components/ember/Makefile +9 -0
  22. data/bower_components/ember/README.md +12 -0
  23. data/bower_components/ember/bower.json +11 -0
  24. data/bower_components/ember/component.json +13 -0
  25. data/bower_components/ember/composer.json +27 -0
  26. data/bower_components/ember/ember-template-compiler.js +320 -0
  27. data/bower_components/ember/ember.js +44267 -0
  28. data/bower_components/ember/ember.min.js +19 -0
  29. data/bower_components/ember/ember.prod.js +42649 -0
  30. data/bower_components/ember/package.json +11 -0
  31. data/bower_components/handlebars/.bower.json +16 -0
  32. data/bower_components/handlebars/.gitignore +2 -0
  33. data/bower_components/handlebars/README.md +11 -0
  34. data/bower_components/handlebars/bower.json +6 -0
  35. data/bower_components/handlebars/component.json +9 -0
  36. data/bower_components/handlebars/composer.json +35 -0
  37. data/bower_components/handlebars/handlebars-source.gemspec +21 -0
  38. data/bower_components/handlebars/handlebars.amd.js +2719 -0
  39. data/bower_components/handlebars/handlebars.amd.min.js +28 -0
  40. data/bower_components/handlebars/handlebars.js +2746 -0
  41. data/bower_components/handlebars/handlebars.js.nuspec +17 -0
  42. data/bower_components/handlebars/handlebars.min.js +28 -0
  43. data/bower_components/handlebars/handlebars.runtime.amd.js +515 -0
  44. data/bower_components/handlebars/handlebars.runtime.amd.min.js +27 -0
  45. data/bower_components/handlebars/handlebars.runtime.js +530 -0
  46. data/bower_components/handlebars/handlebars.runtime.min.js +27 -0
  47. data/bower_components/handlebars/lib/handlebars/source.rb +11 -0
  48. data/bower_components/jquery/.bower.json +37 -0
  49. data/bower_components/jquery/MIT-LICENSE.txt +21 -0
  50. data/bower_components/jquery/bower.json +27 -0
  51. data/bower_components/jquery/dist/jquery.js +9111 -0
  52. data/bower_components/jquery/dist/jquery.min.js +5 -0
  53. data/bower_components/jquery/dist/jquery.min.map +1 -0
  54. data/bower_components/jquery/src/ajax.js +806 -0
  55. data/bower_components/jquery/src/ajax/jsonp.js +89 -0
  56. data/bower_components/jquery/src/ajax/load.js +75 -0
  57. data/bower_components/jquery/src/ajax/parseJSON.js +13 -0
  58. data/bower_components/jquery/src/ajax/parseXML.js +28 -0
  59. data/bower_components/jquery/src/ajax/script.js +64 -0
  60. data/bower_components/jquery/src/ajax/var/nonce.js +5 -0
  61. data/bower_components/jquery/src/ajax/var/rquery.js +3 -0
  62. data/bower_components/jquery/src/ajax/xhr.js +130 -0
  63. data/bower_components/jquery/src/attributes.js +11 -0
  64. data/bower_components/jquery/src/attributes/attr.js +143 -0
  65. data/bower_components/jquery/src/attributes/classes.js +158 -0
  66. data/bower_components/jquery/src/attributes/prop.js +96 -0
  67. data/bower_components/jquery/src/attributes/support.js +35 -0
  68. data/bower_components/jquery/src/attributes/val.js +153 -0
  69. data/bower_components/jquery/src/callbacks.js +205 -0
  70. data/bower_components/jquery/src/core.js +500 -0
  71. data/bower_components/jquery/src/core/access.js +60 -0
  72. data/bower_components/jquery/src/core/init.js +123 -0
  73. data/bower_components/jquery/src/core/parseHTML.js +39 -0
  74. data/bower_components/jquery/src/core/ready.js +96 -0
  75. data/bower_components/jquery/src/core/var/rsingleTag.js +4 -0
  76. data/bower_components/jquery/src/css.js +455 -0
  77. data/bower_components/jquery/src/css/addGetHookIf.js +24 -0
  78. data/bower_components/jquery/src/css/curCSS.js +57 -0
  79. data/bower_components/jquery/src/css/defaultDisplay.js +69 -0
  80. data/bower_components/jquery/src/css/hiddenVisibleSelectors.js +15 -0
  81. data/bower_components/jquery/src/css/support.js +83 -0
  82. data/bower_components/jquery/src/css/swap.js +28 -0
  83. data/bower_components/jquery/src/css/var/cssExpand.js +3 -0
  84. data/bower_components/jquery/src/css/var/getStyles.js +5 -0
  85. data/bower_components/jquery/src/css/var/isHidden.js +13 -0
  86. data/bower_components/jquery/src/css/var/rmargin.js +3 -0
  87. data/bower_components/jquery/src/css/var/rnumnonpx.js +5 -0
  88. data/bower_components/jquery/src/data.js +175 -0
  89. data/bower_components/jquery/src/data/Data.js +181 -0
  90. data/bower_components/jquery/src/data/accepts.js +20 -0
  91. data/bower_components/jquery/src/data/var/data_priv.js +5 -0
  92. data/bower_components/jquery/src/data/var/data_user.js +5 -0
  93. data/bower_components/jquery/src/deferred.js +149 -0
  94. data/bower_components/jquery/src/deprecated.js +13 -0
  95. data/bower_components/jquery/src/dimensions.js +50 -0
  96. data/bower_components/jquery/src/effects.js +642 -0
  97. data/bower_components/jquery/src/effects/Tween.js +114 -0
  98. data/bower_components/jquery/src/effects/animatedSelector.js +13 -0
  99. data/bower_components/jquery/src/event.js +859 -0
  100. data/bower_components/jquery/src/event/alias.js +39 -0
  101. data/bower_components/jquery/src/event/support.js +9 -0
  102. data/bower_components/jquery/src/exports/amd.js +18 -0
  103. data/bower_components/jquery/src/exports/global.js +32 -0
  104. data/bower_components/jquery/src/intro.js +44 -0
  105. data/bower_components/jquery/src/jquery.js +36 -0
  106. data/bower_components/jquery/src/manipulation.js +583 -0
  107. data/bower_components/jquery/src/manipulation/_evalUrl.js +18 -0
  108. data/bower_components/jquery/src/manipulation/support.js +24 -0
  109. data/bower_components/jquery/src/manipulation/var/rcheckableType.js +3 -0
  110. data/bower_components/jquery/src/offset.js +204 -0
  111. data/bower_components/jquery/src/outro.js +1 -0
  112. data/bower_components/jquery/src/queue.js +142 -0
  113. data/bower_components/jquery/src/queue/delay.js +22 -0
  114. data/bower_components/jquery/src/selector-native.js +171 -0
  115. data/bower_components/jquery/src/selector-sizzle.js +14 -0
  116. data/bower_components/jquery/src/selector.js +1 -0
  117. data/bower_components/jquery/src/serialize.js +111 -0
  118. data/bower_components/jquery/src/sizzle/dist/sizzle.js +2015 -0
  119. data/bower_components/jquery/src/sizzle/dist/sizzle.min.js +3 -0
  120. data/bower_components/jquery/src/sizzle/dist/sizzle.min.map +1 -0
  121. data/bower_components/jquery/src/traversing.js +200 -0
  122. data/bower_components/jquery/src/traversing/findFilter.js +100 -0
  123. data/bower_components/jquery/src/traversing/var/rneedsContext.js +6 -0
  124. data/bower_components/jquery/src/var/arr.js +3 -0
  125. data/bower_components/jquery/src/var/class2type.js +4 -0
  126. data/bower_components/jquery/src/var/concat.js +5 -0
  127. data/bower_components/jquery/src/var/hasOwn.js +5 -0
  128. data/bower_components/jquery/src/var/indexOf.js +5 -0
  129. data/bower_components/jquery/src/var/pnum.js +3 -0
  130. data/bower_components/jquery/src/var/push.js +5 -0
  131. data/bower_components/jquery/src/var/rnotwhite.js +3 -0
  132. data/bower_components/jquery/src/var/slice.js +5 -0
  133. data/bower_components/jquery/src/var/strundefined.js +3 -0
  134. data/bower_components/jquery/src/var/support.js +4 -0
  135. data/bower_components/jquery/src/var/toString.js +5 -0
  136. data/bower_components/jquery/src/var/trim.js +3 -0
  137. data/bower_components/jquery/src/wrap.js +78 -0
  138. data/bower_components/lodash/.bower.json +34 -0
  139. data/bower_components/lodash/LICENSE.txt +22 -0
  140. data/bower_components/lodash/bower.json +23 -0
  141. data/bower_components/lodash/dist/lodash.compat.js +7157 -0
  142. data/bower_components/lodash/dist/lodash.compat.min.js +61 -0
  143. data/bower_components/lodash/dist/lodash.js +6785 -0
  144. data/bower_components/lodash/dist/lodash.min.js +56 -0
  145. data/bower_components/lodash/dist/lodash.underscore.js +4979 -0
  146. data/bower_components/lodash/dist/lodash.underscore.min.js +39 -0
  147. data/bower_components/moment/.bower.json +31 -0
  148. data/bower_components/moment/LICENSE +22 -0
  149. data/bower_components/moment/bower.json +20 -0
  150. data/bower_components/moment/lang/ar-ma.js +56 -0
  151. data/bower_components/moment/lang/ar.js +56 -0
  152. data/bower_components/moment/lang/bg.js +86 -0
  153. data/bower_components/moment/lang/br.js +107 -0
  154. data/bower_components/moment/lang/bs.js +139 -0
  155. data/bower_components/moment/lang/ca.js +66 -0
  156. data/bower_components/moment/lang/cs.js +155 -0
  157. data/bower_components/moment/lang/cv.js +59 -0
  158. data/bower_components/moment/lang/cy.js +77 -0
  159. data/bower_components/moment/lang/da.js +56 -0
  160. data/bower_components/moment/lang/de.js +71 -0
  161. data/bower_components/moment/lang/el.js +79 -0
  162. data/bower_components/moment/lang/en-au.js +62 -0
  163. data/bower_components/moment/lang/en-ca.js +59 -0
  164. data/bower_components/moment/lang/en-gb.js +63 -0
  165. data/bower_components/moment/lang/eo.js +65 -0
  166. data/bower_components/moment/lang/es.js +75 -0
  167. data/bower_components/moment/lang/et.js +76 -0
  168. data/bower_components/moment/lang/eu.js +60 -0
  169. data/bower_components/moment/lang/fa.js +97 -0
  170. data/bower_components/moment/lang/fi.js +103 -0
  171. data/bower_components/moment/lang/fo.js +56 -0
  172. data/bower_components/moment/lang/fr-ca.js +54 -0
  173. data/bower_components/moment/lang/fr.js +58 -0
  174. data/bower_components/moment/lang/gl.js +71 -0
  175. data/bower_components/moment/lang/he.js +77 -0
  176. data/bower_components/moment/lang/hi.js +105 -0
  177. data/bower_components/moment/lang/hr.js +140 -0
  178. data/bower_components/moment/lang/hu.js +105 -0
  179. data/bower_components/moment/lang/hy-am.js +113 -0
  180. data/bower_components/moment/lang/id.js +67 -0
  181. data/bower_components/moment/lang/is.js +124 -0
  182. data/bower_components/moment/lang/it.js +59 -0
  183. data/bower_components/moment/lang/ja.js +58 -0
  184. data/bower_components/moment/lang/ka.js +108 -0
  185. data/bower_components/moment/lang/km.js +55 -0
  186. data/bower_components/moment/lang/ko.js +63 -0
  187. data/bower_components/moment/lang/lb.js +160 -0
  188. data/bower_components/moment/lang/lt.js +118 -0
  189. data/bower_components/moment/lang/lv.js +77 -0
  190. data/bower_components/moment/lang/mk.js +86 -0
  191. data/bower_components/moment/lang/ml.js +64 -0
  192. data/bower_components/moment/lang/mr.js +104 -0
  193. data/bower_components/moment/lang/ms-my.js +66 -0
  194. data/bower_components/moment/lang/nb.js +57 -0
  195. data/bower_components/moment/lang/ne.js +105 -0
  196. data/bower_components/moment/lang/nl.js +67 -0
  197. data/bower_components/moment/lang/nn.js +56 -0
  198. data/bower_components/moment/lang/pl.js +98 -0
  199. data/bower_components/moment/lang/pt-br.js +56 -0
  200. data/bower_components/moment/lang/pt.js +60 -0
  201. data/bower_components/moment/lang/ro.js +72 -0
  202. data/bower_components/moment/lang/ru.js +163 -0
  203. data/bower_components/moment/lang/sk.js +156 -0
  204. data/bower_components/moment/lang/sl.js +144 -0
  205. data/bower_components/moment/lang/sq.js +61 -0
  206. data/bower_components/moment/lang/sr-cyr.js +106 -0
  207. data/bower_components/moment/lang/sr.js +106 -0
  208. data/bower_components/moment/lang/sv.js +63 -0
  209. data/bower_components/moment/lang/ta.js +112 -0
  210. data/bower_components/moment/lang/th.js +58 -0
  211. data/bower_components/moment/lang/tl-ph.js +58 -0
  212. data/bower_components/moment/lang/tr.js +93 -0
  213. data/bower_components/moment/lang/tzm-la.js +55 -0
  214. data/bower_components/moment/lang/tzm.js +55 -0
  215. data/bower_components/moment/lang/uk.js +157 -0
  216. data/bower_components/moment/lang/uz.js +55 -0
  217. data/bower_components/moment/lang/vi.js +62 -0
  218. data/bower_components/moment/lang/zh-cn.js +108 -0
  219. data/bower_components/moment/lang/zh-tw.js +84 -0
  220. data/bower_components/moment/min/langs.js +5991 -0
  221. data/bower_components/moment/min/langs.min.js +3 -0
  222. data/bower_components/moment/min/moment-with-langs.js +7993 -0
  223. data/bower_components/moment/min/moment-with-langs.min.js +9 -0
  224. data/bower_components/moment/min/moment.min.js +6 -0
  225. data/bower_components/moment/moment.js +2489 -0
  226. data/bower_components/moment/readme.md +368 -0
  227. data/lib/logster.rb +9 -0
  228. data/lib/logster/logger.rb +31 -0
  229. data/lib/logster/message.rb +42 -0
  230. data/lib/logster/middleware/reporter.rb +13 -0
  231. data/lib/logster/middleware/viewer.rb +122 -0
  232. data/lib/logster/rails/railtie.rb +39 -0
  233. data/lib/logster/redis_store.rb +124 -0
  234. data/lib/logster/version.rb +3 -0
  235. data/logster.gemspec +30 -0
  236. data/test/logster/middleware/test_viewer.rb +34 -0
  237. data/test/logster/test_redis_store.rb +112 -0
  238. data/test/test_helper.rb +6 -0
  239. data/website/Gemfile +6 -0
  240. data/website/config.ru +2 -0
  241. data/website/data/data.json +1 -0
  242. data/website/docker_container/logster.yml +95 -0
  243. data/website/sample.rb +85 -0
  244. data/website/scripts/persist_logs.rb +13 -0
  245. metadata +375 -0
@@ -0,0 +1,64 @@
1
+ // moment.js language configuration
2
+ // language : malayalam (ml)
3
+ // author : Floyd Pink : https://github.com/floydpink
4
+
5
+ (function (factory) {
6
+ if (typeof define === 'function' && define.amd) {
7
+ define(['moment'], factory); // AMD
8
+ } else if (typeof exports === 'object') {
9
+ module.exports = factory(require('../moment')); // Node
10
+ } else {
11
+ factory(window.moment); // Browser global
12
+ }
13
+ }(function (moment) {
14
+ return moment.lang('ml', {
15
+ months : 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split("_"),
16
+ monthsShort : 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split("_"),
17
+ weekdays : 'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split("_"),
18
+ weekdaysShort : 'ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി'.split("_"),
19
+ weekdaysMin : 'ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ'.split("_"),
20
+ longDateFormat : {
21
+ LT : "A h:mm -നു",
22
+ L : "DD/MM/YYYY",
23
+ LL : "D MMMM YYYY",
24
+ LLL : "D MMMM YYYY, LT",
25
+ LLLL : "dddd, D MMMM YYYY, LT"
26
+ },
27
+ calendar : {
28
+ sameDay : '[ഇന്ന്] LT',
29
+ nextDay : '[നാളെ] LT',
30
+ nextWeek : 'dddd, LT',
31
+ lastDay : '[ഇന്നലെ] LT',
32
+ lastWeek : '[കഴിഞ്ഞ] dddd, LT',
33
+ sameElse : 'L'
34
+ },
35
+ relativeTime : {
36
+ future : "%s കഴിഞ്ഞ്",
37
+ past : "%s മുൻപ്",
38
+ s : "അൽപ നിമിഷങ്ങൾ",
39
+ m : "ഒരു മിനിറ്റ്",
40
+ mm : "%d മിനിറ്റ്",
41
+ h : "ഒരു മണിക്കൂർ",
42
+ hh : "%d മണിക്കൂർ",
43
+ d : "ഒരു ദിവസം",
44
+ dd : "%d ദിവസം",
45
+ M : "ഒരു മാസം",
46
+ MM : "%d മാസം",
47
+ y : "ഒരു വർഷം",
48
+ yy : "%d വർഷം"
49
+ },
50
+ meridiem : function (hour, minute, isLower) {
51
+ if (hour < 4) {
52
+ return "രാത്രി";
53
+ } else if (hour < 12) {
54
+ return "രാവിലെ";
55
+ } else if (hour < 17) {
56
+ return "ഉച്ച കഴിഞ്ഞ്";
57
+ } else if (hour < 20) {
58
+ return "വൈകുന്നേരം";
59
+ } else {
60
+ return "രാത്രി";
61
+ }
62
+ }
63
+ });
64
+ }));
@@ -0,0 +1,104 @@
1
+ // moment.js language configuration
2
+ // language : Marathi (mr)
3
+ // author : Harshad Kale : https://github.com/kalehv
4
+
5
+ (function (factory) {
6
+ if (typeof define === 'function' && define.amd) {
7
+ define(['moment'], factory); // AMD
8
+ } else if (typeof exports === 'object') {
9
+ module.exports = factory(require('../moment')); // Node
10
+ } else {
11
+ factory(window.moment); // Browser global
12
+ }
13
+ }(function (moment) {
14
+ var symbolMap = {
15
+ '1': '१',
16
+ '2': '२',
17
+ '3': '३',
18
+ '4': '४',
19
+ '5': '५',
20
+ '6': '६',
21
+ '7': '७',
22
+ '8': '८',
23
+ '9': '९',
24
+ '0': '०'
25
+ },
26
+ numberMap = {
27
+ '१': '1',
28
+ '२': '2',
29
+ '३': '3',
30
+ '४': '4',
31
+ '५': '5',
32
+ '६': '6',
33
+ '७': '7',
34
+ '८': '8',
35
+ '९': '9',
36
+ '०': '0'
37
+ };
38
+
39
+ return moment.lang('mr', {
40
+ months : 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split("_"),
41
+ monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split("_"),
42
+ weekdays : 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split("_"),
43
+ weekdaysShort : 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split("_"),
44
+ weekdaysMin : 'र_सो_मं_बु_गु_शु_श'.split("_"),
45
+ longDateFormat : {
46
+ LT : "A h:mm वाजता",
47
+ L : "DD/MM/YYYY",
48
+ LL : "D MMMM YYYY",
49
+ LLL : "D MMMM YYYY, LT",
50
+ LLLL : "dddd, D MMMM YYYY, LT"
51
+ },
52
+ calendar : {
53
+ sameDay : '[आज] LT',
54
+ nextDay : '[उद्या] LT',
55
+ nextWeek : 'dddd, LT',
56
+ lastDay : '[काल] LT',
57
+ lastWeek: '[मागील] dddd, LT',
58
+ sameElse : 'L'
59
+ },
60
+ relativeTime : {
61
+ future : "%s नंतर",
62
+ past : "%s पूर्वी",
63
+ s : "सेकंद",
64
+ m: "एक मिनिट",
65
+ mm: "%d मिनिटे",
66
+ h : "एक तास",
67
+ hh : "%d तास",
68
+ d : "एक दिवस",
69
+ dd : "%d दिवस",
70
+ M : "एक महिना",
71
+ MM : "%d महिने",
72
+ y : "एक वर्ष",
73
+ yy : "%d वर्षे"
74
+ },
75
+ preparse: function (string) {
76
+ return string.replace(/[१२३४५६७८९०]/g, function (match) {
77
+ return numberMap[match];
78
+ });
79
+ },
80
+ postformat: function (string) {
81
+ return string.replace(/\d/g, function (match) {
82
+ return symbolMap[match];
83
+ });
84
+ },
85
+ meridiem: function (hour, minute, isLower)
86
+ {
87
+ if (hour < 4) {
88
+ return "रात्री";
89
+ } else if (hour < 10) {
90
+ return "सकाळी";
91
+ } else if (hour < 17) {
92
+ return "दुपारी";
93
+ } else if (hour < 20) {
94
+ return "सायंकाळी";
95
+ } else {
96
+ return "रात्री";
97
+ }
98
+ },
99
+ week : {
100
+ dow : 0, // Sunday is the first day of the week.
101
+ doy : 6 // The week that contains Jan 1st is the first week of the year.
102
+ }
103
+ });
104
+ }));
@@ -0,0 +1,66 @@
1
+ // moment.js language configuration
2
+ // language : Bahasa Malaysia (ms-MY)
3
+ // author : Weldan Jamili : https://github.com/weldan
4
+
5
+ (function (factory) {
6
+ if (typeof define === 'function' && define.amd) {
7
+ define(['moment'], factory); // AMD
8
+ } else if (typeof exports === 'object') {
9
+ module.exports = factory(require('../moment')); // Node
10
+ } else {
11
+ factory(window.moment); // Browser global
12
+ }
13
+ }(function (moment) {
14
+ return moment.lang('ms-my', {
15
+ months : "Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),
16
+ monthsShort : "Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),
17
+ weekdays : "Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),
18
+ weekdaysShort : "Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),
19
+ weekdaysMin : "Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),
20
+ longDateFormat : {
21
+ LT : "HH.mm",
22
+ L : "DD/MM/YYYY",
23
+ LL : "D MMMM YYYY",
24
+ LLL : "D MMMM YYYY [pukul] LT",
25
+ LLLL : "dddd, D MMMM YYYY [pukul] LT"
26
+ },
27
+ meridiem : function (hours, minutes, isLower) {
28
+ if (hours < 11) {
29
+ return 'pagi';
30
+ } else if (hours < 15) {
31
+ return 'tengahari';
32
+ } else if (hours < 19) {
33
+ return 'petang';
34
+ } else {
35
+ return 'malam';
36
+ }
37
+ },
38
+ calendar : {
39
+ sameDay : '[Hari ini pukul] LT',
40
+ nextDay : '[Esok pukul] LT',
41
+ nextWeek : 'dddd [pukul] LT',
42
+ lastDay : '[Kelmarin pukul] LT',
43
+ lastWeek : 'dddd [lepas pukul] LT',
44
+ sameElse : 'L'
45
+ },
46
+ relativeTime : {
47
+ future : "dalam %s",
48
+ past : "%s yang lepas",
49
+ s : "beberapa saat",
50
+ m : "seminit",
51
+ mm : "%d minit",
52
+ h : "sejam",
53
+ hh : "%d jam",
54
+ d : "sehari",
55
+ dd : "%d hari",
56
+ M : "sebulan",
57
+ MM : "%d bulan",
58
+ y : "setahun",
59
+ yy : "%d tahun"
60
+ },
61
+ week : {
62
+ dow : 1, // Monday is the first day of the week.
63
+ doy : 7 // The week that contains Jan 1st is the first week of the year.
64
+ }
65
+ });
66
+ }));
@@ -0,0 +1,57 @@
1
+ // moment.js language configuration
2
+ // language : norwegian bokmål (nb)
3
+ // authors : Espen Hovlandsdal : https://github.com/rexxars
4
+ // Sigurd Gartmann : https://github.com/sigurdga
5
+
6
+ (function (factory) {
7
+ if (typeof define === 'function' && define.amd) {
8
+ define(['moment'], factory); // AMD
9
+ } else if (typeof exports === 'object') {
10
+ module.exports = factory(require('../moment')); // Node
11
+ } else {
12
+ factory(window.moment); // Browser global
13
+ }
14
+ }(function (moment) {
15
+ return moment.lang('nb', {
16
+ months : "januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),
17
+ monthsShort : "jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),
18
+ weekdays : "søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),
19
+ weekdaysShort : "sø._ma._ti._on._to._fr._lø.".split("_"),
20
+ weekdaysMin : "sø_ma_ti_on_to_fr_lø".split("_"),
21
+ longDateFormat : {
22
+ LT : "H.mm",
23
+ L : "DD.MM.YYYY",
24
+ LL : "D. MMMM YYYY",
25
+ LLL : "D. MMMM YYYY [kl.] LT",
26
+ LLLL : "dddd D. MMMM YYYY [kl.] LT"
27
+ },
28
+ calendar : {
29
+ sameDay: '[i dag kl.] LT',
30
+ nextDay: '[i morgen kl.] LT',
31
+ nextWeek: 'dddd [kl.] LT',
32
+ lastDay: '[i går kl.] LT',
33
+ lastWeek: '[forrige] dddd [kl.] LT',
34
+ sameElse: 'L'
35
+ },
36
+ relativeTime : {
37
+ future : "om %s",
38
+ past : "for %s siden",
39
+ s : "noen sekunder",
40
+ m : "ett minutt",
41
+ mm : "%d minutter",
42
+ h : "en time",
43
+ hh : "%d timer",
44
+ d : "en dag",
45
+ dd : "%d dager",
46
+ M : "en måned",
47
+ MM : "%d måneder",
48
+ y : "ett år",
49
+ yy : "%d år"
50
+ },
51
+ ordinal : '%d.',
52
+ week : {
53
+ dow : 1, // Monday is the first day of the week.
54
+ doy : 4 // The week that contains Jan 4th is the first week of the year.
55
+ }
56
+ });
57
+ }));
@@ -0,0 +1,105 @@
1
+ // moment.js language configuration
2
+ // language : nepali/nepalese
3
+ // author : suvash : https://github.com/suvash
4
+
5
+ (function (factory) {
6
+ if (typeof define === 'function' && define.amd) {
7
+ define(['moment'], factory); // AMD
8
+ } else if (typeof exports === 'object') {
9
+ module.exports = factory(require('../moment')); // Node
10
+ } else {
11
+ factory(window.moment); // Browser global
12
+ }
13
+ }(function (moment) {
14
+ var symbolMap = {
15
+ '1': '१',
16
+ '2': '२',
17
+ '3': '३',
18
+ '4': '४',
19
+ '5': '५',
20
+ '6': '६',
21
+ '7': '७',
22
+ '8': '८',
23
+ '9': '९',
24
+ '0': '०'
25
+ },
26
+ numberMap = {
27
+ '१': '1',
28
+ '२': '2',
29
+ '३': '3',
30
+ '४': '4',
31
+ '५': '5',
32
+ '६': '6',
33
+ '७': '7',
34
+ '८': '8',
35
+ '९': '9',
36
+ '०': '0'
37
+ };
38
+
39
+ return moment.lang('ne', {
40
+ months : 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split("_"),
41
+ monthsShort : 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split("_"),
42
+ weekdays : 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split("_"),
43
+ weekdaysShort : 'आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.'.split("_"),
44
+ weekdaysMin : 'आइ._सो._मङ्_बु._बि._शु._श.'.split("_"),
45
+ longDateFormat : {
46
+ LT : "Aको h:mm बजे",
47
+ L : "DD/MM/YYYY",
48
+ LL : "D MMMM YYYY",
49
+ LLL : "D MMMM YYYY, LT",
50
+ LLLL : "dddd, D MMMM YYYY, LT"
51
+ },
52
+ preparse: function (string) {
53
+ return string.replace(/[१२३४५६७८९०]/g, function (match) {
54
+ return numberMap[match];
55
+ });
56
+ },
57
+ postformat: function (string) {
58
+ return string.replace(/\d/g, function (match) {
59
+ return symbolMap[match];
60
+ });
61
+ },
62
+ meridiem : function (hour, minute, isLower) {
63
+ if (hour < 3) {
64
+ return "राती";
65
+ } else if (hour < 10) {
66
+ return "बिहान";
67
+ } else if (hour < 15) {
68
+ return "दिउँसो";
69
+ } else if (hour < 18) {
70
+ return "बेलुका";
71
+ } else if (hour < 20) {
72
+ return "साँझ";
73
+ } else {
74
+ return "राती";
75
+ }
76
+ },
77
+ calendar : {
78
+ sameDay : '[आज] LT',
79
+ nextDay : '[भोली] LT',
80
+ nextWeek : '[आउँदो] dddd[,] LT',
81
+ lastDay : '[हिजो] LT',
82
+ lastWeek : '[गएको] dddd[,] LT',
83
+ sameElse : 'L'
84
+ },
85
+ relativeTime : {
86
+ future : "%sमा",
87
+ past : "%s अगाडी",
88
+ s : "केही समय",
89
+ m : "एक मिनेट",
90
+ mm : "%d मिनेट",
91
+ h : "एक घण्टा",
92
+ hh : "%d घण्टा",
93
+ d : "एक दिन",
94
+ dd : "%d दिन",
95
+ M : "एक महिना",
96
+ MM : "%d महिना",
97
+ y : "एक बर्ष",
98
+ yy : "%d बर्ष"
99
+ },
100
+ week : {
101
+ dow : 1, // Monday is the first day of the week.
102
+ doy : 7 // The week that contains Jan 1st is the first week of the year.
103
+ }
104
+ });
105
+ }));
@@ -0,0 +1,67 @@
1
+ // moment.js language configuration
2
+ // language : dutch (nl)
3
+ // author : Joris Röling : https://github.com/jjupiter
4
+
5
+ (function (factory) {
6
+ if (typeof define === 'function' && define.amd) {
7
+ define(['moment'], factory); // AMD
8
+ } else if (typeof exports === 'object') {
9
+ module.exports = factory(require('../moment')); // Node
10
+ } else {
11
+ factory(window.moment); // Browser global
12
+ }
13
+ }(function (moment) {
14
+ var monthsShortWithDots = "jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),
15
+ monthsShortWithoutDots = "jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_");
16
+
17
+ return moment.lang('nl', {
18
+ months : "januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),
19
+ monthsShort : function (m, format) {
20
+ if (/-MMM-/.test(format)) {
21
+ return monthsShortWithoutDots[m.month()];
22
+ } else {
23
+ return monthsShortWithDots[m.month()];
24
+ }
25
+ },
26
+ weekdays : "zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),
27
+ weekdaysShort : "zo._ma._di._wo._do._vr._za.".split("_"),
28
+ weekdaysMin : "Zo_Ma_Di_Wo_Do_Vr_Za".split("_"),
29
+ longDateFormat : {
30
+ LT : "HH:mm",
31
+ L : "DD-MM-YYYY",
32
+ LL : "D MMMM YYYY",
33
+ LLL : "D MMMM YYYY LT",
34
+ LLLL : "dddd D MMMM YYYY LT"
35
+ },
36
+ calendar : {
37
+ sameDay: '[vandaag om] LT',
38
+ nextDay: '[morgen om] LT',
39
+ nextWeek: 'dddd [om] LT',
40
+ lastDay: '[gisteren om] LT',
41
+ lastWeek: '[afgelopen] dddd [om] LT',
42
+ sameElse: 'L'
43
+ },
44
+ relativeTime : {
45
+ future : "over %s",
46
+ past : "%s geleden",
47
+ s : "een paar seconden",
48
+ m : "één minuut",
49
+ mm : "%d minuten",
50
+ h : "één uur",
51
+ hh : "%d uur",
52
+ d : "één dag",
53
+ dd : "%d dagen",
54
+ M : "één maand",
55
+ MM : "%d maanden",
56
+ y : "één jaar",
57
+ yy : "%d jaar"
58
+ },
59
+ ordinal : function (number) {
60
+ return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');
61
+ },
62
+ week : {
63
+ dow : 1, // Monday is the first day of the week.
64
+ doy : 4 // The week that contains Jan 4th is the first week of the year.
65
+ }
66
+ });
67
+ }));