123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- var jQuery = require("jQuery")
- global.$ = jQuery
- global.jQuery = jQuery
- require("bootstrap-transition")
- require("bootstrap-affix")
- require("bootstrap-modal")
- require("bootstrap-dropdown")
- require("dropzone")
- require("cropit")
- require("jquery-mockjax")(jQuery, window)
- $.mockjaxSettings.logging = false
- $.mockjaxSettings.responseTime = 50
- // polyfill es6 features in phantom.js
- require("babel-polyfill")
- // Mock base href element
- $("head").append('<base href="/test-runner/">')
- // Bootstrap's modal (we'll need it anyway for tests);
- $("body").append(
- '<div class="modal fade" id="modal-mount" tabindex="-1" role="dialog" aria-labelledby="misago-modal-label"></div>'
- )
- $("body").append('<div id="dropdown-mount"></div>')
- $("body").append('<div id="page-mount"></div>')
- $("body").append('<div id="test-mount"></div>')
- // inlined gettext functions form Django
- ;(function(globals) {
- var django = globals.django || (globals.django = {})
- django.pluralidx = function(count) {
- return count == 1 ? 0 : 1
- }
- /* gettext identity library */
- django.gettext = function(msgid) {
- return msgid
- }
- django.ngettext = function(singular, plural, count) {
- return count == 1 ? singular : plural
- }
- django.gettext_noop = function(msgid) {
- return msgid
- }
- django.pgettext = function(context, msgid) {
- return msgid
- }
- django.npgettext = function(context, singular, plural, count) {
- return count == 1 ? singular : plural
- }
- django.interpolate = function(fmt, obj, named) {
- if (named) {
- return fmt.replace(/%\(\w+\)s/g, function(match) {
- return String(obj[match.slice(2, -2)])
- })
- } else {
- return fmt.replace(/%s/g, function(match) {
- return String(obj.shift())
- })
- }
- }
- /* formatting library */
- django.formats = {
- DATETIME_FORMAT: "N j, Y, P",
- DATETIME_INPUT_FORMATS: [
- "%Y-%m-%d %H:%M:%S",
- "%Y-%m-%d %H:%M:%S.%f",
- "%Y-%m-%d %H:%M",
- "%Y-%m-%d",
- "%m/%d/%Y %H:%M:%S",
- "%m/%d/%Y %H:%M:%S.%f",
- "%m/%d/%Y %H:%M",
- "%m/%d/%Y",
- "%m/%d/%y %H:%M:%S",
- "%m/%d/%y %H:%M:%S.%f",
- "%m/%d/%y %H:%M",
- "%m/%d/%y"
- ],
- DATE_FORMAT: "N j, Y",
- DATE_INPUT_FORMATS: ["%Y-%m-%d", "%m/%d/%Y", "%m/%d/%y"],
- DECIMAL_SEPARATOR: ".",
- FIRST_DAY_OF_WEEK: "0",
- MONTH_DAY_FORMAT: "F j",
- NUMBER_GROUPING: "3",
- SHORT_DATETIME_FORMAT: "m/d/Y P",
- SHORT_DATE_FORMAT: "m/d/Y",
- THOUSAND_SEPARATOR: ",",
- TIME_FORMAT: "P",
- TIME_INPUT_FORMATS: ["%H:%M:%S", "%H:%M:%S.%f", "%H:%M"],
- YEAR_MONTH_FORMAT: "F Y"
- }
- django.get_format = function(format_type) {
- var value = django.formats[format_type]
- if (typeof value == "undefined") {
- return format_type
- } else {
- return value
- }
- }
- /* add to global namespace */
- window.pluralidx = django.pluralidx
- window.gettext = django.gettext
- window.ngettext = django.ngettext
- window.gettext_noop = django.gettext_noop
- window.pgettext = django.pgettext
- window.npgettext = django.npgettext
- window.interpolate = django.interpolate
- window.get_format = django.get_format
- })(global)
|