3 |
4 | # ENV 设置环境变量
5 | ENV PATH /usr/bin;/usr/sbin:$PATH
6 |
7 | # 下载源码
8 | RUN rm -rf /workspaces/ && mkdir -p /workspaces && git clone https://gitee.com/SmallMi/omms.git /workspaces/omms
9 | WORKDIR /workspaces/omms
10 |
11 | # 修改源码中数据库连接
12 | COPY settings.py omms
13 | #RUN grep 'HOST' omms/settings.py
14 |
15 | # 安装系统工具及源码依赖
16 | RUN yum -y install sshpass && pip install -i https://pypi.douban.com/simple/ -r requirements.txt
17 |
18 | # 数据初始化
19 | #RUN python manage.py makemigrations && python manage.py migrate && python manage.py loaddata default_user
20 |
21 | # EXPOSE 映射端口
22 | EXPOSE 10000
23 |
24 | # 容器启动后数据初始化
25 | CMD python3 manage.py makemigrations && python3 manage.py migrate && python3 manage.py loaddata default_user && python3 /workspaces/omms/manage.py runserver 0.0.0.0:10000
26 |
27 | # 容器启动后时执行
28 | #CMD ["python3", "/workspaces/omms/manage.py", "runserver", "0.0.0.0:10000"]
--------------------------------------------------------------------------------
/omms/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/omms/__init__.py
--------------------------------------------------------------------------------
/omms/urls.py:
--------------------------------------------------------------------------------
1 | #-*- coding: utf-8 -*-
2 | '''
3 | Author: smallmi
4 | Blog: http://www.smallmi.com
5 | '''
6 | from django.conf.urls import url,include
7 | from django.contrib import admin
8 | from django.conf.urls.static import static
9 | from django.conf import settings
10 | from dashboard import views as dashboard_views
11 |
12 |
13 | urlpatterns = [
14 | url(r'^$',dashboard_views.index, name="index"),
15 | url(r'^admin/', admin.site.urls),
16 | url(r'accounts/', include('accounts.urls')),
17 | url(r'release/', include('release.urls')),
18 | url(r'cmdb/', include('cmdb.urls')),
19 | url(r'tasks/', include('tasks.urls')),
20 | url(r'^dashboard/', include('dashboard.urls')),
21 | url(r'monitor/', include('monitor.urls')),
22 | url(r'kube/', include('kube.urls')),
23 |
24 | ] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
25 |
--------------------------------------------------------------------------------
/omms/wsgi.py:
--------------------------------------------------------------------------------
1 | """
2 | WSGI config for omms project.
3 |
4 | It exposes the WSGI callable as a module-level variable named ``application``.
5 |
6 | For more information on this file, see
7 | https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
8 | """
9 |
10 | import os
11 |
12 | from django.core.wsgi import get_wsgi_application
13 |
14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'omms.settings')
15 |
16 | application = get_wsgi_application()
17 |
--------------------------------------------------------------------------------
/release/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/release/__init__.py
--------------------------------------------------------------------------------
/release/admin.py:
--------------------------------------------------------------------------------
1 | #-*- coding: utf-8 -*-
2 | '''
3 | Author: smallmi
4 | Blog: http://www.smallmi.com
5 | '''
6 |
7 | # Register your models here.
8 |
--------------------------------------------------------------------------------
/release/apps.py:
--------------------------------------------------------------------------------
1 | #-*- coding: utf-8 -*-
2 | '''
3 | Author: smallmi
4 | Blog: http://www.smallmi.com
5 | '''
6 | from django.apps import AppConfig
7 |
8 |
9 | class ReleaseConfig(AppConfig):
10 | name = 'release'
11 |
--------------------------------------------------------------------------------
/release/migrations/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/release/migrations/__init__.py
--------------------------------------------------------------------------------
/release/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/static/css/patterns/congruent_pentagon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/patterns/congruent_pentagon.png
--------------------------------------------------------------------------------
/static/css/patterns/header-profile-skin-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/patterns/header-profile-skin-1.png
--------------------------------------------------------------------------------
/static/css/patterns/header-profile-skin-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/patterns/header-profile-skin-2.png
--------------------------------------------------------------------------------
/static/css/patterns/header-profile-skin-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/patterns/header-profile-skin-3.png
--------------------------------------------------------------------------------
/static/css/patterns/header-profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/patterns/header-profile.png
--------------------------------------------------------------------------------
/static/css/patterns/otis_redding.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/patterns/otis_redding.png
--------------------------------------------------------------------------------
/static/css/patterns/shattered.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/patterns/shattered.png
--------------------------------------------------------------------------------
/static/css/patterns/triangular.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/patterns/triangular.png
--------------------------------------------------------------------------------
/static/css/plugins/chosen/chosen-sprite.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/plugins/chosen/chosen-sprite.png
--------------------------------------------------------------------------------
/static/css/plugins/chosen/chosen-sprite@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/plugins/chosen/chosen-sprite@2x.png
--------------------------------------------------------------------------------
/static/css/plugins/codemirror/fold/foldgutter.css:
--------------------------------------------------------------------------------
1 | .CodeMirror-foldmarker {
2 | color: blue;
3 | text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
4 | font-family: arial;
5 | line-height: .3;
6 | cursor: pointer;
7 | }
8 | .CodeMirror-foldgutter {
9 | width: .7em;
10 | }
11 | .CodeMirror-foldgutter-open,
12 | .CodeMirror-foldgutter-folded {
13 | cursor: pointer;
14 | }
15 | .CodeMirror-foldgutter-open:after {
16 | content: "\25BE";
17 | }
18 | .CodeMirror-foldgutter-folded:after {
19 | content: "\25B8";
20 | }
21 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/plugins/font-awesome/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/plugins/font-awesome/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/plugins/font-awesome/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/plugins/font-awesome/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/less/bordered-pulled.less:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em @fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .@{fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/less/core.less:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .@{fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 | }
12 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/less/fixed-width.less:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .@{fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/less/font-awesome.less:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables.less";
7 | @import "mixins.less";
8 | @import "path.less";
9 | @import "core.less";
10 | @import "larger.less";
11 | @import "fixed-width.less";
12 | @import "list.less";
13 | @import "bordered-pulled.less";
14 | @import "spinning.less";
15 | @import "rotated-flipped.less";
16 | @import "stacked.less";
17 | @import "icons.less";
18 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/less/larger.less:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .@{fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .@{fa-css-prefix}-2x { font-size: 2em; }
11 | .@{fa-css-prefix}-3x { font-size: 3em; }
12 | .@{fa-css-prefix}-4x { font-size: 4em; }
13 | .@{fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/less/list.less:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: @fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .@{fa-css-prefix}-li {
11 | position: absolute;
12 | left: -@fa-li-width;
13 | width: @fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.@{fa-css-prefix}-lg {
17 | left: (-@fa-li-width + (4em / 14));
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/less/mixins.less:
--------------------------------------------------------------------------------
1 | // Mixins
2 | // --------------------------
3 |
4 | .fa-icon() {
5 | display: inline-block;
6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 | }
12 |
13 | .fa-icon-rotate(@degrees, @rotation) {
14 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation);
15 | -webkit-transform: rotate(@degrees);
16 | -ms-transform: rotate(@degrees);
17 | transform: rotate(@degrees);
18 | }
19 |
20 | .fa-icon-flip(@horiz, @vert, @rotation) {
21 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1);
22 | -webkit-transform: scale(@horiz, @vert);
23 | -ms-transform: scale(@horiz, @vert);
24 | transform: scale(@horiz, @vert);
25 | }
26 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/less/path.less:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
8 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
9 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
10 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
11 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
12 | font-weight: normal;
13 | font-style: normal;
14 | }
15 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/less/rotated-flipped.less:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
7 |
8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .@{fa-css-prefix}-rotate-90,
15 | :root .@{fa-css-prefix}-rotate-180,
16 | :root .@{fa-css-prefix}-rotate-270,
17 | :root .@{fa-css-prefix}-flip-horizontal,
18 | :root .@{fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/less/spinning.less:
--------------------------------------------------------------------------------
1 | // Spinning Icons
2 | // --------------------------
3 |
4 | .@{fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | @-webkit-keyframes fa-spin {
10 | 0% {
11 | -webkit-transform: rotate(0deg);
12 | transform: rotate(0deg);
13 | }
14 | 100% {
15 | -webkit-transform: rotate(359deg);
16 | transform: rotate(359deg);
17 | }
18 | }
19 |
20 | @keyframes fa-spin {
21 | 0% {
22 | -webkit-transform: rotate(0deg);
23 | transform: rotate(0deg);
24 | }
25 | 100% {
26 | -webkit-transform: rotate(359deg);
27 | transform: rotate(359deg);
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/less/stacked.less:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; }
21 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/scss/_bordered-pulled.scss:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em $fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .#{$fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/scss/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 | }
12 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/scss/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/scss/_larger.scss:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .#{$fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .#{$fa-css-prefix}-2x { font-size: 2em; }
11 | .#{$fa-css-prefix}-3x { font-size: 3em; }
12 | .#{$fa-css-prefix}-4x { font-size: 4em; }
13 | .#{$fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/scss/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: $fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .#{$fa-css-prefix}-li {
11 | position: absolute;
12 | left: -$fa-li-width;
13 | width: $fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.#{$fa-css-prefix}-lg {
17 | left: -$fa-li-width + (4em / 14);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/scss/_mixins.scss:
--------------------------------------------------------------------------------
1 | // Mixins
2 | // --------------------------
3 |
4 | @mixin fa-icon() {
5 | display: inline-block;
6 | font: normal normal normal 14px/1 FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 | }
12 |
13 | @mixin fa-icon-rotate($degrees, $rotation) {
14 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
15 | -webkit-transform: rotate($degrees);
16 | -ms-transform: rotate($degrees);
17 | transform: rotate($degrees);
18 | }
19 |
20 | @mixin fa-icon-flip($horiz, $vert, $rotation) {
21 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation});
22 | -webkit-transform: scale($horiz, $vert);
23 | -ms-transform: scale($horiz, $vert);
24 | transform: scale($horiz, $vert);
25 | }
26 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/scss/_path.scss:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
8 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
9 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
10 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
11 | //src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
12 | font-weight: normal;
13 | font-style: normal;
14 | }
15 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/scss/_rotated-flipped.scss:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7 |
8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .#{$fa-css-prefix}-rotate-90,
15 | :root .#{$fa-css-prefix}-rotate-180,
16 | :root .#{$fa-css-prefix}-rotate-270,
17 | :root .#{$fa-css-prefix}-flip-horizontal,
18 | :root .#{$fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/scss/_spinning.scss:
--------------------------------------------------------------------------------
1 | // Spinning Icons
2 | // --------------------------
3 |
4 | .#{$fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | @-webkit-keyframes fa-spin {
10 | 0% {
11 | -webkit-transform: rotate(0deg);
12 | transform: rotate(0deg);
13 | }
14 | 100% {
15 | -webkit-transform: rotate(359deg);
16 | transform: rotate(359deg);
17 | }
18 | }
19 |
20 | @keyframes fa-spin {
21 | 0% {
22 | -webkit-transform: rotate(0deg);
23 | transform: rotate(0deg);
24 | }
25 | 100% {
26 | -webkit-transform: rotate(359deg);
27 | transform: rotate(359deg);
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/scss/_stacked.scss:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; }
21 |
--------------------------------------------------------------------------------
/static/css/plugins/font-awesome/scss/font-awesome.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables";
7 | @import "mixins";
8 | @import "path";
9 | @import "core";
10 | @import "larger";
11 | @import "fixed-width";
12 | @import "list";
13 | @import "bordered-pulled";
14 | @import "spinning";
15 | @import "rotated-flipped";
16 | @import "stacked";
17 | @import "icons";
18 |
--------------------------------------------------------------------------------
/static/css/plugins/iCheck/green.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/plugins/iCheck/green.png
--------------------------------------------------------------------------------
/static/css/plugins/iCheck/green@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/css/plugins/iCheck/green@2x.png
--------------------------------------------------------------------------------
/static/css/plugins/morris/morris-0.4.3.min.css:
--------------------------------------------------------------------------------
1 | .morris-hover{position:absolute;z-index:1000;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255, 255, 255, 0.8);border:solid 2px rgba(230, 230, 230, 0.8);font-family:sans-serif;font-size:12px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;}
2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;}
--------------------------------------------------------------------------------
/static/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/static/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/static/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/static/img/Down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/Down.gif
--------------------------------------------------------------------------------
/static/img/Up.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/Up.gif
--------------------------------------------------------------------------------
/static/img/a1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/a1.jpg
--------------------------------------------------------------------------------
/static/img/a2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/a2.jpg
--------------------------------------------------------------------------------
/static/img/a3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/a3.jpg
--------------------------------------------------------------------------------
/static/img/a4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/a4.jpg
--------------------------------------------------------------------------------
/static/img/a5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/a5.jpg
--------------------------------------------------------------------------------
/static/img/a6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/a6.jpg
--------------------------------------------------------------------------------
/static/img/a7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/a7.jpg
--------------------------------------------------------------------------------
/static/img/a8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/a8.jpg
--------------------------------------------------------------------------------
/static/img/angular_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/angular_logo.png
--------------------------------------------------------------------------------
/static/img/email_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/email_1.jpg
--------------------------------------------------------------------------------
/static/img/email_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/email_2.jpg
--------------------------------------------------------------------------------
/static/img/email_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/email_3.jpg
--------------------------------------------------------------------------------
/static/img/p.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/p.ico
--------------------------------------------------------------------------------
/static/img/p1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/p1.jpg
--------------------------------------------------------------------------------
/static/img/p2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/p2.jpg
--------------------------------------------------------------------------------
/static/img/p3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/p3.jpg
--------------------------------------------------------------------------------
/static/img/p4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/p4.jpg
--------------------------------------------------------------------------------
/static/img/p5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/p5.jpg
--------------------------------------------------------------------------------
/static/img/p6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/p6.jpg
--------------------------------------------------------------------------------
/static/img/p7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/p7.jpg
--------------------------------------------------------------------------------
/static/img/p8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/p8.jpg
--------------------------------------------------------------------------------
/static/img/p_big1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/p_big1.jpg
--------------------------------------------------------------------------------
/static/img/p_big2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/p_big2.jpg
--------------------------------------------------------------------------------
/static/img/p_big3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/p_big3.jpg
--------------------------------------------------------------------------------
/static/img/profile.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/profile.jpg
--------------------------------------------------------------------------------
/static/img/profile_big.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/profile_big.jpg
--------------------------------------------------------------------------------
/static/img/profile_small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/profile_small.jpg
--------------------------------------------------------------------------------
/static/img/zender_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/img/zender_logo.png
--------------------------------------------------------------------------------
/static/js/demo/peity-demo.js:
--------------------------------------------------------------------------------
1 | $(function() {
2 | $("span.pie").peity("pie", {
3 | fill: ['#1ab394', '#d7d7d7', '#ffffff']
4 | })
5 |
6 | $(".line").peity("line",{
7 | fill: '#1ab394',
8 | stroke:'#169c81',
9 | })
10 |
11 | $(".bar").peity("bar", {
12 | fill: ["#1ab394", "#d7d7d7"]
13 | })
14 |
15 | $(".bar_dashboard").peity("bar", {
16 | fill: ["#1ab394", "#d7d7d7"],
17 | width:100
18 | })
19 |
20 | var updatingChart = $(".updating-chart").peity("line", { fill: '#1ab394',stroke:'#169c81', width: 64 })
21 |
22 | setInterval(function() {
23 | var random = Math.round(Math.random() * 10)
24 | var values = updatingChart.text().split(",")
25 | values.shift()
26 | values.push(random)
27 |
28 | updatingChart
29 | .text(values.join(","))
30 | .change()
31 | }, 1000);
32 |
33 | });
34 |
--------------------------------------------------------------------------------
/static/js/ops.js:
--------------------------------------------------------------------------------
1 |
2 | function notify(type,icon,msg){
3 |
4 | $.notify({
5 | // options
6 | icon: icon,
7 | title: 'Ops+提示: ',
8 | message: msg,
9 | },{
10 | allow_dismiss: true,
11 | newest_on_top: false,
12 | type: type,
13 | delay: 5000,
14 | timer: 1000,
15 | icon_type: 'class',
16 | template: '' +
17 | '
× ' +
18 | '
' +
19 | '
{1} ' +
20 | '
{2} ' +
21 | '
'+
24 | '
'
25 | });
26 |
27 | }
28 |
--------------------------------------------------------------------------------
/static/js/plugins/codemirror/mode/ruby/test.js:
--------------------------------------------------------------------------------
1 | // CodeMirror, copyright (c) by Marijn Haverbeke and others
2 | // Distributed under an MIT license: http://codemirror.net/LICENSE
3 |
4 | (function() {
5 | var mode = CodeMirror.getMode({indentUnit: 2}, "ruby");
6 | function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }
7 |
8 | MT("divide_equal_operator",
9 | "[variable bar] [operator /=] [variable foo]");
10 |
11 | MT("divide_equal_operator_no_spacing",
12 | "[variable foo][operator /=][number 42]");
13 |
14 | })();
15 |
--------------------------------------------------------------------------------
/static/js/plugins/codemirror/mode/tiddlywiki/tiddlywiki.css:
--------------------------------------------------------------------------------
1 | span.cm-underlined {
2 | text-decoration: underline;
3 | }
4 | span.cm-strikethrough {
5 | text-decoration: line-through;
6 | }
7 | span.cm-brace {
8 | color: #170;
9 | font-weight: bold;
10 | }
11 | span.cm-table {
12 | color: blue;
13 | font-weight: bold;
14 | }
15 |
--------------------------------------------------------------------------------
/static/js/plugins/codemirror/mode/tiki/tiki.css:
--------------------------------------------------------------------------------
1 | .cm-tw-syntaxerror {
2 | color: #FFF;
3 | background-color: #900;
4 | }
5 |
6 | .cm-tw-deleted {
7 | text-decoration: line-through;
8 | }
9 |
10 | .cm-tw-header5 {
11 | font-weight: bold;
12 | }
13 | .cm-tw-listitem:first-child { /*Added first child to fix duplicate padding when highlighting*/
14 | padding-left: 10px;
15 | }
16 |
17 | .cm-tw-box {
18 | border-top-width: 0px ! important;
19 | border-style: solid;
20 | border-width: 1px;
21 | border-color: inherit;
22 | }
23 |
24 | .cm-tw-underline {
25 | text-decoration: underline;
26 | }
--------------------------------------------------------------------------------
/static/js/plugins/echart/vintage.js:
--------------------------------------------------------------------------------
1 | (function (root, factory) {
2 | if (typeof define === 'function' && define.amd) {
3 | // AMD. Register as an anonymous module.
4 | define(['exports', 'echarts'], factory);
5 | } else if (typeof exports === 'object' && typeof exports.nodeName !== 'string') {
6 | // CommonJS
7 | factory(exports, require('echarts'));
8 | } else {
9 | // Browser globals
10 | factory({}, root.echarts);
11 | }
12 | }(this, function (exports, echarts) {
13 | var log = function (msg) {
14 | if (typeof console !== 'undefined') {
15 | console && console.error && console.error(msg);
16 | }
17 | };
18 | if (!echarts) {
19 | log('ECharts is not Loaded');
20 | return;
21 | }
22 | var colorPalette = ['#d87c7c','#919e8b', '#d7ab82', '#6e7074','#61a0a8','#efa18d', '#787464', '#cc7e63', '#724e58', '#4b565b'];
23 | echarts.registerTheme('vintage', {
24 | color: colorPalette,
25 | backgroundColor: '#fef8ef',
26 | graph: {
27 | color: colorPalette
28 | }
29 | });
30 | }));
--------------------------------------------------------------------------------
/static/js/plugins/editormd/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/static/js/plugins/editormd/fonts/editormd-logo.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/fonts/editormd-logo.eot
--------------------------------------------------------------------------------
/static/js/plugins/editormd/fonts/editormd-logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Generated by IcoMoon
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/static/js/plugins/editormd/fonts/editormd-logo.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/fonts/editormd-logo.ttf
--------------------------------------------------------------------------------
/static/js/plugins/editormd/fonts/editormd-logo.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/fonts/editormd-logo.woff
--------------------------------------------------------------------------------
/static/js/plugins/editormd/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/static/js/plugins/editormd/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/static/js/plugins/editormd/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/static/js/plugins/editormd/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/loading.gif
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/loading@2x.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/loading@2x.gif
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/loading@3x.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/loading@3x.gif
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-favicon-16x16.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-favicon-16x16.ico
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-favicon-24x24.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-favicon-24x24.ico
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-favicon-32x32.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-favicon-32x32.ico
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-favicon-48x48.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-favicon-48x48.ico
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-favicon-64x64.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-favicon-64x64.ico
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-114x114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-114x114.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-120x120.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-144x144.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-16x16.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-180x180.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-240x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-240x240.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-24x24.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-24x24.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-320x320.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-320x320.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-32x32.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-48x48.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-57x57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-57x57.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-64x64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-64x64.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-72x72.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/editormd-logo-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/editormd-logo-96x96.png
--------------------------------------------------------------------------------
/static/js/plugins/editormd/images/logos/vi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/editormd/images/logos/vi.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-af.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.af={closeText:"Selekteer",prevText:"Vorige",nextText:"Volgende",currentText:"Vandag",monthNames:["Januarie","Februarie","Maart","April","Mei","Junie","Julie","Augustus","September","Oktober","November","Desember"],monthNamesShort:["Jan","Feb","Mrt","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],dayNames:["Sondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrydag","Saterdag"],dayNamesShort:["Son","Maa","Din","Woe","Don","Vry","Sat"],dayNamesMin:["So","Ma","Di","Wo","Do","Vr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.af)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ar-DZ.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional["ar-DZ"]={closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["جانفي","فيفري","مارس","أفريل","ماي","جوان","جويلية","أوت","سبتمبر","أكتوبر","نوفمبر","ديسمبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional["ar-DZ"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ar.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.ar={closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["كانون الثاني","شباط","آذار","نيسان","مايو","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.ar)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-az.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.az={closeText:"Bağla",prevText:"<Geri",nextText:"İrəli>",currentText:"Bugün",monthNames:["Yanvar","Fevral","Mart","Aprel","May","İyun","İyul","Avqust","Sentyabr","Oktyabr","Noyabr","Dekabr"],monthNamesShort:["Yan","Fev","Mar","Apr","May","İyun","İyul","Avq","Sen","Okt","Noy","Dek"],dayNames:["Bazar","Bazar ertəsi","Çərşənbə axşamı","Çərşənbə","Cümə axşamı","Cümə","Şənbə"],dayNamesShort:["B","Be","Ça","Ç","Ca","C","Ş"],dayNamesMin:["B","B","Ç","С","Ç","C","Ş"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.az)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-be.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.be={closeText:"Зачыніць",prevText:"←Папяр.",nextText:"Наст.→",currentText:"Сёньня",monthNames:["Студзень","Люты","Сакавік","Красавік","Травень","Чэрвень","Ліпень","Жнівень","Верасень","Кастрычнік","Лістапад","Сьнежань"],monthNamesShort:["Сту","Лют","Сак","Кра","Тра","Чэр","Ліп","Жні","Вер","Кас","Ліс","Сьн"],dayNames:["нядзеля","панядзелак","аўторак","серада","чацьвер","пятніца","субота"],dayNamesShort:["ндз","пнд","аўт","срд","чцв","птн","сбт"],dayNamesMin:["Нд","Пн","Аў","Ср","Чц","Пт","Сб"],weekHeader:"Тд",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.be)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-bg.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.bg={closeText:"затвори",prevText:"<назад",nextText:"напред>",nextBigText:">>",currentText:"днес",monthNames:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Яну","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Нов","Дек"],dayNames:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],dayNamesShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Съ"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.bg)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-bs.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.bs={closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Januar","Februar","Mart","April","Maj","Juni","Juli","August","Septembar","Oktobar","Novembar","Decembar"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.bs)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ca.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.ca={closeText:"Tanca",prevText:"Anterior",nextText:"Següent",currentText:"Avui",monthNames:["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"],monthNamesShort:["gen","feb","març","abr","maig","juny","jul","ag","set","oct","nov","des"],dayNames:["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],dayNamesShort:["dg","dl","dt","dc","dj","dv","ds"],dayNamesMin:["dg","dl","dt","dc","dj","dv","ds"],weekHeader:"Set",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.ca)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-cs.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.cs={closeText:"Zavřít",prevText:"<Dříve",nextText:"Později>",currentText:"Nyní",monthNames:["leden","únor","březen","duben","květen","červen","červenec","srpen","září","říjen","listopad","prosinec"],monthNamesShort:["led","úno","bře","dub","kvě","čer","čvc","srp","zář","říj","lis","pro"],dayNames:["neděle","pondělí","úterý","středa","čtvrtek","pátek","sobota"],dayNamesShort:["ne","po","út","st","čt","pá","so"],dayNamesMin:["ne","po","út","st","čt","pá","so"],weekHeader:"Týd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.cs)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-cy-GB.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional["cy-GB"]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["Ionawr","Chwefror","Mawrth","Ebrill","Mai","Mehefin","Gorffennaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr"],monthNamesShort:["Ion","Chw","Maw","Ebr","Mai","Meh","Gor","Aws","Med","Hyd","Tac","Rha"],dayNames:["Dydd Sul","Dydd Llun","Dydd Mawrth","Dydd Mercher","Dydd Iau","Dydd Gwener","Dydd Sadwrn"],dayNamesShort:["Sul","Llu","Maw","Mer","Iau","Gwe","Sad"],dayNamesMin:["Su","Ll","Ma","Me","Ia","Gw","Sa"],weekHeader:"Wy",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional["cy-GB"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-da.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.da={closeText:"Luk",prevText:"<Forrige",nextText:"Næste>",currentText:"Idag",monthNames:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayNamesMin:["Sø","Ma","Ti","On","To","Fr","Lø"],weekHeader:"Uge",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.da)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-de.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.de={closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.de)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-el.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.el={closeText:"Κλείσιμο",prevText:"Προηγούμενος",nextText:"Επόμενος",currentText:"Τρέχων Μήνας",monthNames:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthNamesShort:["Ιαν","Φεβ","Μαρ","Απρ","Μαι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],dayNames:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],dayNamesShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],dayNamesMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],weekHeader:"Εβδ",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.el)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-en-AU.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional["en-AU"]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional["en-AU"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-en-GB.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional["en-GB"]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional["en-GB"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-en-NZ.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional["en-NZ"]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional["en-NZ"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-eo.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.eo={closeText:"Fermi",prevText:"<Anta",nextText:"Sekv>",currentText:"Nuna",monthNames:["Januaro","Februaro","Marto","Aprilo","Majo","Junio","Julio","Aŭgusto","Septembro","Oktobro","Novembro","Decembro"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aŭg","Sep","Okt","Nov","Dec"],dayNames:["Dimanĉo","Lundo","Mardo","Merkredo","Ĵaŭdo","Vendredo","Sabato"],dayNamesShort:["Dim","Lun","Mar","Mer","Ĵaŭ","Ven","Sab"],dayNamesMin:["Di","Lu","Ma","Me","Ĵa","Ve","Sa"],weekHeader:"Sb",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.eo)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-es.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.es={closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ogo","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","juv","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.es)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-et.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.et={closeText:"Sulge",prevText:"Eelnev",nextText:"Järgnev",currentText:"Täna",monthNames:["Jaanuar","Veebruar","Märts","Aprill","Mai","Juuni","Juuli","August","September","Oktoober","November","Detsember"],monthNamesShort:["Jaan","Veebr","Märts","Apr","Mai","Juuni","Juuli","Aug","Sept","Okt","Nov","Dets"],dayNames:["Pühapäev","Esmaspäev","Teisipäev","Kolmapäev","Neljapäev","Reede","Laupäev"],dayNamesShort:["Pühap","Esmasp","Teisip","Kolmap","Neljap","Reede","Laup"],dayNamesMin:["P","E","T","K","N","R","L"],weekHeader:"näd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.et)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-eu.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.eu={closeText:"Egina",prevText:"<Aur",nextText:"Hur>",currentText:"Gaur",monthNames:["urtarrila","otsaila","martxoa","apirila","maiatza","ekaina","uztaila","abuztua","iraila","urria","azaroa","abendua"],monthNamesShort:["urt.","ots.","mar.","api.","mai.","eka.","uzt.","abu.","ira.","urr.","aza.","abe."],dayNames:["igandea","astelehena","asteartea","asteazkena","osteguna","ostirala","larunbata"],dayNamesShort:["ig.","al.","ar.","az.","og.","ol.","lr."],dayNamesMin:["ig","al","ar","az","og","ol","lr"],weekHeader:"As",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.eu)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fa.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.fa={closeText:"بستن",prevText:"<قبلی",nextText:"بعدی>",currentText:"امروز",monthNames:["فروردين","ارديبهشت","خرداد","تير","مرداد","شهريور","مهر","آبان","آذر","دی","بهمن","اسفند"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["يکشنبه","دوشنبه","سهشنبه","چهارشنبه","پنجشنبه","جمعه","شنبه"],dayNamesShort:["ی","د","س","چ","پ","ج","ش"],dayNamesMin:["ی","د","س","چ","پ","ج","ش"],weekHeader:"هف",dateFormat:"yy/mm/dd",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.fa)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fi.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.fi={closeText:"Sulje",prevText:"«Edellinen",nextText:"Seuraava»",currentText:"Tänään",monthNames:["Tammikuu","Helmikuu","Maaliskuu","Huhtikuu","Toukokuu","Kesäkuu","Heinäkuu","Elokuu","Syyskuu","Lokakuu","Marraskuu","Joulukuu"],monthNamesShort:["Tammi","Helmi","Maalis","Huhti","Touko","Kesä","Heinä","Elo","Syys","Loka","Marras","Joulu"],dayNamesShort:["Su","Ma","Ti","Ke","To","Pe","La"],dayNames:["Sunnuntai","Maanantai","Tiistai","Keskiviikko","Torstai","Perjantai","Lauantai"],dayNamesMin:["Su","Ma","Ti","Ke","To","Pe","La"],weekHeader:"Vk",dateFormat:"d.m.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.fi)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fo.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.fo={closeText:"Lat aftur",prevText:"<Fyrra",nextText:"Næsta>",currentText:"Í dag",monthNames:["Januar","Februar","Mars","Apríl","Mei","Juni","Juli","August","September","Oktober","November","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],dayNames:["Sunnudagur","Mánadagur","Týsdagur","Mikudagur","Hósdagur","Fríggjadagur","Leyardagur"],dayNamesShort:["Sun","Mán","Týs","Mik","Hós","Frí","Ley"],dayNamesMin:["Su","Má","Tý","Mi","Hó","Fr","Le"],weekHeader:"Vk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.fo)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fr-CA.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional["fr-CA"]={closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional["fr-CA"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fr-CH.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional["fr-CH"]={closeText:"Fermer",prevText:"<Préc",nextText:"Suiv>",currentText:"Courant",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sm",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional["fr-CH"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-fr.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.fr={closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.fr)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-gl.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.gl={closeText:"Pechar",prevText:"<Ant",nextText:"Seg>",currentText:"Hoxe",monthNames:["Xaneiro","Febreiro","Marzo","Abril","Maio","Xuño","Xullo","Agosto","Setembro","Outubro","Novembro","Decembro"],monthNamesShort:["Xan","Feb","Mar","Abr","Mai","Xuñ","Xul","Ago","Set","Out","Nov","Dec"],dayNames:["Domingo","Luns","Martes","Mércores","Xoves","Venres","Sábado"],dayNamesShort:["Dom","Lun","Mar","Mér","Xov","Ven","Sáb"],dayNamesMin:["Do","Lu","Ma","Mé","Xo","Ve","Sá"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.gl)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-he.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(t){t.datepicker.regional.he={closeText:"סגור",prevText:"<הקודם",nextText:"הבא>",currentText:"היום",monthNames:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthNamesShort:["ינו","פבר","מרץ","אפר","מאי","יוני","יולי","אוג","ספט","אוק","נוב","דצמ"],dayNames:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת"],dayNamesShort:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],dayNamesMin:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""},t.datepicker.setDefaults(t.datepicker.regional.he)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-hi.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.hi={closeText:"बंद",prevText:"पिछला",nextText:"अगला",currentText:"आज",monthNames:["जनवरी ","फरवरी","मार्च","अप्रेल","मई","जून","जूलाई","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर"],monthNamesShort:["जन","फर","मार्च","अप्रेल","मई","जून","जूलाई","अग","सित","अक्ट","नव","दि"],dayNames:["रविवार","सोमवार","मंगलवार","बुधवार","गुरुवार","शुक्रवार","शनिवार"],dayNamesShort:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],dayNamesMin:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],weekHeader:"हफ्ता",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.hi)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-hr.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.hr={closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthNamesShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Tje",dateFormat:"dd.mm.yy.",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.hr)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-hu.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.hu={closeText:"bezár",prevText:"vissza",nextText:"előre",currentText:"ma",monthNames:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],monthNamesShort:["Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Szep","Okt","Nov","Dec"],dayNames:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat"],dayNamesShort:["Vas","Hét","Ked","Sze","Csü","Pén","Szo"],dayNamesMin:["V","H","K","Sze","Cs","P","Szo"],weekHeader:"Hét",dateFormat:"yy.mm.dd.",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.hu)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-hy.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.hy={closeText:"Փակել",prevText:"<Նախ.",nextText:"Հաջ.>",currentText:"Այսօր",monthNames:["Հունվար","Փետրվար","Մարտ","Ապրիլ","Մայիս","Հունիս","Հուլիս","Օգոստոս","Սեպտեմբեր","Հոկտեմբեր","Նոյեմբեր","Դեկտեմբեր"],monthNamesShort:["Հունվ","Փետր","Մարտ","Ապր","Մայիս","Հունիս","Հուլ","Օգս","Սեպ","Հոկ","Նոյ","Դեկ"],dayNames:["կիրակի","եկուշաբթի","երեքշաբթի","չորեքշաբթի","հինգշաբթի","ուրբաթ","շաբաթ"],dayNamesShort:["կիր","երկ","երք","չրք","հնգ","ուրբ","շբթ"],dayNamesMin:["կիր","երկ","երք","չրք","հնգ","ուրբ","շբթ"],weekHeader:"ՇԲՏ",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.hy)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-id.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.id={closeText:"Tutup",prevText:"<mundur",nextText:"maju>",currentText:"hari ini",monthNames:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","Nopember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agus","Sep","Okt","Nop","Des"],dayNames:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],dayNamesShort:["Min","Sen","Sel","Rab","kam","Jum","Sab"],dayNamesMin:["Mg","Sn","Sl","Rb","Km","jm","Sb"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.id)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-is.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.is={closeText:"Loka",prevText:"< Fyrri",nextText:"Næsti >",currentText:"Í dag",monthNames:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],dayNames:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],dayNamesShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],dayNamesMin:["Su","Má","Þr","Mi","Fi","Fö","La"],weekHeader:"Vika",dateFormat:"dd.mm.yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.is)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-it.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.it={closeText:"Chiudi",prevText:"<Prec",nextText:"Succ>",currentText:"Oggi",monthNames:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthNamesShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],dayNames:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],dayNamesShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],dayNamesMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.it)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ja.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.ja={closeText:"閉じる",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthNamesShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayNames:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],dayNamesShort:["日","月","火","水","木","金","土"],dayNamesMin:["日","月","火","水","木","金","土"],weekHeader:"週",dateFormat:"yy/mm/dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"},e.datepicker.setDefaults(e.datepicker.regional.ja)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ka.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.ka={closeText:"დახურვა",prevText:"< წინა",nextText:"შემდეგი >",currentText:"დღეს",monthNames:["იანვარი","თებერვალი","მარტი","აპრილი","მაისი","ივნისი","ივლისი","აგვისტო","სექტემბერი","ოქტომბერი","ნოემბერი","დეკემბერი"],monthNamesShort:["იან","თებ","მარ","აპრ","მაი","ივნ","ივლ","აგვ","სექ","ოქტ","ნოე","დეკ"],dayNames:["კვირა","ორშაბათი","სამშაბათი","ოთხშაბათი","ხუთშაბათი","პარასკევი","შაბათი"],dayNamesShort:["კვ","ორშ","სამ","ოთხ","ხუთ","პარ","შაბ"],dayNamesMin:["კვ","ორშ","სამ","ოთხ","ხუთ","პარ","შაბ"],weekHeader:"კვირა",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.ka)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-kk.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.kk={closeText:"Жабу",prevText:"<Алдыңғы",nextText:"Келесі>",currentText:"Бүгін",monthNames:["Қаңтар","Ақпан","Наурыз","Сәуір","Мамыр","Маусым","Шілде","Тамыз","Қыркүйек","Қазан","Қараша","Желтоқсан"],monthNamesShort:["Қаң","Ақп","Нау","Сәу","Мам","Мау","Шіл","Там","Қыр","Қаз","Қар","Жел"],dayNames:["Жексенбі","Дүйсенбі","Сейсенбі","Сәрсенбі","Бейсенбі","Жұма","Сенбі"],dayNamesShort:["жкс","дсн","ссн","срс","бсн","жма","снб"],dayNamesMin:["Жк","Дс","Сс","Ср","Бс","Жм","Сн"],weekHeader:"Не",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.kk)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-km.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.km={closeText:"ធ្វើរួច",prevText:"មុន",nextText:"បន្ទាប់",currentText:"ថ្ងៃនេះ",monthNames:["មករា","កុម្ភៈ","មីនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],monthNamesShort:["មករា","កុម្ភៈ","មីនា","មេសា","ឧសភា","មិថុនា","កក្កដា","សីហា","កញ្ញា","តុលា","វិច្ឆិកា","ធ្នូ"],dayNames:["អាទិត្យ","ចន្ទ","អង្គារ","ពុធ","ព្រហស្បតិ៍","សុក្រ","សៅរ៍"],dayNamesShort:["អា","ច","អ","ពុ","ព្រហ","សុ","សៅ"],dayNamesMin:["អា","ច","អ","ពុ","ព្រហ","សុ","សៅ"],weekHeader:"សប្ដាហ៍",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.km)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ko.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.ko={closeText:"닫기",prevText:"이전달",nextText:"다음달",currentText:"오늘",monthNames:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthNamesShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dayNames:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],dayNamesShort:["일","월","화","수","목","금","토"],dayNamesMin:["일","월","화","수","목","금","토"],weekHeader:"Wk",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"년"},e.datepicker.setDefaults(e.datepicker.regional.ko)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ky.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.ky={closeText:"Жабуу",prevText:"<Мур",nextText:"Кий>",currentText:"Бүгүн",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["жекшемби","дүйшөмбү","шейшемби","шаршемби","бейшемби","жума","ишемби"],dayNamesShort:["жек","дүй","шей","шар","бей","жум","ише"],dayNamesMin:["Жк","Дш","Шш","Шр","Бш","Жм","Иш"],weekHeader:"Жум",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.ky)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-lb.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.lb={closeText:"Fäerdeg",prevText:"Zréck",nextText:"Weider",currentText:"Haut",monthNames:["Januar","Februar","Mäerz","Abrëll","Mee","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mäe","Abr","Mee","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonndeg","Méindeg","Dënschdeg","Mëttwoch","Donneschdeg","Freideg","Samschdeg"],dayNamesShort:["Son","Méi","Dën","Mët","Don","Fre","Sam"],dayNamesMin:["So","Mé","Dë","Më","Do","Fr","Sa"],weekHeader:"W",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.lb)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-lt.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.lt={closeText:"Uždaryti",prevText:"<Atgal",nextText:"Pirmyn>",currentText:"Šiandien",monthNames:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthNamesShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],dayNames:["sekmadienis","pirmadienis","antradienis","trečiadienis","ketvirtadienis","penktadienis","šeštadienis"],dayNamesShort:["sek","pir","ant","tre","ket","pen","šeš"],dayNamesMin:["Se","Pr","An","Tr","Ke","Pe","Še"],weekHeader:"SAV",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.lt)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-lv.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.lv={closeText:"Aizvērt",prevText:"Iepr.",nextText:"Nāk.",currentText:"Šodien",monthNames:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthNamesShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],dayNames:["svētdiena","pirmdiena","otrdiena","trešdiena","ceturtdiena","piektdiena","sestdiena"],dayNamesShort:["svt","prm","otr","tre","ctr","pkt","sst"],dayNamesMin:["Sv","Pr","Ot","Tr","Ct","Pk","Ss"],weekHeader:"Ned.",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.lv)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-mk.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.mk={closeText:"Затвори",prevText:"<",nextText:">",currentText:"Денес",monthNames:["Јануари","Февруари","Март","Април","Мај","Јуни","Јули","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Јан","Фев","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Ное","Дек"],dayNames:["Недела","Понеделник","Вторник","Среда","Четврток","Петок","Сабота"],dayNamesShort:["Нед","Пон","Вто","Сре","Чет","Пет","Саб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Са"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.mk)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ml.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.ml={closeText:"ശരി",prevText:"മുന്നത്തെ",nextText:"അടുത്തത് ",currentText:"ഇന്ന്",monthNames:["ജനുവരി","ഫെബ്രുവരി","മാര്ച്ച്","ഏപ്രില്","മേയ്","ജൂണ്","ജൂലൈ","ആഗസ്റ്റ്","സെപ്റ്റംബര്","ഒക്ടോബര്","നവംബര്","ഡിസംബര്"],monthNamesShort:["ജനു","ഫെബ്","മാര്","ഏപ്രി","മേയ്","ജൂണ്","ജൂലാ","ആഗ","സെപ്","ഒക്ടോ","നവം","ഡിസ"],dayNames:["ഞായര്","തിങ്കള്","ചൊവ്വ","ബുധന്","വ്യാഴം","വെള്ളി","ശനി"],dayNamesShort:["ഞായ","തിങ്ക","ചൊവ്വ","ബുധ","വ്യാഴം","വെള്ളി","ശനി"],dayNamesMin:["ഞാ","തി","ചൊ","ബു","വ്യാ","വെ","ശ"],weekHeader:"ആ",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.ml)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ms.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.ms={closeText:"Tutup",prevText:"<Sebelum",nextText:"Selepas>",currentText:"hari ini",monthNames:["Januari","Februari","Mac","April","Mei","Jun","Julai","Ogos","September","Oktober","November","Disember"],monthNamesShort:["Jan","Feb","Mac","Apr","Mei","Jun","Jul","Ogo","Sep","Okt","Nov","Dis"],dayNames:["Ahad","Isnin","Selasa","Rabu","Khamis","Jumaat","Sabtu"],dayNamesShort:["Aha","Isn","Sel","Rab","kha","Jum","Sab"],dayNamesMin:["Ah","Is","Se","Ra","Kh","Ju","Sa"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.ms)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-nb.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.nb={closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.nb)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-nl-BE.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional["nl-BE"]={closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional["nl-BE"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-nl.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.nl={closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.nl)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-nn.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.nn={closeText:"Lukk",prevText:"«Førre",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["sun","mån","tys","ons","tor","fre","lau"],dayNames:["sundag","måndag","tysdag","onsdag","torsdag","fredag","laurdag"],dayNamesMin:["su","må","ty","on","to","fr","la"],weekHeader:"Veke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.nn)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-no.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.no={closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.no)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-pl.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.pl={closeText:"Zamknij",prevText:"<Poprzedni",nextText:"Następny>",currentText:"Dziś",monthNames:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],monthNamesShort:["Sty","Lu","Mar","Kw","Maj","Cze","Lip","Sie","Wrz","Pa","Lis","Gru"],dayNames:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],dayNamesShort:["Nie","Pn","Wt","Śr","Czw","Pt","So"],dayNamesMin:["N","Pn","Wt","Śr","Cz","Pt","So"],weekHeader:"Tydz",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.pl)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-pt-BR.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional["pt-BR"]={closeText:"Fechar",prevText:"<Anterior",nextText:"Próximo>",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional["pt-BR"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-pt.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.pt={closeText:"Fechar",prevText:"Anterior",nextText:"Seguinte",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sem",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.pt)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-rm.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.rm={closeText:"Serrar",prevText:"<Suandant",nextText:"Precedent>",currentText:"Actual",monthNames:["Schaner","Favrer","Mars","Avrigl","Matg","Zercladur","Fanadur","Avust","Settember","October","November","December"],monthNamesShort:["Scha","Fev","Mar","Avr","Matg","Zer","Fan","Avu","Sett","Oct","Nov","Dec"],dayNames:["Dumengia","Glindesdi","Mardi","Mesemna","Gievgia","Venderdi","Sonda"],dayNamesShort:["Dum","Gli","Mar","Mes","Gie","Ven","Som"],dayNamesMin:["Du","Gl","Ma","Me","Gi","Ve","So"],weekHeader:"emna",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.rm)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ro.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.ro={closeText:"Închide",prevText:"« Luna precedentă",nextText:"Luna următoare »",currentText:"Azi",monthNames:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthNamesShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],dayNamesShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],dayNamesMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],weekHeader:"Săpt",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.ro)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ru.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.ru={closeText:"Закрыть",prevText:"<Пред",nextText:"След>",currentText:"Сегодня",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],dayNamesShort:["вск","пнд","втр","срд","чтв","птн","сбт"],dayNamesMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Нед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.ru)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sk.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.sk={closeText:"Zavrieť",prevText:"<Predchádzajúci",nextText:"Nasledujúci>",currentText:"Dnes",monthNames:["január","február","marec","apríl","máj","jún","júl","august","september","október","november","december"],monthNamesShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],dayNames:["nedeľa","pondelok","utorok","streda","štvrtok","piatok","sobota"],dayNamesShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],dayNamesMin:["Ne","Po","Ut","St","Št","Pia","So"],weekHeader:"Ty",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.sk)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sl.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.sl={closeText:"Zapri",prevText:"<Prejšnji",nextText:"Naslednji>",currentText:"Trenutni",monthNames:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],dayNamesShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],dayNamesMin:["Ne","Po","To","Sr","Če","Pe","So"],weekHeader:"Teden",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.sl)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sq.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.sq={closeText:"mbylle",prevText:"<mbrapa",nextText:"Përpara>",currentText:"sot",monthNames:["Janar","Shkurt","Mars","Prill","Maj","Qershor","Korrik","Gusht","Shtator","Tetor","Nëntor","Dhjetor"],monthNamesShort:["Jan","Shk","Mar","Pri","Maj","Qer","Kor","Gus","Sht","Tet","Nën","Dhj"],dayNames:["E Diel","E Hënë","E Martë","E Mërkurë","E Enjte","E Premte","E Shtune"],dayNamesShort:["Di","Hë","Ma","Më","En","Pr","Sh"],dayNamesMin:["Di","Hë","Ma","Më","En","Pr","Sh"],weekHeader:"Ja",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.sq)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sr-SR.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional["sr-SR"]={closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Januar","Februar","Mart","April","Maj","Jun","Jul","Avgust","Septembar","Oktobar","Novembar","Decembar"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljak","Utorak","Sreda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sre","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Sed",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional["sr-SR"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sr.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.sr={closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.sr)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-sv.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.sv={closeText:"Stäng",prevText:"«Förra",nextText:"Nästa»",currentText:"Idag",monthNames:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNamesShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],dayNames:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],dayNamesMin:["Sö","Må","Ti","On","To","Fr","Lö"],weekHeader:"Ve",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.sv)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-ta.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.ta={closeText:"மூடு",prevText:"முன்னையது",nextText:"அடுத்தது",currentText:"இன்று",monthNames:["தை","மாசி","பங்குனி","சித்திரை","வைகாசி","ஆனி","ஆடி","ஆவணி","புரட்டாசி","ஐப்பசி","கார்த்திகை","மார்கழி"],monthNamesShort:["தை","மாசி","பங்","சித்","வைகா","ஆனி","ஆடி","ஆவ","புர","ஐப்","கார்","மார்"],dayNames:["ஞாயிற்றுக்கிழமை","திங்கட்கிழமை","செவ்வாய்க்கிழமை","புதன்கிழமை","வியாழக்கிழமை","வெள்ளிக்கிழமை","சனிக்கிழமை"],dayNamesShort:["ஞாயிறு","திங்கள்","செவ்வாய்","புதன்","வியாழன்","வெள்ளி","சனி"],dayNamesMin:["ஞா","தி","செ","பு","வி","வெ","ச"],weekHeader:"Не",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.ta)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-th.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.th={closeText:"ปิด",prevText:"« ย้อน",nextText:"ถัดไป »",currentText:"วันนี้",monthNames:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthNamesShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],dayNames:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์"],dayNamesShort:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],dayNamesMin:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.th)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-tj.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.tj={closeText:"Идома",prevText:"<Қафо",nextText:"Пеш>",currentText:"Имрӯз",monthNames:["Январ","Феврал","Март","Апрел","Май","Июн","Июл","Август","Сентябр","Октябр","Ноябр","Декабр"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["якшанбе","душанбе","сешанбе","чоршанбе","панҷшанбе","ҷумъа","шанбе"],dayNamesShort:["якш","душ","сеш","чор","пан","ҷум","шан"],dayNamesMin:["Як","Дш","Сш","Чш","Пш","Ҷм","Шн"],weekHeader:"Хф",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.tj)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-tr.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.tr={closeText:"kapat",prevText:"<geri",nextText:"ileri>",currentText:"bugün",monthNames:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthNamesShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],dayNames:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],dayNamesShort:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],dayNamesMin:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.tr)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-uk.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.uk={closeText:"Закрити",prevText:"<",nextText:">",currentText:"Сьогодні",monthNames:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthNamesShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],dayNames:["неділя","понеділок","вівторок","середа","четвер","п’ятниця","субота"],dayNamesShort:["нед","пнд","вів","срд","чтв","птн","сбт"],dayNamesMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Тиж",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.uk)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-vi.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional.vi={closeText:"Đóng",prevText:"<Trước",nextText:"Tiếp>",currentText:"Hôm nay",monthNames:["Tháng Một","Tháng Hai","Tháng Ba","Tháng Tư","Tháng Năm","Tháng Sáu","Tháng Bảy","Tháng Tám","Tháng Chín","Tháng Mười","Tháng Mười Một","Tháng Mười Hai"],monthNamesShort:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],dayNames:["Chủ Nhật","Thứ Hai","Thứ Ba","Thứ Tư","Thứ Năm","Thứ Sáu","Thứ Bảy"],dayNamesShort:["CN","T2","T3","T4","T5","T6","T7"],dayNamesMin:["CN","T2","T3","T4","T5","T6","T7"],weekHeader:"Tu",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.vi)});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-zh-CN.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional["zh-CN"]={closeText:"关闭",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"},e.datepicker.setDefaults(e.datepicker.regional["zh-CN"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-zh-HK.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional["zh-HK"]={closeText:"關閉",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"dd-mm-yy",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"},e.datepicker.setDefaults(e.datepicker.regional["zh-HK"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/i18n/jquery.ui.datepicker-zh-TW.min.js:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.4 - 2014-01-17
2 | * http://jqueryui.com
3 | * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
4 | jQuery(function(e){e.datepicker.regional["zh-TW"]={closeText:"關閉",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy/mm/dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"},e.datepicker.setDefaults(e.datepicker.regional["zh-TW"])});
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/animated-overlay.gif
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/static/js/plugins/jquery-ui/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/jquery-ui/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/static/js/plugins/layer/skin/default/icon-ext.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/layer/skin/default/icon-ext.png
--------------------------------------------------------------------------------
/static/js/plugins/layer/skin/default/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/layer/skin/default/icon.png
--------------------------------------------------------------------------------
/static/js/plugins/layer/skin/default/loading-0.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/layer/skin/default/loading-0.gif
--------------------------------------------------------------------------------
/static/js/plugins/layer/skin/default/loading-1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/layer/skin/default/loading-1.gif
--------------------------------------------------------------------------------
/static/js/plugins/layer/skin/default/loading-2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/static/js/plugins/layer/skin/default/loading-2.gif
--------------------------------------------------------------------------------
/tasks/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/tasks/__init__.py
--------------------------------------------------------------------------------
/tasks/admin.py:
--------------------------------------------------------------------------------
1 | #-*- coding: utf-8 -*-
2 | '''
3 | Author: smallmi
4 | Blog: http://www.smallmi.com
5 | '''
6 | from django.contrib import admin
7 |
8 | # Register your models here.
9 | from .models import history,toolsscript
10 |
11 |
12 |
13 | admin.site.register(history)
14 | admin.site.register(toolsscript)
--------------------------------------------------------------------------------
/tasks/apps.py:
--------------------------------------------------------------------------------
1 | #-*- coding: utf-8 -*-
2 | '''
3 | Author: smallmi
4 | Blog: http://www.smallmi.com
5 | '''
6 | from django.apps import AppConfig
7 |
8 |
9 | class TasksConfig(AppConfig):
10 | name = 'tasks'
11 |
--------------------------------------------------------------------------------
/tasks/migrations/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/tasks/migrations/__init__.py
--------------------------------------------------------------------------------
/tasks/script/1.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/tasks/script/1.sh
--------------------------------------------------------------------------------
/tasks/script/test.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smallmi/omms/f6feb1b0d86bbedb26bfb896468a53d995f86a67/tasks/script/test.sh
--------------------------------------------------------------------------------
/tasks/tests.py:
--------------------------------------------------------------------------------
1 |
2 | # Create your tests here.
3 |
--------------------------------------------------------------------------------
/templates/403.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | PFMS | 403 Error
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
403
17 |
您没有权限操作@^@
18 |
19 | 请联系管理员进行授权!
20 |
返回首页:
21 |
首页
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/templates/accounts/contact_table.html:
--------------------------------------------------------------------------------
1 | {% for i in form %}
2 |
3 | {{ i.id }}
4 | {{ i.name }}
5 |
6 | {% if i.email %} {{i.email}} {% else %} 无 {% endif %}
7 |
8 |
9 | 编辑
10 | 删除
11 |
12 |
13 | {% endfor %}
--------------------------------------------------------------------------------
/templates/accounts/user/group_table.html:
--------------------------------------------------------------------------------
1 | {% load accounts_tag %}
2 | {% for i in content %}
3 |
4 | {{ i.name }}
5 |
6 | {% if i.user_set.all %}
7 | {{ i.user_set.all | usetostr }}
8 | {% endif %}
9 |
10 |
11 |
12 | 编辑
13 | 权限分配
14 | 删除
15 |
16 |
17 | {% endfor %}
18 |
--------------------------------------------------------------------------------
/templates/base/footer.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/templates/base/top_nav.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
11 |
12 |
13 | 欢迎使用 OMMS 守夜者
14 |
15 |
16 |
17 | 注销
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/templates/cmdb/group_table.html:
--------------------------------------------------------------------------------
1 | {% for i in content %}
2 |
3 | {{ forloop.counter }}
4 | {{ i.name }}
5 | {{ i.average_server }}
6 | {{ i.comment }}
7 | {{ i.created_by.fullname }}
8 | {{ i.date_created }}
9 |
10 | 编辑
11 | 删除
12 |
13 |
14 | {% endfor %}
--------------------------------------------------------------------------------
/templates/cmdb/idc_table.html:
--------------------------------------------------------------------------------
1 | {% for i in content %}
2 |
3 | {{ forloop.counter }}
4 | {{ i.name }}
5 | {{ i.average_server }}
6 | {{ i.contact }}
7 | {{ i.phone }}
8 | {{ i.operator }}
9 |
10 | 编辑
11 | 删除
12 |
13 | {{ i.address }}
14 | {{ i.intranet }}
15 | {{ i.extranet }}
16 |
17 | {% endfor %}
--------------------------------------------------------------------------------
/templates/error.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | PFMS | Error
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
ERROR
17 |
操作错误
18 |
19 |
{{ error }}
20 |
返回首页:
21 |
首页
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/templates/kube/container_table.html:
--------------------------------------------------------------------------------
1 | {% load accounts_tag %}
2 | {% for i in containerList %}
3 |
4 | {{ forloop.counter }}
5 | {{ i.ip }}
6 | {{ i.name }}
7 | {{ i.node }}
8 | {{ i.namespace }}
9 | {{ i.stime }}
10 |
11 |
12 | 查看
13 | 删除
14 |
15 |
16 |
17 | {% endfor %}
18 |
--------------------------------------------------------------------------------
/templates/tasks/k8s-install.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
安装过程:
5 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/templates/tasks/k8s_modal.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/templates/tasks/test.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Ajax Test
4 |
5 |
33 |
34 |
35 | Ajax Test
36 |
37 |
38 |
39 |
40 |
--------------------------------------------------------------------------------
/templates/tasks/tools-add.html:
--------------------------------------------------------------------------------
1 | {% extends "base/base_site.html" %}
2 | {% block content %}
3 |
4 |
5 |
6 |
7 |
脚本添加
8 |
{{ msg }}
9 |
10 | {% include 'tasks/tools-add_table.html' %}
11 |
12 |
13 |
14 | {% endblock %}
--------------------------------------------------------------------------------
/templates/tasks/tools_table.html:
--------------------------------------------------------------------------------
1 | {% for row in content %}
2 |
3 |
4 |
5 | {{ row.name }}
6 | {% ifequal row.tool_run_type 0 %} shell{% endifequal %} {% ifequal row.tool_run_type 1 %}
7 | python {% endifequal %} {% ifequal row.tool_run_type 2 %} yml {% endifequal %}
8 | {{ row.comment }}
9 | {{ row.utime }}
10 |
11 |
12 | 执行
14 |
15 | 编辑
17 | 删除
19 |
20 |
21 |
22 | {% endfor %}
--------------------------------------------------------------------------------