├── .idea ├── Dtop.iml ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── DNSPodApi └── DNSPodApi.py ├── DOCS └── Dartou运维管理平台说明.docx ├── DataDownload ├── BulidExcel.py └── __init__.py ├── EventManagement ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160926_1043.py │ ├── 0003_auto_20160926_1045.py │ ├── 0004_auto_20160926_1049.py │ ├── 0005_auto_20160926_1059.py │ ├── 0006_items_items_rete.py │ ├── 0007_auto_20160926_1535.py │ ├── 0008_auto_20160926_1631.py │ ├── 0009_items_finish_info.py │ ├── 0010_auto_20161008_1441.py │ ├── 0011_auto_20161009_0944.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── IMG ├── DNS.png ├── alarm.png ├── asset.png ├── auth.png ├── cloud.png ├── cm.png ├── em1.png ├── em2.png ├── index.png ├── op1.png └── op2.png ├── Log ├── __init__.py ├── admin.py ├── apps.py ├── excel_test.py ├── logHandle.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160919_1043.py │ ├── 0003_auto_20160919_1207.py │ ├── 0004_auto_20160919_1437.py │ ├── 0005_auto_20160920_1545.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── Matrix ├── __init__.py ├── admin.py ├── apps.py ├── buildexcel.py ├── check_permission.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160919_2047.py │ ├── 0003_auto_20160922_1952.py │ ├── 0004_auto_20160922_2053.py │ └── __init__.py ├── models.py ├── permissionchecklist.py ├── rest_urls.py ├── rest_views.py ├── serializer.py ├── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── V.html │ ├── V.html.20160107 │ ├── alarm │ │ ├── alarmRules.html │ │ ├── alarmRules.html.bak │ │ ├── alarmTransaction.html │ │ ├── bankInCharge.html │ │ ├── bankOperation.html │ │ ├── bussiAlarm.html │ │ ├── slaManager.html │ │ └── slaManager.html.bak │ ├── auth.html │ ├── auto │ │ ├── autorelease.html │ │ └── xianluqiehuan.html │ ├── home │ │ └── dashboard.html │ ├── info │ │ ├── baseinfo.html │ │ └── hostconfig.html │ ├── link │ │ ├── backstageManager.html │ │ ├── oacom.html │ │ ├── ordersView.html │ │ └── searchInfor.html │ ├── logout.html │ └── preview │ │ ├── .monthReport.html.swp │ │ ├── berbonTest.html │ │ ├── berbonTestView.html │ │ ├── editJober.html │ │ ├── kq.html │ │ ├── monthReport.html │ │ ├── officeInspection.html │ │ ├── operationsCount.html │ │ ├── responseRecords.html │ │ ├── sa.html │ │ ├── sainsert.html │ │ ├── scheduling.html │ │ └── schmonsrv.html ├── tests.py ├── tmp │ └── __init__.py └── views.py ├── OM ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160909_1457.py │ ├── 0003_cmdhistory_client_ip.py │ ├── 0004_auto_20160909_1608.py │ ├── 0005_auto_20160909_1610.py │ ├── 0006_auto_20160909_1611.py │ ├── 0007_servergroup_server_members.py │ ├── 0008_auto_20160910_1117.py │ ├── 0009_auto_20160910_1158.py │ ├── 0010_auto_20160913_1141.py │ ├── 0011_auto_20160913_1525.py │ ├── 0012_auto_20160918_1427.py │ ├── 0013_auto_20160918_1513.py │ └── __init__.py ├── models.py ├── om_excel.py ├── saltHandle.py ├── templates │ ├── OMindex.html.bak │ └── V.html ├── tests.py ├── urls.py └── views.py ├── README.md ├── ZabbixApi ├── ApiAuth.py ├── ApigetAlert.py ├── ApigetHostlist.py ├── ZabbixApigetAlertMessage.py ├── __init__.py ├── alert_recv.py └── alert_redis.py ├── download ├── __init__.py ├── core │ ├── FileHandle.py │ └── __init__.py └── file │ ├── __init__.py │ ├── csv │ └── __init__.py │ └── excel │ └── __init__.py ├── dtop ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── saltMaster ├── reloadSalt.sh ├── saltMaster.py ├── saltrpyc.py ├── saltrpyclinet.py ├── saltrun.py ├── saltweb.py └── saltwebargs.py ├── static ├── admin │ ├── css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── rtl.css │ │ └── widgets.css │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── actions.min.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── calendar.js │ │ ├── collapse.js │ │ ├── collapse.min.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── inlines.min.js │ │ ├── jquery.init.js │ │ ├── prepopulate.js │ │ ├── prepopulate.min.js │ │ ├── timeparse.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE-JQUERY.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ └── xregexp │ │ ├── LICENSE-XREGEXP.txt │ │ └── xregexp.min.js ├── drops │ ├── css │ │ ├── 95e46879.main.css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.min.js │ │ ├── jquery.js │ │ └── jquery.min.js ├── em │ ├── css │ │ ├── kkpager_blue.css │ │ ├── kkpager_orange.css │ │ └── style.css │ └── js │ │ ├── jquery-1.4.2.min.js │ │ ├── kkpager.js │ │ ├── kkpager.min.js │ │ └── script.js ├── matrix │ ├── css │ │ ├── bhq-right.css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-wysihtml5.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── buttons.dataTables.min.css │ │ ├── colorpicker.css │ │ ├── css-table.css │ │ ├── dataTableStyle.css │ │ ├── dataTables.bootstrap.css │ │ ├── datepicker.css │ │ ├── fonts.useso.css │ │ ├── footer.css │ │ ├── fullcalendar.css │ │ ├── jquery.dataTables.css │ │ ├── jquery.gritter.css │ │ ├── matrix-login.css │ │ ├── matrix-media.css │ │ ├── matrix-style-2.css │ │ ├── matrix-style.css │ │ ├── matrix-style.css.bak │ │ ├── pb_new.css │ │ ├── pnotify.custom.min.css │ │ ├── prettify.css │ │ ├── schmonid.css │ │ ├── select2.css │ │ ├── style.css │ │ ├── tab.css │ │ ├── tcal.css │ │ ├── toastr.css │ │ └── uniform.css │ ├── font-awesome │ │ ├── css │ │ │ ├── Descr.WD3 │ │ │ └── font-awesome.css │ │ └── font │ │ │ ├── Descr.WD3 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.eot@ │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ ├── images │ │ ├── backgrounds │ │ │ ├── Descr.WD3 │ │ │ ├── blank2 │ │ │ ├── calActiveBg.html │ │ │ └── skype_3Asuniljoshi19@call │ │ ├── favicon.ico │ │ ├── gallery │ │ │ └── imgbox3.html │ │ ├── icon.png │ │ ├── jkzx │ │ │ └── icon │ │ │ │ ├── 006.jpg │ │ │ │ ├── 008.jpg │ │ │ │ ├── 009.jpg │ │ │ │ ├── 010.png │ │ │ │ ├── 011.jpg │ │ │ │ ├── 012.png │ │ │ │ ├── SLA.png │ │ │ │ ├── alarm.png │ │ │ │ ├── bank.png │ │ │ │ ├── bhqMS.png │ │ │ │ ├── checknet.jpg │ │ │ │ ├── exam.png │ │ │ │ ├── fetionM.png │ │ │ │ ├── fireeye.png │ │ │ │ ├── freebuf.png │ │ │ │ ├── guide.png │ │ │ │ ├── help.ico │ │ │ │ ├── icon0.png │ │ │ │ ├── icon1.png │ │ │ │ ├── icon10.png │ │ │ │ ├── icon11.png │ │ │ │ ├── icon12.png │ │ │ │ ├── icon13.png │ │ │ │ ├── icon14.png │ │ │ │ ├── icon15.png │ │ │ │ ├── icon16.png │ │ │ │ ├── icon17.png │ │ │ │ ├── icon18.png │ │ │ │ ├── icon19.png │ │ │ │ ├── icon2.png │ │ │ │ ├── icon20.png │ │ │ │ ├── icon21.png │ │ │ │ ├── icon22.png │ │ │ │ ├── icon23.png │ │ │ │ ├── icon24.png │ │ │ │ ├── icon25.png │ │ │ │ ├── icon26.png │ │ │ │ ├── icon3.png │ │ │ │ ├── icon4.png │ │ │ │ ├── icon5.png │ │ │ │ ├── icon6.png │ │ │ │ ├── icon7.png │ │ │ │ ├── icon8.png │ │ │ │ ├── icon9.png │ │ │ │ ├── modem.png │ │ │ │ ├── nnksearch.png │ │ │ │ ├── sabj.png │ │ │ │ ├── schid.png │ │ │ │ ├── script.png │ │ │ │ ├── secgeek.png │ │ │ │ ├── shodan.png │ │ │ │ ├── sysAlarm.png │ │ │ │ ├── txq1.png │ │ │ │ ├── txq2.png │ │ │ │ ├── wd.png │ │ │ │ ├── wooyun.png │ │ │ │ ├── xyjl.png │ │ │ │ ├── yjxy.png │ │ │ │ ├── ywAlarm.png │ │ │ │ ├── yyfx.png │ │ │ │ └── zzgj.png │ │ ├── loading.gif │ │ ├── pic │ │ │ ├── huawei.jpg │ │ │ └── iphone6.jpg │ │ ├── sort_asc.png │ │ ├── sort_both.png │ │ └── sort_desc.png │ ├── img │ │ ├── 009.jpg │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── Descr.WD3 │ │ ├── alpha.html │ │ ├── breadcrumb.png │ │ ├── button_11.gif │ │ ├── cal.gif │ │ ├── dartoulogo.png │ │ ├── demo │ │ │ ├── Descr.WD3 │ │ │ ├── av1.jpg │ │ │ ├── av2.jpg │ │ │ ├── av3.jpg │ │ │ ├── av4.jpg │ │ │ ├── av5.jpg │ │ │ ├── demo-image1.jpg │ │ │ ├── demo-image2.jpg │ │ │ ├── demo-image3.jpg │ │ │ └── envelope.png │ │ ├── gallery │ │ │ ├── Descr.WD3 │ │ │ ├── imgbox1.jpg │ │ │ ├── imgbox2.jpg │ │ │ ├── imgbox3.jpg │ │ │ ├── imgbox4.jpg │ │ │ └── imgbox5.jpg │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.html │ │ ├── gritter.png │ │ ├── hue.png │ │ ├── icon.png │ │ ├── larrow.png │ │ ├── line.png │ │ ├── loginlogo.png │ │ ├── logo.png │ │ ├── logo_bak.png │ │ ├── logo_new.png │ │ ├── logo_new_min.png │ │ ├── menu-active.png │ │ ├── new.png │ │ ├── new_loginlogo.png │ │ ├── next_mon.gif │ │ ├── next_year.gif │ │ ├── no_cal.gif │ │ ├── prev_mon.gif │ │ ├── prev_year.gif │ │ ├── progress.gif │ │ ├── rarrow.png │ │ ├── saturation.png │ │ ├── select2.png │ │ ├── spinner.gif │ │ └── sprite.png │ └── js │ │ ├── ajaxfileupload.js │ │ ├── application-index.js │ │ ├── bootstrap-colorpicker.js │ │ ├── bootstrap-datepicker.js │ │ ├── bootstrap-wysihtml5.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── buttons.colVis.min.js │ │ ├── buttons.flash.min.js │ │ ├── chosen │ │ ├── Thumbs.db │ │ ├── chosen-sprite.png │ │ ├── chosen.css │ │ ├── chosen.jquery.js │ │ ├── chosen.jquery.min.js │ │ ├── chosen.proto.js │ │ └── chosen.proto.min.js │ │ ├── csrf.token.js │ │ ├── dataBase.js │ │ ├── dataBase.js.bak │ │ ├── dataBase2.js │ │ ├── dataTables.buttons.min.js │ │ ├── datatable.js │ │ ├── dateRangeUtil.js │ │ ├── download.js │ │ ├── echarts.min.js │ │ ├── excanvas.min.js │ │ ├── exporting.js │ │ ├── fullcalendar.min.js │ │ ├── highcharts.js │ │ ├── highcharts │ │ ├── data.js │ │ ├── draggable-legend.js │ │ ├── exporting.js │ │ ├── highcharts-3d.js │ │ └── highcharts.js │ │ ├── html5shiv.js │ │ ├── ifappname-index.js │ │ ├── jkzx │ │ └── js │ │ │ └── jquery-1.7.1.min.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.11.1.js │ │ ├── jquery-1.11.1.min.js │ │ ├── jquery-1.11.1.min.map │ │ ├── jquery-1.8.3.min.js │ │ ├── jquery.JPlaceholder.js │ │ ├── jquery.dataTables.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.pie.min.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.gritter.min.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.peity.min.js │ │ ├── jquery.toggle.buttons.html │ │ ├── jquery.ui.custom.js │ │ ├── jquery.uniform.js │ │ ├── jquery.validate.js │ │ ├── jquery.wizard.js │ │ ├── js.cookie.js │ │ ├── kf.ua.js │ │ ├── kt │ │ ├── css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── buttons.dataTables.min.css │ │ │ ├── dataTableStyle.css │ │ │ ├── dataTables.jqueryui.min.css │ │ │ ├── jquery-ui.css │ │ │ └── jquery.dataTables.min.css │ │ ├── images │ │ │ ├── sort_asc.png │ │ │ └── sort_both.png │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── buttons.colVis.min.js │ │ │ ├── buttons.flash.min.js │ │ │ ├── dataTables.buttons.min.js │ │ │ ├── dataTables.jqueryui.min.js │ │ │ ├── datatable.js │ │ │ ├── index.js │ │ │ ├── jquery-1.11.3.min.js │ │ │ ├── jquery-1.8.2.js │ │ │ ├── jquery.dataTables-1.10.10.min.js │ │ │ ├── jquery.dataTables-1.10.9.min.js │ │ │ └── jquery.dataTables-1.9.4.min.js │ │ ├── layer │ │ ├── extend │ │ │ └── layer.ext.js │ │ ├── layer.js │ │ └── skin │ │ │ ├── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ │ ├── layer.css │ │ │ └── layer.ext.css │ │ ├── maruti.html │ │ ├── masked.js │ │ ├── matrix.calendar.js │ │ ├── matrix.charts.js │ │ ├── matrix.chat.js │ │ ├── matrix.dashboard.js │ │ ├── matrix.form_common.js │ │ ├── matrix.form_validation.js │ │ ├── matrix.interface.js │ │ ├── matrix.js │ │ ├── matrix.login.js │ │ ├── matrix.popover.js │ │ ├── matrix.tables.js │ │ ├── matrix.wizard.js │ │ ├── multiselect.min.js │ │ ├── pnotify.custom.min.js │ │ ├── prettify.min.js │ │ ├── preview │ │ ├── WdatePicker.js │ │ ├── calendar.js │ │ ├── lang │ │ │ ├── en.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ └── skin │ │ │ ├── WdatePicker.css │ │ │ ├── blueFresh │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ │ └── whyGreen │ │ │ ├── bg.jpg │ │ │ ├── datepicker.css │ │ │ └── img.gif │ │ ├── program-index.js │ │ ├── progress.js │ │ ├── respond.min.js │ │ ├── select2.min.js │ │ ├── select2 │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .jshintignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ ├── i18n │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2.full.js │ │ │ │ ├── select2.full.min.js │ │ │ │ ├── select2.js │ │ │ │ └── select2.min.js │ │ ├── docs │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── _includes │ │ │ │ ├── examples │ │ │ │ │ ├── basics.html │ │ │ │ │ ├── data.html │ │ │ │ │ ├── disabled-mode.html │ │ │ │ │ ├── disabled-results.html │ │ │ │ │ ├── hide-search.html │ │ │ │ │ ├── localization-rtl-diacritics.html │ │ │ │ │ ├── matcher.html │ │ │ │ │ ├── multiple-max.html │ │ │ │ │ ├── placeholders.html │ │ │ │ │ ├── programmatic-control.html │ │ │ │ │ ├── tags.html │ │ │ │ │ ├── themes-templating-responsive-design.html │ │ │ │ │ └── tokenizer.html │ │ │ │ ├── footer.html │ │ │ │ ├── ga.html │ │ │ │ ├── head.html │ │ │ │ ├── js-source-states.html │ │ │ │ ├── nav │ │ │ │ │ ├── announcements-4.0.html │ │ │ │ │ ├── examples.html │ │ │ │ │ ├── options-old.html │ │ │ │ │ └── options.html │ │ │ │ ├── navigation.html │ │ │ │ ├── notice-previous.html │ │ │ │ ├── options-old │ │ │ │ │ ├── adapters.html │ │ │ │ │ ├── backwards-compatibility.html │ │ │ │ │ ├── core-options.html │ │ │ │ │ ├── dropdown.html │ │ │ │ │ ├── events.html │ │ │ │ │ └── setting-default-options.html │ │ │ │ ├── options │ │ │ │ │ ├── compatibility.html │ │ │ │ │ ├── compatibility │ │ │ │ │ │ ├── initial-selection.html │ │ │ │ │ │ ├── introduction.html │ │ │ │ │ │ ├── matcher.html │ │ │ │ │ │ ├── query-function.html │ │ │ │ │ │ └── text-input.html │ │ │ │ │ ├── core.html │ │ │ │ │ ├── core │ │ │ │ │ │ ├── amd-support.html │ │ │ │ │ │ ├── data-attributes.html │ │ │ │ │ │ └── options.html │ │ │ │ │ ├── data.html │ │ │ │ │ ├── data │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ ├── array.html │ │ │ │ │ │ └── select.html │ │ │ │ │ ├── dropdown.html │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── filtering.html │ │ │ │ │ │ ├── placement.html │ │ │ │ │ │ └── selections.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── events │ │ │ │ │ │ ├── internal.html │ │ │ │ │ │ └── jquery.html │ │ │ │ │ ├── introduction.html │ │ │ │ │ ├── not-written.html │ │ │ │ │ ├── selections.html │ │ │ │ │ └── selections │ │ │ │ │ │ ├── clearing-selections.html │ │ │ │ │ │ ├── multiple.html │ │ │ │ │ │ ├── placeholder.html │ │ │ │ │ │ └── templating.html │ │ │ │ └── social-buttons.html │ │ │ ├── _layouts │ │ │ │ ├── default.html │ │ │ │ └── home.html │ │ │ ├── _sass │ │ │ │ ├── _alert.scss │ │ │ │ ├── _anchorjs.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _examples.scss │ │ │ │ ├── _featurette.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _hamburger.scss │ │ │ │ ├── _home.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _prettify.scss │ │ │ │ ├── _result-repository.scss │ │ │ │ ├── _sidenav.scss │ │ │ │ ├── _social.scss │ │ │ │ └── _typography.scss │ │ │ ├── announcements-4.0.html │ │ │ ├── community.html │ │ │ ├── css │ │ │ │ └── s2-docs.scss │ │ │ ├── examples.html │ │ │ ├── images │ │ │ │ └── logo.png │ │ │ ├── index.html │ │ │ ├── options-old.html │ │ │ ├── options.html │ │ │ └── vendor │ │ │ │ ├── css │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ ├── images │ │ │ │ └── flags │ │ │ │ │ ├── ak.png │ │ │ │ │ ├── al.png │ │ │ │ │ ├── ar.png │ │ │ │ │ ├── az.png │ │ │ │ │ ├── ca.png │ │ │ │ │ ├── co.png │ │ │ │ │ ├── ct.png │ │ │ │ │ ├── de.png │ │ │ │ │ ├── fl.png │ │ │ │ │ ├── ga.png │ │ │ │ │ ├── hi.png │ │ │ │ │ ├── ia.png │ │ │ │ │ ├── id.png │ │ │ │ │ ├── il.png │ │ │ │ │ ├── in.png │ │ │ │ │ ├── ks.png │ │ │ │ │ ├── ky.png │ │ │ │ │ ├── la.png │ │ │ │ │ ├── ma.png │ │ │ │ │ ├── md.png │ │ │ │ │ ├── me.png │ │ │ │ │ ├── mi.png │ │ │ │ │ ├── mn.png │ │ │ │ │ ├── mo.png │ │ │ │ │ ├── ms.png │ │ │ │ │ ├── mt.png │ │ │ │ │ ├── nc.png │ │ │ │ │ ├── nd.png │ │ │ │ │ ├── ne.png │ │ │ │ │ ├── nh.png │ │ │ │ │ ├── nj.png │ │ │ │ │ ├── nm.png │ │ │ │ │ ├── nv.png │ │ │ │ │ ├── ny.png │ │ │ │ │ ├── oh.png │ │ │ │ │ ├── ok.png │ │ │ │ │ ├── or.png │ │ │ │ │ ├── pa.png │ │ │ │ │ ├── ri.png │ │ │ │ │ ├── sc.png │ │ │ │ │ ├── sd.png │ │ │ │ │ ├── tn.png │ │ │ │ │ ├── tx.png │ │ │ │ │ ├── ut.png │ │ │ │ │ ├── va.png │ │ │ │ │ ├── vt.png │ │ │ │ │ ├── wa.png │ │ │ │ │ ├── wi.png │ │ │ │ │ ├── wv.png │ │ │ │ │ └── wy.png │ │ │ │ └── js │ │ │ │ ├── anchor.min.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── placeholders.jquery.min.js │ │ │ │ └── prettify.min.js │ │ ├── package.json │ │ ├── select2.jquery.json │ │ ├── src │ │ │ ├── js │ │ │ │ ├── banner.end.js │ │ │ │ ├── banner.start.js │ │ │ │ ├── jquery.mousewheel.shim.js │ │ │ │ ├── jquery.select2.js │ │ │ │ ├── jquery.shim.js │ │ │ │ ├── select2 │ │ │ │ │ ├── compat │ │ │ │ │ │ ├── containerCss.js │ │ │ │ │ │ ├── dropdownCss.js │ │ │ │ │ │ ├── initSelection.js │ │ │ │ │ │ ├── inputData.js │ │ │ │ │ │ ├── matcher.js │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── data │ │ │ │ │ │ ├── ajax.js │ │ │ │ │ │ ├── array.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── maximumInputLength.js │ │ │ │ │ │ ├── maximumSelectionLength.js │ │ │ │ │ │ ├── minimumInputLength.js │ │ │ │ │ │ ├── select.js │ │ │ │ │ │ ├── tags.js │ │ │ │ │ │ └── tokenizer.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── diacritics.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── attachBody.js │ │ │ │ │ │ ├── attachContainer.js │ │ │ │ │ │ ├── closeOnSelect.js │ │ │ │ │ │ ├── hidePlaceholder.js │ │ │ │ │ │ ├── infiniteScroll.js │ │ │ │ │ │ ├── minimumResultsForSearch.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── selectOnClose.js │ │ │ │ │ │ └── stopPropagation.js │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── options.js │ │ │ │ │ ├── results.js │ │ │ │ │ ├── selection │ │ │ │ │ │ ├── allowClear.js │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── clickMask.js │ │ │ │ │ │ ├── eventRelay.js │ │ │ │ │ │ ├── multiple.js │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ ├── single.js │ │ │ │ │ │ └── stopPropagation.js │ │ │ │ │ ├── translation.js │ │ │ │ │ └── utils.js │ │ │ │ ├── wrapper.end.js │ │ │ │ └── wrapper.start.js │ │ │ └── scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _multiple.scss │ │ │ │ ├── _single.scss │ │ │ │ ├── core.scss │ │ │ │ ├── mixins │ │ │ │ └── _gradients.scss │ │ │ │ └── theme │ │ │ │ ├── classic │ │ │ │ ├── _defaults.scss │ │ │ │ ├── _multiple.scss │ │ │ │ ├── _single.scss │ │ │ │ └── layout.scss │ │ │ │ └── default │ │ │ │ ├── _multiple.scss │ │ │ │ ├── _single.scss │ │ │ │ └── layout.scss │ │ ├── tests │ │ │ ├── a11y │ │ │ │ ├── search-tests.js │ │ │ │ └── selection-tests.js │ │ │ ├── data │ │ │ │ ├── array-tests.js │ │ │ │ ├── base-tests.js │ │ │ │ ├── inputData-tests.js │ │ │ │ ├── maximumInputLength-tests.js │ │ │ │ ├── maximumSelectionLength-tests.js │ │ │ │ ├── minimumInputLength-tests.js │ │ │ │ ├── select-tests.js │ │ │ │ ├── tags-tests.js │ │ │ │ └── tokenizer-tests.js │ │ │ ├── dropdown │ │ │ │ ├── dropdownCss-tests.js │ │ │ │ ├── selectOnClose-tests.js │ │ │ │ └── stopPropagation-tests.js │ │ │ ├── helpers.js │ │ │ ├── integration.html │ │ │ ├── integration │ │ │ │ └── select2-methods.js │ │ │ ├── options │ │ │ │ ├── data-tests.js │ │ │ │ ├── deprecated-tests.js │ │ │ │ ├── translation-tests.js │ │ │ │ └── width-tests.js │ │ │ ├── selection │ │ │ │ ├── allowClear-tests.js │ │ │ │ ├── containerCss-tests.js │ │ │ │ ├── multiple-tests.js │ │ │ │ ├── placeholder-tests.js │ │ │ │ ├── search-tests.js │ │ │ │ ├── single-tests.js │ │ │ │ └── stopPropagation-tests.js │ │ │ ├── unit.html │ │ │ ├── utils │ │ │ │ ├── decorator-tests.js │ │ │ │ └── escapeMarkup-tests.js │ │ │ └── vendor │ │ │ │ ├── jquery-1.7.2.js │ │ │ │ ├── qunit-1.14.0.css │ │ │ │ └── qunit-1.14.0.js │ │ └── vendor │ │ │ └── jquery-2.1.0.js │ │ ├── service-index.js │ │ ├── shangyou-index.js │ │ ├── style-table.js │ │ ├── t_interface-index.js │ │ ├── tcal.js │ │ ├── toastr.js │ │ ├── wysihtml5-0.3.0.js │ │ └── zh-cn.js └── om │ ├── css │ ├── cmdlist.css │ ├── multi-select.css │ ├── multi-select.dev.css │ ├── multi-select.dev.css.map │ ├── multi-select.dist.css │ └── pickList.css │ ├── img │ └── switch.png │ └── js │ ├── base.js │ ├── base2.js │ ├── jquery.multi-select.js │ ├── multselect.js │ ├── pickList.js │ ├── prototype.js │ └── select2.min.js └── templates ├── 403.html ├── 404.html ├── 500.html ├── V.html ├── V.html.20160107 ├── alarm ├── alarmRules.html ├── alarmRules.html.bak ├── alarmTransaction.html ├── alarmcharts.html ├── alarminfo.html ├── bankInCharge.html ├── bankOperation.html ├── bussiAlarm.html ├── slaManager.html └── slaManager.html.bak ├── asset └── assetinfo.html ├── auth.html ├── auth ├── groupsmanagement.html └── usermanagement.html ├── auto ├── autodnspod.html ├── autorelease.html └── xianluqiehuan.html ├── baseinfo.html ├── dns ├── dnsinfo.html └── domaininfo.html ├── dnsinfo.html.bak ├── em ├── base.html ├── detail.html ├── items_normal.html ├── notice_detail.html ├── notice_overview.html └── overview.html ├── err └── 404.html ├── home └── dashboard.html ├── info ├── baseinfo.html ├── businessinfo.html ├── hostconfig.html └── platforminfo.html ├── link ├── backstageManager.html ├── ordersView.html ├── searchInfor.html └── wooyunsearch.html ├── logout.html ├── om ├── OMindex.html └── base.html ├── preview ├── .monthReport.html.swp ├── berbonTest.html ├── berbonTestView.html ├── editJober.html ├── kq.html ├── monthReport.html ├── officeInspection.html ├── operationsCount.html ├── responseRecords.html ├── sa.html ├── sainsert.html ├── scheduling.html └── schmonsrv.html └── test.html /.idea/Dtop.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /DOCS/Dartou运维管理平台说明.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/DOCS/Dartou运维管理平台说明.docx -------------------------------------------------------------------------------- /DataDownload/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/DataDownload/__init__.py -------------------------------------------------------------------------------- /EventManagement/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/EventManagement/__init__.py -------------------------------------------------------------------------------- /EventManagement/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class EventmanagementConfig(AppConfig): 7 | name = 'EventManagement' 8 | -------------------------------------------------------------------------------- /EventManagement/migrations/0002_auto_20160926_1043.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-26 02:43 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('EventManagement', '0001_initial'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterModelOptions( 16 | name='handledetail', 17 | options={'verbose_name': '\u5904\u7406\u8be6\u60c5\u8868', 'verbose_name_plural': '\u5904\u7406\u8be6\u60c5\u8868'}, 18 | ), 19 | migrations.AlterModelOptions( 20 | name='items', 21 | options={'verbose_name': '\u4e8b\u9879\u603b\u8868', 'verbose_name_plural': '\u4e8b\u9879\u603b\u8868'}, 22 | ), 23 | ] 24 | -------------------------------------------------------------------------------- /EventManagement/migrations/0003_auto_20160926_1045.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-26 02:45 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('EventManagement', '0002_auto_20160926_1043'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterField( 16 | model_name='items', 17 | name='items_content', 18 | field=models.TextField(max_length=128, verbose_name='\u4e8b\u9879\u8bf4\u660e'), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /EventManagement/migrations/0006_items_items_rete.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-26 07:33 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('EventManagement', '0005_auto_20160926_1059'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AddField( 16 | model_name='items', 17 | name='items_rete', 18 | field=models.CharField(default=0, max_length=5, verbose_name='\u4e8b\u9879\u5b8c\u6210\u767e\u5206\u767e'), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /EventManagement/migrations/0007_auto_20160926_1535.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-26 07:35 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('EventManagement', '0006_items_items_rete'), 12 | ] 13 | 14 | operations = [ 15 | migrations.RemoveField( 16 | model_name='items', 17 | name='items_rete', 18 | ), 19 | migrations.AddField( 20 | model_name='items', 21 | name='items_rate', 22 | field=models.CharField(default=0, max_length=5, verbose_name='\u4e8b\u9879\u5b8c\u6210\u767e\u5206\u767e'), 23 | ), 24 | ] 25 | -------------------------------------------------------------------------------- /EventManagement/migrations/0008_auto_20160926_1631.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-26 08:31 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('EventManagement', '0007_auto_20160926_1535'), 12 | ] 13 | 14 | operations = [ 15 | migrations.RemoveField( 16 | model_name='items', 17 | name='edit_time', 18 | ), 19 | migrations.AddField( 20 | model_name='items', 21 | name='finish_time', 22 | field=models.CharField(blank=True, max_length=64, null=True, verbose_name='\u4e8b\u9879\u7ed3\u675f\u65f6\u95f4'), 23 | ), 24 | ] 25 | -------------------------------------------------------------------------------- /EventManagement/migrations/0009_items_finish_info.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-26 08:38 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('EventManagement', '0008_auto_20160926_1631'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AddField( 16 | model_name='items', 17 | name='finish_info', 18 | field=models.TextField(blank=True, default='', max_length=256, null=True, verbose_name='\u4e8b\u9879\u7ed3\u675f\u610f\u89c1'), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /EventManagement/migrations/0010_auto_20161008_1441.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-10-08 06:41 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('EventManagement', '0009_items_finish_info'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterField( 16 | model_name='items', 17 | name='items_status', 18 | field=models.CharField(choices=[('\u672a\u5f00\u59cb', '\u672a\u5f00\u59cb'), ('\u8fdb\u884c\u4e2d', '\u8fdb\u884c\u4e2d'), ('\u5df2\u903e\u671f', '\u5df2\u903e\u671f'), ('\u5df2\u7ed3\u675f', '\u5df2\u7ed3\u675f')], max_length=20, verbose_name='\u4e8b\u9879\u72b6\u6001'), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /EventManagement/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/EventManagement/migrations/__init__.py -------------------------------------------------------------------------------- /EventManagement/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /EventManagement/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import patterns,include,url 2 | from EventManagement import views 3 | urlpatterns = [ 4 | url(r'^$', views.index), 5 | url(r'^detail/(\w+)*/$', views.detail), 6 | url(r'^overview/', views.overview), 7 | url(r'^Item_list/(\w+)*/$', views.Item_list), 8 | url(r'^Items_handle/', views.Items_handle), 9 | 10 | url(r'^Items_notice/', views.Items_notice), 11 | url(r'^Notice_detail/(\w+)*/$', views.Notice_detail), 12 | 13 | url(r'^AddItems/', views.AddItems), 14 | url(r'^TakeItems/', views.TakeItems), 15 | url(r'^Item_init/', views.Item_init), 16 | url(r'^DelItems/', views.DelItems), 17 | ] -------------------------------------------------------------------------------- /IMG/DNS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/IMG/DNS.png -------------------------------------------------------------------------------- /IMG/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/IMG/alarm.png -------------------------------------------------------------------------------- /IMG/asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/IMG/asset.png -------------------------------------------------------------------------------- /IMG/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/IMG/auth.png -------------------------------------------------------------------------------- /IMG/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/IMG/cloud.png -------------------------------------------------------------------------------- /IMG/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/IMG/cm.png -------------------------------------------------------------------------------- /IMG/em1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/IMG/em1.png -------------------------------------------------------------------------------- /IMG/em2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/IMG/em2.png -------------------------------------------------------------------------------- /IMG/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/IMG/index.png -------------------------------------------------------------------------------- /IMG/op1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/IMG/op1.png -------------------------------------------------------------------------------- /IMG/op2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/IMG/op2.png -------------------------------------------------------------------------------- /Log/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/Log/__init__.py -------------------------------------------------------------------------------- /Log/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | 5 | from .models import * 6 | 7 | class ActionLogAdmin(admin.ModelAdmin): 8 | list_display = ('user_id','user_name','act_module','act_type','act_time','act_detail') 9 | search_fields = ['user_id','user_name','act_module','act_type','act_time','act_detail'] 10 | list_filter =['user_name','act_module','act_type'] 11 | 12 | class SSHLogAdmin(admin.ModelAdmin): 13 | list_display = ('client_ip','cmd_server_group_id','cmd_server_server_id','cmd_time','cmd_user','cmd_command',) 14 | search_fields = ['client_ip','cmd_user','cmd_command',] 15 | list_filter =['client_ip','cmd_user','cmd_command',] 16 | 17 | 18 | admin.site.register(ActionLog,ActionLogAdmin) 19 | admin.site.register(SSHLog,SSHLogAdmin) -------------------------------------------------------------------------------- /Log/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class LogConfig(AppConfig): 7 | name = 'Log' 8 | -------------------------------------------------------------------------------- /Log/migrations/0003_auto_20160919_1207.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-19 04:07 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('Log', '0002_auto_20160919_1043'), 12 | ] 13 | 14 | operations = [ 15 | migrations.RenameField( 16 | model_name='actionlog', 17 | old_name='act_moudle', 18 | new_name='act_module', 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /Log/migrations/0004_auto_20160919_1437.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-19 06:37 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('Log', '0003_auto_20160919_1207'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterField( 16 | model_name='actionlog', 17 | name='act_detail', 18 | field=models.TextField(blank=True, max_length=256, null=True, verbose_name='\u8be6\u60c5'), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /Log/migrations/0005_auto_20160920_1545.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-20 07:45 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('Log', '0004_auto_20160919_1437'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterModelOptions( 16 | name='sshlog', 17 | options={'verbose_name': '\u8fd0\u7ef4\u64cd\u4f5c\u65e5\u5fd7\u8868', 'verbose_name_plural': '\u8fd0\u7ef4\u64cd\u4f5c\u65e5\u5fd7\u8868'}, 18 | ), 19 | ] 20 | -------------------------------------------------------------------------------- /Log/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/Log/migrations/__init__.py -------------------------------------------------------------------------------- /Log/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Log/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import patterns,include,url 2 | from Log import views 3 | urlpatterns = [ 4 | url(r'^$', views.test), 5 | ] -------------------------------------------------------------------------------- /Log/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render,HttpResponse 2 | # Create your views here. 3 | from Log import logHandle 4 | 5 | 6 | def test(request): 7 | 8 | a = logHandle.test() 9 | 10 | return HttpResponse(a) -------------------------------------------------------------------------------- /Matrix/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/Matrix/__init__.py -------------------------------------------------------------------------------- /Matrix/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class MatrixConfig(AppConfig): 7 | name = 'Matrix' 8 | -------------------------------------------------------------------------------- /Matrix/forms.py: -------------------------------------------------------------------------------- 1 | from django.forms import ModelForm 2 | from models import * 3 | 4 | class DnsForm(ModelForm): 5 | class Meta: 6 | model = DnsInfo 7 | fields = '__all__' -------------------------------------------------------------------------------- /Matrix/migrations/0003_auto_20160922_1952.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-22 11:52 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('Matrix', '0002_auto_20160919_2047'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterField( 16 | model_name='dnsinfo', 17 | name='dns_ttl', 18 | field=models.IntegerField(blank=True, default=600, null=True, verbose_name='ttl'), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /Matrix/migrations/0004_auto_20160922_2053.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-22 12:53 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('Matrix', '0003_auto_20160922_1952'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterField( 16 | model_name='baseinfo', 17 | name='create_date', 18 | field=models.CharField(blank=True, max_length=64, null=True, verbose_name='\u521b\u5efa\u65e5\u671f'), 19 | ), 20 | migrations.AlterField( 21 | model_name='baseinfo', 22 | name='expire_date', 23 | field=models.CharField(blank=True, max_length=64, null=True, verbose_name='\u5230\u671f\u65e5\u671f'), 24 | ), 25 | ] 26 | -------------------------------------------------------------------------------- /Matrix/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/Matrix/migrations/__init__.py -------------------------------------------------------------------------------- /Matrix/rest_urls.py: -------------------------------------------------------------------------------- 1 | router = routers.DefaultRouter() 2 | router.register(r'users', UserViewSet) 3 | 4 | # Wire up our API using automatic URL routing.# Additionally, we include login URLs for the browsable API. 5 | urlpatterns = [ 6 | url(r'^', include(router.urls)), 7 | url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')) 8 | ] 9 | 10 | -------------------------------------------------------------------------------- /Matrix/rest_views.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url, include 2 | from django.contrib.auth.models import User 3 | from rest_framework import serializers, viewsets, routers 4 | # ViewSets define the view behavior.class UserViewSet(viewsets.ModelViewSet): 5 | queryset = User.objects.all() 6 | serializer_class = UserSerializer 7 | 8 | -------------------------------------------------------------------------------- /Matrix/serializer.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url, include 2 | from django.contrib.auth.models import User 3 | from rest_framework import serializers, viewsets, routers 4 | 5 | # Serializers define the API representation.class UserSerializer(serializers.HyperlinkedModelSerializer): 6 | class Meta: 7 | model = User 8 | fields = ('url', 'username', 'email', 'is_staff') 9 | 10 | -------------------------------------------------------------------------------- /Matrix/templates/403.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 |

403 Forbidden

6 |
nginx
7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Matrix/templates/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 404 Not Found 4 | 5 |

404 Not Found

6 |
nginx
7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Matrix/templates/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 500 Internal Server Error 4 | 5 |

500 Internal Server Error

6 |
nginx
7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Matrix/templates/alarm/alarmTransaction.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 |
6 | 7 |
8 | 9 | {% endblock %} -------------------------------------------------------------------------------- /Matrix/templates/alarm/bussiAlarm.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 |
6 | 7 |
8 | 9 | {% endblock %} -------------------------------------------------------------------------------- /Matrix/templates/link/backstageManager.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 |
6 | 7 |
8 | 9 | {% endblock %} -------------------------------------------------------------------------------- /Matrix/templates/link/oacom.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 | 6 |
7 | 9 |
10 | 11 | {% endblock %} 12 | -------------------------------------------------------------------------------- /Matrix/templates/link/ordersView.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 | 6 |
7 | 8 |
9 | 10 | {% endblock %} -------------------------------------------------------------------------------- /Matrix/templates/link/searchInfor.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 |
6 | 7 |
8 | 9 | {% endblock %} -------------------------------------------------------------------------------- /Matrix/templates/logout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Matrix/templates/preview/.monthReport.html.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/Matrix/templates/preview/.monthReport.html.swp -------------------------------------------------------------------------------- /Matrix/templates/preview/sa.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 | 6 |
7 | 8 |
9 | 10 | {% endblock %} 11 | -------------------------------------------------------------------------------- /Matrix/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /Matrix/tmp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/Matrix/tmp/__init__.py -------------------------------------------------------------------------------- /OM/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/OM/__init__.py -------------------------------------------------------------------------------- /OM/apps.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | 3 | from django.apps import AppConfig 4 | 5 | 6 | class OmConfig(AppConfig): 7 | name = 'OM' 8 | -------------------------------------------------------------------------------- /OM/migrations/0003_cmdhistory_client_ip.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-09 07:37 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('OM', '0002_auto_20160909_1457'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AddField( 16 | model_name='cmdhistory', 17 | name='client_ip', 18 | field=models.GenericIPAddressField(default='none', verbose_name='\u5ba2\u6237\u7aefIP'), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /OM/migrations/0004_auto_20160909_1608.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-09 08:08 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | import django.db.models.deletion 7 | 8 | 9 | class Migration(migrations.Migration): 10 | 11 | dependencies = [ 12 | ('OM', '0003_cmdhistory_client_ip'), 13 | ] 14 | 15 | operations = [ 16 | migrations.AlterField( 17 | model_name='serverlist', 18 | name='service_owner', 19 | field=models.ForeignKey(default='00001', on_delete=django.db.models.deletion.CASCADE, to='OM.ServerGroup', verbose_name='\u670d\u52a1\u5668\u5c5e\u7ec4'), 20 | ), 21 | ] 22 | -------------------------------------------------------------------------------- /OM/migrations/0005_auto_20160909_1610.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-09 08:10 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | import django.db.models.deletion 7 | 8 | 9 | class Migration(migrations.Migration): 10 | 11 | dependencies = [ 12 | ('OM', '0004_auto_20160909_1608'), 13 | ] 14 | 15 | operations = [ 16 | migrations.AlterField( 17 | model_name='serverlist', 18 | name='service_owner', 19 | field=models.ForeignKey(default='002', on_delete=django.db.models.deletion.CASCADE, to='OM.ServerGroup', verbose_name='\u670d\u52a1\u5668\u5c5e\u7ec4'), 20 | ), 21 | ] 22 | -------------------------------------------------------------------------------- /OM/migrations/0006_auto_20160909_1611.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-09 08:11 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | import django.db.models.deletion 7 | 8 | 9 | class Migration(migrations.Migration): 10 | 11 | dependencies = [ 12 | ('OM', '0005_auto_20160909_1610'), 13 | ] 14 | 15 | operations = [ 16 | migrations.AlterField( 17 | model_name='serverlist', 18 | name='service_owner', 19 | field=models.ForeignKey(default='2', on_delete=django.db.models.deletion.CASCADE, to='OM.ServerGroup', verbose_name='\u670d\u52a1\u5668\u5c5e\u7ec4'), 20 | ), 21 | ] 22 | -------------------------------------------------------------------------------- /OM/migrations/0007_servergroup_server_members.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-09 08:56 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('OM', '0006_auto_20160909_1611'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AddField( 16 | model_name='servergroup', 17 | name='server_members', 18 | field=models.CharField(default='null', max_length=512, verbose_name='\u4e0b\u5c5e\u670d\u52a1\u5668'), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /OM/migrations/0009_auto_20160910_1158.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-10 03:58 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('OM', '0008_auto_20160910_1117'), 12 | ] 13 | 14 | operations = [ 15 | migrations.RemoveField( 16 | model_name='servergroup', 17 | name='server_members', 18 | ), 19 | migrations.AddField( 20 | model_name='servergroup', 21 | name='server_members', 22 | field=models.ManyToManyField(to='OM.ServerList', verbose_name='\u4e0b\u5c5e\u670d\u52a1\u5668'), 23 | ), 24 | ] 25 | -------------------------------------------------------------------------------- /OM/migrations/0010_auto_20160913_1141.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-13 03:41 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('OM', '0009_auto_20160910_1158'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterField( 16 | model_name='servergroup', 17 | name='server_members', 18 | field=models.ManyToManyField(blank=True, null=True, to='OM.ServerList', verbose_name='\u4e0b\u5c5e\u670d\u52a1\u5668'), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /OM/migrations/0011_auto_20160913_1525.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-13 07:25 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('OM', '0010_auto_20160913_1141'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterField( 16 | model_name='serverlist', 17 | name='server_id', 18 | field=models.CharField(blank=True, max_length=20, null=True, verbose_name='\u670d\u52a1\u5668ID'), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /OM/migrations/0012_auto_20160918_1427.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-18 06:27 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('OM', '0011_auto_20160913_1525'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterField( 16 | model_name='serverlist', 17 | name='server_name', 18 | field=models.CharField(max_length=64, verbose_name='\u670d\u52a1\u5668\u4e3b\u673a\u540d'), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /OM/migrations/0013_auto_20160918_1513.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.9.6 on 2016-09-18 07:13 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('OM', '0012_auto_20160918_1427'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterField( 16 | model_name='cmdhistory', 17 | name='cmd_server_group_id', 18 | field=models.TextField(default='none', max_length=512, verbose_name='\u64cd\u4f5c\u670d\u52a1\u5668\u7ec4ID'), 19 | ), 20 | migrations.AlterField( 21 | model_name='cmdhistory', 22 | name='cmd_server_server_id', 23 | field=models.TextField(default='none', max_length=512, verbose_name='\u64cd\u4f5c\u670d\u52a1\u5668ID'), 24 | ), 25 | ] 26 | -------------------------------------------------------------------------------- /OM/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/OM/migrations/__init__.py -------------------------------------------------------------------------------- /OM/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /OM/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import patterns,include,url 2 | from OM import views 3 | 4 | urlpatterns = [ 5 | url(r'^$', views.index), 6 | url(r'^LoadGroupInfo/', views.LoadGroupInfo), 7 | url(r'^LoadOMUserInfo/', views.LoadOMUserInfo), 8 | url(r'^ServerSync/', views.ServerSync), 9 | url(r'^saltHander/', views.saltHander), 10 | url(r'^group_add/', views.group_add), 11 | url(r'^group_modify/', views.group_modify), 12 | url(r'^group_del/', views.group_del), 13 | url(r'^server_add/', views.server_add), 14 | url(r'^server_modify/', views.server_modify), 15 | url(r'^server_del/', views.server_del), 16 | url(r'^get_serverlist_for_select/', views.get_serverlist_for_select), 17 | url(r'^get_all_server_list/', views.get_all_server_list), 18 | url(r'^get_all_groups_list/', views.get_all_groups_list), 19 | url(r'^download/', views.download), 20 | ] -------------------------------------------------------------------------------- /ZabbixApi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/ZabbixApi/__init__.py -------------------------------------------------------------------------------- /download/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/download/__init__.py -------------------------------------------------------------------------------- /download/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/download/core/__init__.py -------------------------------------------------------------------------------- /download/file/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/download/file/__init__.py -------------------------------------------------------------------------------- /download/file/csv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/download/file/csv/__init__.py -------------------------------------------------------------------------------- /download/file/excel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/download/file/excel/__init__.py -------------------------------------------------------------------------------- /dtop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/dtop/__init__.py -------------------------------------------------------------------------------- /dtop/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for dtop 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/1.9/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | import sys 12 | HERE = os.path.dirname(__file__) 13 | sys.path.append(HERE) 14 | sys.path.append(os.path.dirname(HERE)) 15 | 16 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dtop.settings") 17 | 18 | from django.core.wsgi import get_wsgi_application 19 | application = get_wsgi_application() -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | if __name__ == "__main__": 6 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dtop.settings") 7 | 8 | from django.core.management import execute_from_command_line 9 | 10 | execute_from_command_line(sys.argv) 11 | -------------------------------------------------------------------------------- /saltMaster/reloadSalt.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | aa=`ps aux | grep 'saltrpyc.py' | head -1 | awk '{print $2}'` 3 | kill $aa 4 | python /home/saltMaster/saltrpyc.py & -------------------------------------------------------------------------------- /saltMaster/saltMaster.py: -------------------------------------------------------------------------------- 1 | #-*- coding:utf-8 -*- 2 | import socket 3 | import salt.client 4 | 5 | ip_port = ('192.168.0.222',9999) 6 | 7 | sk = socket.socket() 8 | sk.bind(ip_port) 9 | sk.listen(5) 10 | 11 | def run(command): 12 | local = salt.client.LocalClient() 13 | ret=local.cmd('*', 'cmd.run', [command]) 14 | print ret 15 | return ret 16 | 17 | while True: 18 | print '等待客户端连接...' 19 | conn,addr = sk.accept() 20 | client_data = conn.recv(1024) 21 | if client_data == "":continue 22 | print client_data 23 | ret = run(client_data) 24 | print '返回数据' 25 | # print type(client_data) 26 | cc = str.encode(str(ret)) 27 | conn.sendall(cc) 28 | conn.close() 29 | 30 | -------------------------------------------------------------------------------- /saltMaster/saltrpyclinet.py: -------------------------------------------------------------------------------- 1 | import rpyc 2 | conn = rpyc.connect('192.168.1.51',11511) 3 | conn.root.login('OMuser','KJS23o4ij09gHF734iuhsdfhkGYSihoiwhj38u4h') 4 | obj = conn.root.Runcommands('ls') 5 | print obj 6 | -------------------------------------------------------------------------------- /saltMaster/saltrun.py: -------------------------------------------------------------------------------- 1 | #-*- coding:utf-8 -*- 2 | import socket 3 | import salt.client 4 | 5 | def run(): 6 | local = salt.client.LocalClient() 7 | ret=local.cmd('*', 'cmd.run', ['whoami']) 8 | print ret 9 | 10 | 11 | if __name__ == '__main__': 12 | run() 13 | -------------------------------------------------------------------------------- /saltMaster/saltweb.py: -------------------------------------------------------------------------------- 1 | #-*- coding:utf-8 -*- 2 | import socket 3 | 4 | 5 | def mainhandle(a): 6 | 7 | ip_port =('192.168.1.51',9999) 8 | bb = str.encode(a) 9 | sk = socket.socket() 10 | sk.connect(ip_port) 11 | sk.sendall(bb) 12 | 13 | server_reply = sk.recv(1024) 14 | # print bytes.decode(server_reply) 15 | print server_reply 16 | sk.close() 17 | 18 | if __name__ == "__main__": 19 | while True: 20 | aa = raw_input("请输入:").strip() 21 | if aa == "":continue 22 | mainhandle(str(aa)) 23 | -------------------------------------------------------------------------------- /saltMaster/saltwebargs.py: -------------------------------------------------------------------------------- 1 | #-*- coding:utf-8 -*- 2 | import socket 3 | import sys 4 | 5 | 6 | aa = sys.argv 7 | for i in range(1,len(sys.argv)): 8 | print sys.argv[i] 9 | 10 | -------------------------------------------------------------------------------- /static/admin/css/dashboard.css: -------------------------------------------------------------------------------- 1 | /* DASHBOARD */ 2 | 3 | .dashboard .module table th { 4 | width: 100%; 5 | } 6 | 7 | .dashboard .module table td { 8 | white-space: nowrap; 9 | } 10 | 11 | .dashboard .module table td a { 12 | display: block; 13 | padding-right: .6em; 14 | } 15 | 16 | /* RECENT ACTIONS MODULE */ 17 | 18 | .module ul.actionlist { 19 | margin-left: 0; 20 | } 21 | 22 | ul.actionlist li { 23 | list-style-type: none; 24 | } 25 | 26 | ul.actionlist li { 27 | overflow: hidden; 28 | text-overflow: ellipsis; 29 | -o-text-overflow: ellipsis; 30 | } 31 | -------------------------------------------------------------------------------- /static/admin/css/fonts.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Roboto'; 3 | src: url('../fonts/Roboto-Bold-webfont.woff'); 4 | font-weight: 700; 5 | font-style: normal; 6 | } 7 | 8 | @font-face { 9 | font-family: 'Roboto'; 10 | src: url('../fonts/Roboto-Regular-webfont.woff'); 11 | font-weight: 400; 12 | font-style: normal; 13 | } 14 | 15 | @font-face { 16 | font-family: 'Roboto'; 17 | src: url('../fonts/Roboto-Light-webfont.woff'); 18 | font-weight: 300; 19 | font-style: normal; 20 | } 21 | -------------------------------------------------------------------------------- /static/admin/fonts/README.txt: -------------------------------------------------------------------------------- 1 | Roboto webfont source: https://www.google.com/fonts/specimen/Roboto 2 | Weights used in this project: Light (300), Regular (400), Bold (700) 3 | -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /static/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /static/admin/img/README.txt: -------------------------------------------------------------------------------- 1 | All icons are taken from Font Awesome (http://fontawesome.io/) project. 2 | The Font Awesome font is licensed under the SIL OFL 1.1: 3 | - http://scripts.sil.org/OFL 4 | 5 | SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG 6 | Font-Awesome-SVG-PNG is licensed under the MIT license (see file license 7 | in current folder). 8 | -------------------------------------------------------------------------------- /static/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /static/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/icon-no.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static/admin/js/collapse.min.js: -------------------------------------------------------------------------------- 1 | (function(a){a(document).ready(function(){a("fieldset.collapse").each(function(b,c){0===a(c).find("div.errors").length&&a(c).addClass("collapsed").find("h2").first().append(' ('+gettext("Show")+")")});a("fieldset.collapse a.collapse-toggle").click(function(b){a(this).closest("fieldset").hasClass("collapsed")?a(this).text(gettext("Hide")).closest("fieldset").removeClass("collapsed").trigger("show.fieldset",[a(this).attr("id")]):a(this).text(gettext("Show")).closest("fieldset").addClass("collapsed").trigger("hide.fieldset", 2 | [a(this).attr("id")]);return!1})})})(django.jQuery); 3 | -------------------------------------------------------------------------------- /static/admin/js/jquery.init.js: -------------------------------------------------------------------------------- 1 | /*global django:true, jQuery:false*/ 2 | /* Puts the included jQuery into our own namespace using noConflict and passing 3 | * it 'true'. This ensures that the included jQuery doesn't pollute the global 4 | * namespace (i.e. this preserves pre-existing values for both window.$ and 5 | * window.jQuery). 6 | */ 7 | var django = django || {}; 8 | django.jQuery = jQuery.noConflict(true); 9 | -------------------------------------------------------------------------------- /static/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- 1 | (function(c){c.fn.prepopulate=function(e,f,g){return this.each(function(){var a=c(this),b=function(){if(!a.data("_changed")){var b=[];c.each(e,function(a,d){d=c(d);0t<"F"fp>' 8 | }); 9 | 10 | $('input[type=checkbox],input[type=radio],input[type=file]').uniform(); 11 | 12 | $('select').select2(); 13 | 14 | $("span.icon input:checkbox, th input:checkbox").click(function() { 15 | var checkedStatus = this.checked; 16 | var checkbox = $(this).parents('.widget-box').find('tr td:first-child input:checkbox'); 17 | checkbox.each(function() { 18 | this.checked = checkedStatus; 19 | if (checkedStatus == this.checked) { 20 | $(this).closest('.checker > span').removeClass('checked'); 21 | } 22 | if (this.checked) { 23 | $(this).closest('.checker > span').addClass('checked'); 24 | } 25 | }); 26 | }); 27 | }); 28 | -------------------------------------------------------------------------------- /static/matrix/js/preview/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /static/matrix/js/preview/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | .Wdate::-ms-clear{display:none;} 7 | 8 | .WdateFmtErr{ 9 | font-weight:bold; 10 | color:red; 11 | } -------------------------------------------------------------------------------- /static/matrix/js/preview/skin/blueFresh/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/preview/skin/blueFresh/datepicker.css -------------------------------------------------------------------------------- /static/matrix/js/preview/skin/blueFresh/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/preview/skin/blueFresh/img.gif -------------------------------------------------------------------------------- /static/matrix/js/preview/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/preview/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /static/matrix/js/preview/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/preview/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /static/matrix/js/program-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/program-index.js -------------------------------------------------------------------------------- /static/matrix/js/progress.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $('#objprogress').hide(); 3 | $('#icu').hide(); 4 | $('#footer').hide(); 5 | $('#cu').click(function(){ 6 | $('#cu').hide(); 7 | $('#progress').fadeIn('slow'); 8 | }); 9 | $('#obj').click(function(){ 10 | $('#upform').hide(); 11 | $('#cu').hide(); 12 | $('#footer').fadeIn('slow'); 13 | $('#objprogress').fadeIn('slow'); 14 | }); 15 | }); -------------------------------------------------------------------------------- /static/matrix/js/select2/.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | indent_style = space 3 | end_of_line = lf 4 | 5 | [*.js] 6 | indent_size = 2 7 | -------------------------------------------------------------------------------- /static/matrix/js/select2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/js/i18n/build.txt 3 | .sass-cache 4 | -------------------------------------------------------------------------------- /static/matrix/js/select2/.jshintignore: -------------------------------------------------------------------------------- 1 | src/js/banner.*.js 2 | src/js/wrapper.*.js 3 | tests/vendor/*.js 4 | tests/helpers.js 5 | -------------------------------------------------------------------------------- /static/matrix/js/select2/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "bitwise": true, 3 | "camelcase": true, 4 | "curly": true, 5 | "es3": true, 6 | "eqnull": true, 7 | "freeze": true, 8 | "globals": { 9 | "console": false, 10 | "define": false, 11 | "document": false, 12 | "expect": false, 13 | "MockContainer": false, 14 | "module": false, 15 | "require": false, 16 | "test": false, 17 | "window": false 18 | }, 19 | "indent": 2, 20 | "maxlen": 80, 21 | "noarg": true, 22 | "nonew": true, 23 | "quotmark": "single", 24 | "undef": true 25 | } 26 | -------------------------------------------------------------------------------- /static/matrix/js/select2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | sudo: false 4 | 5 | node_js: 6 | - 0.10 7 | 8 | env: 9 | global: 10 | - secure: XMNK8GVxkwKa6oLl7nJwgg/wmY1YDk5rrMd+UXz26EDCsMDbiy1P7GhN2fEiBSLaQ7YfEuvaDcmzQxTrT0YTHp1PDzb2o9J4tIDdEkqPcv1y8xMaYDfmsN0rBPdBwZEg9H5zUgi7OdUbrGswSYxsKCE3x8EOqK89104HyOo1LN4= 11 | - secure: BU5BPRx6H4O3WJ509YPixjUxg+hDF3z2BVJX6NiGmKWweqvCEYFfiiHLwDEgp/ynRcF9vGVi1V4Ly1jq7f8NIajbDZ5q443XchZFYFg78K/EwD5mK6LYt16zb7+Jn0KbzwHeGRGzc9AvcEYlW6i634cSCm4n3BnqtF5PpogSzdw= 12 | 13 | script: 14 | - grunt ci 15 | 16 | notifications: 17 | email: false 18 | irc: 19 | channels: 20 | - "chat.freenode.net#select2" 21 | on_success: change 22 | on_failure: always 23 | -------------------------------------------------------------------------------- /static/matrix/js/select2/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "select2", 3 | "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.", 4 | "main": [ 5 | "dist/js/select2.js", 6 | "src/scss/core.scss" 7 | ], 8 | "repository": { 9 | "type": "git", 10 | "url": "git@github.com:select2/select2.git" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /static/matrix/js/select2/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "select2", 3 | "repo": "select/select2", 4 | "description": "Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.", 5 | "version": "4.0.1", 6 | "demo": "https://select2.github.io/", 7 | "keywords": [ 8 | "jquery" 9 | ], 10 | "main": "dist/js/select2.js", 11 | "styles": [ 12 | "dist/css/select2.css" 13 | ], 14 | "scripts": [ 15 | "dist/js/select2.js", 16 | "dist/js/i18n/*.js" 17 | ], 18 | "license": "MIT" 19 | } 20 | -------------------------------------------------------------------------------- /static/matrix/js/select2/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "select2/select2", 3 | "description": "Select2 is a jQuery based replacement for select boxes.", 4 | "type": "component", 5 | "homepage": "https://select2.github.io/", 6 | "license": "MIT", 7 | "require": { 8 | "robloach/component-installer": "*" 9 | }, 10 | "extra": { 11 | "component": { 12 | "scripts": [ 13 | "dist/js/select2.js" 14 | ], 15 | "styles": [ 16 | "dist/css/select2.css" 17 | ], 18 | "files": [ 19 | "dist/js/select2.js", 20 | "dist/js/i18n/*.js", 21 | "dist/css/select2.css" 22 | ] 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/ar.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="الرجاء حذف "+t+" عناصر";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="الرجاء إضافة "+t+" عناصر";return n},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(e){var t="تستطيع إختيار "+e.maximum+" بنود فقط";return t},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/bg.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/ca.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/da.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Angiv venligst "+t+" tegn mindre";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Angiv venligst "+t+" tegn mere";return n},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/de.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/en.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/es.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"La carga falló"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/et.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/eu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/fa.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها می‌توانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجه‌ای یافت نشد"},searching:function(){return"در حال جستجو..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/fr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Supprimez "+t+" caractère";return t!==1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Saisissez "+t+" caractère";return t!==1&&(n+="s"),n},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){var t="Vous pouvez seulement sélectionner "+e.maximum+" élément";return e.maximum!==1&&(t+="s"),t},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/gl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Elimine ";return t===1?n+="un carácter":n+=t+" caracteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Engada ";return t===1?n+="un carácter":n+=t+" caracteres",n},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){var t="Só pode ";return e.maximum===1?t+="un elemento":t+=e.maximum+" elementos",t},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/he.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/hi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/hr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/is.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/it.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/lt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lt",[],function(){function e(e,t,n,r){return e%100>9&&e%100<21||e%10===0?e%10>1?n:r:t}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Pašalinkite "+n+" simbol";return r+=e(n,"ių","ius","į"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Įrašykite dar "+n+" simbol";return r+=e(n,"ių","ius","į"),r},loadingMore:function(){return"Kraunama daugiau rezultatų…"},maximumSelected:function(t){var n="Jūs galite pasirinkti tik "+t.maximum+" element";return n+=e(t.maximum,"ų","us","ą"),n},noResults:function(){return"Atitikmenų nerasta"},searching:function(){return"Ieškoma…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/lv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/mk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/ms.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/nb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn ";return t>1?n+=" flere tegn":n+=" tegn til",n},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/nl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t=e.maximum==1?"kan":"kunnen",n="Er "+t+" maar "+e.maximum+" item";return e.maximum!=1&&(n+="s"),n+=" worden geselecteerd",n},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/pl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pl",[],function(){var e=["znak","znaki","znaków"],t=["element","elementy","elementów"],n=function(t,n){if(t===1)return n[0];if(t>1&&t<=4)return n[1];if(t>=5)return n[2]};return{errorLoading:function(){return"Nie można załadować wyników."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Usuń "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Podaj przynajmniej "+r+" "+n(r,e)},loadingMore:function(){return"Trwa ładowanie…"},maximumSelected:function(e){return"Możesz zaznaczyć tylko "+e.maximum+" "+n(e.maximum,t)},noResults:function(){return"Brak wyników"},searching:function(){return"Trwa wyszukiwanie…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/pt-BR.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/pt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"carácter",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/ro.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ro",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vă rugăm să introduceți mai puțin de "+t;return n+=" caracter",n!==1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vă rugăm să introduceți incă "+t;return n+=" caracter",n!==1&&(n+="e"),n},loadingMore:function(){return"Se încarcă…"},maximumSelected:function(e){var t="Aveți voie să selectați cel mult "+e.maximum;return t+=" element",t!==1&&(t+="e"),t},noResults:function(){return"Nu a fost găsit nimic"},searching:function(){return"Căutare…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr-Cyrl",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Преузимање није успело."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Обришите "+n+" симбол";return r+=e(n,"","а","а"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Укуцајте бар још "+n+" симбол";return r+=e(n,"","а","а"),r},loadingMore:function(){return"Преузимање још резултата…"},maximumSelected:function(t){var n="Можете изабрати само "+t.maximum+" ставк";return n+=e(t.maximum,"у","е","и"),n},noResults:function(){return"Ништа није пронађено"},searching:function(){return"Претрага…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/sr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/sv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/uk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/uk",[],function(){function e(e,t,n,r){return e%100>10&&e%100<15?r:e%10===1?t:e%10>1&&e%10<5?n:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Будь ласка, видаліть "+n+" "+e(t.maximum,"літеру","літери","літер")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Будь ласка, введіть "+t+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(t){return"Ви можете вибрати лише "+t.maximum+" "+e(t.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+' ký tự"';return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/dist/js/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.1 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | dist 3 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/examples/hide-search.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |

Hiding the search box

4 | 5 |

6 | Select2 allows you to hide the search box depending on the number of 7 | options which are displayed. In this example, we use the value 8 | Infinity to tell Select2 to never display the search box. 9 |

10 | 11 |
12 |

13 | 14 |

15 |
16 | 17 |

18 | 
19 | 
24 | 
25 | 
26 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/examples/multiple-max.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |

4 | Limiting the number of selections 5 |

6 | 7 |

8 | Select2 multi-value select boxes can set restrictions regarding the 9 | maximum number of options selected. The select below is declared with 10 | the multiple attribute with maximumSelectionLength 11 | in the select2 options. 12 |

13 | 14 |
15 |

16 | 17 |

18 |
19 | 20 |

21 | 
22 | 
27 | 
28 | 
29 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/ga.html: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/notice-previous.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | Looking for the Select2 3.5.2 docs? 4 | We have moved them to a new location 5 | while we push forward with Select2 4.0. 6 |
7 |
8 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/compatibility.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Backwards compatibility 4 |

5 | 6 | {% include options/compatibility/matcher.html %} 7 | {% include options/compatibility/initial-selection.html %} 8 | {% include options/compatibility/query-function.html %} 9 | {% include options/compatibility/text-input.html %} 10 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/core.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Core options 4 |

5 | 6 | {% include options/core/options.html %} 7 | {% include options/core/data-attributes.html %} 8 | {% include options/core/amd-support.html %} 9 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/data.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Data adapters 4 |

5 | 6 | {% include options/data/select.html %} 7 | {% include options/data/array.html %} 8 | {% include options/data/ajax.html %} 9 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/dropdown.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Displaying results 4 |

5 | 6 | {% include options/dropdown/filtering.html %} 7 | {% include options/dropdown/selections.html %} 8 | {% include options/dropdown/placement.html %} 9 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/dropdown/filtering.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Can I change when search results are loaded? 4 |

5 | 6 |

7 | Can Select2 wait until the user has typed a search term before triggering the request? 8 |

9 | 10 | {% include options/not-written.html %} 11 | 12 |

13 | Select2 is allowing long search terms, can this be prevented? 14 |

15 | 16 | {% include options/not-written.html %} 17 | 18 |

19 | I only want the search box if there are enough results 20 |

21 | 22 | {% include options/not-written.html %} 23 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/dropdown/placement.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Can I change how the dropdown is placed? 4 |

5 | 6 | 9 | 10 | {% include options/not-written.html %} 11 | 12 | 15 | 16 | {% include options/not-written.html %} 17 | 18 |

19 | I'm using a Bootstrap modal and I can't use the search box 20 |

21 | 22 | {% include options/not-written.html %} 23 | 24 |

25 | I'm using jQuery UI and I can't use the search box 26 |

27 | 28 | {% include options/not-written.html %} 29 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/dropdown/selections.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Can I change how selecting results works? 4 |

5 | 6 |

7 | Can I select the highlighted result when the dropdown is closed? 8 |

9 | 10 | {% include options/not-written.html %} 11 | 12 |

13 | Can I prevent the dropdown from closing when a result is selected? 14 |

15 | 16 | {% include options/not-written.html %} 17 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/events.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Events 4 |

5 | 6 | {% include options/events/jquery.html %} 7 | {% include options/events/internal.html %} 8 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/events/internal.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Internal Select2 events 4 |

5 | 6 |

7 | Select2 has an internal event system that works independently of the DOM event system. This internal event system is only accesssible from plugins and adapters that are connected to Select2. 8 |

9 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/events/jquery.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Public jQuery events 4 |

5 | 6 |

7 | What events will Select2 trigger? 8 |

9 | 10 | {% include options/not-written.html %} 11 | 12 |

13 | How can I attach listeners for these events? 14 |

15 | 16 | {% include options/not-written.html %} 17 | 18 |

19 | What events does Select2 listen for? 20 |

21 | 22 | {% include options/not-written.html %} 23 | 24 |

25 | What events can be prevented? How can I prevent a selection from being made? 26 |

27 | 28 | {% include options/not-written.html %} 29 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/introduction.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | This page of the documentation is currently undergoing a rewrite and may be incomplete. If you do not find the answer you are looking for on this page, you may have better luck looking at the old options page. 4 |
5 | 6 |

7 | This documentation is set up in the form of a FAQ and covers the most common questions. If you do not find the answer to your question here, you may want to reach out to the community to see if someone else can answer it. 8 |

9 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/not-written.html: -------------------------------------------------------------------------------- 1 |
2 | This answer to this question has not yet been written. You can improve this documentation by creating a pull request with an answer to this question. 3 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/selections.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Displaying selections 4 |

5 | 6 | {% include options/selections/multiple.html %} 7 | {% include options/selections/placeholder.html %} 8 | {% include options/selections/clearing-selections.html %} 9 | {% include options/selections/templating.html %} 10 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/selections/clearing-selections.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Can I allow users to clear their selections? 4 |

5 | 6 |

7 | The "x" icon is not clearing the selection 8 |

9 | 10 | {% include options/not-written.html %} 11 | 12 |

13 | Can users remove all of their selections in a multiple select at once? 14 |

15 | 16 | {% include options/not-written.html %} 17 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/selections/multiple.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Can I allow users to make multiple selections? 4 |

5 | 6 |

7 | Yes, Select2 supports making multiple selections through the use of the multiple option that can be passed in when initializing Select2. 8 |

9 | 10 |

11 | Can the multiple attribute be used on my <select> element? 12 |

13 | 14 |

15 | Yes, Select2 will automatically map the value of the multiple attribute to the multiple option during initialization. 16 |

17 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/options/selections/templating.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | How can I customize the way selections are displayed? 4 |

5 | 6 |

7 | Nothing is being displayed when I select an option 8 |

9 | 10 | {% include options/not-written.html %} 11 | 12 |

13 | I am using HTML in my selection template but it isn't displaying it 14 |

15 | 16 | {% include options/not-written.html %} 17 | 18 |

19 | How can I access the container where the selection is displayed? 20 |

21 | 22 | {% include options/not-written.html %} 23 |
-------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_includes/social-buttons.html: -------------------------------------------------------------------------------- 1 |
2 | 10 |
11 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_layouts/home.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {% include head.html %} 5 | 6 | 7 | {% include navigation.html %} 8 | 9 | {{ content }} 10 | 11 | {% include footer.html %} 12 | 13 | 20 | 21 | {% include ga.html %} 22 | 23 | 24 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_sass/_anchorjs.scss: -------------------------------------------------------------------------------- 1 | // AnchorJS Styles 2 | 3 | .anchorjs-link { 4 | color: inherit; 5 | transition: all .16s linear; 6 | text-decoration: none; 7 | 8 | &:link, 9 | &:visited { 10 | text-decoration: none; 11 | color: inherit; 12 | } 13 | 14 | @media (max-width: 480px) { 15 | display: none; 16 | } 17 | } 18 | 19 | *:hover > .anchorjs-link { 20 | opacity: .5; 21 | margin-left: -0.9em !important; 22 | } 23 | 24 | *:hover > .anchorjs-link:hover, 25 | .anchorjs-link:focus { 26 | opacity: 1; 27 | } 28 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_sass/_buttons.scss: -------------------------------------------------------------------------------- 1 | // Buttons 2 | 3 | .btn-outline-inverse { 4 | color: #428BCA; 5 | background-color: transparent; 6 | border-color: #428BCA; 7 | padding: 15px 30px; 8 | font-size: 20px; 9 | transition: all .1s ease-in-out; 10 | 11 | &:hover { 12 | color: #fff; 13 | border-color: #428BCA; 14 | background-color: #428BCA; 15 | } 16 | } 17 | 18 | .btn-toolbar { 19 | margin-bottom: 20px; 20 | } 21 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_sass/_code.scss: -------------------------------------------------------------------------------- 1 | // Code (inline and block) 2 | 3 | // Inline code within headings retain the heading's background-color 4 | h2 code, 5 | h3 code, 6 | h4 code { 7 | background-color: inherit; 8 | } 9 | 10 | // Modify Bootstrap's styles for blocks of code 11 | pre { 12 | padding: 9px 14px; 13 | margin-bottom: 14px; 14 | background-color: #f7f7f9; 15 | border: 1px solid #e1e1e8; 16 | } 17 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_sass/_featurette.scss: -------------------------------------------------------------------------------- 1 | // Homepage featurettes 2 | 3 | .s2-docs-featurette { 4 | color: #777; 5 | padding: 15px 0; 6 | text-align: center; 7 | 8 | h4 { 9 | margin: 30px 0 15px; 10 | } 11 | 12 | .fa { 13 | font-size: 28px; 14 | color: #777; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_sass/_footer.scss: -------------------------------------------------------------------------------- 1 | // Footer 2 | 3 | .s2-docs-footer { 4 | border-top: 1px solid #eee; 5 | color: #767676; 6 | padding-top: 40px; 7 | padding-bottom: 40px; 8 | margin-top: 100px; 9 | text-align: center; 10 | 11 | &-links { 12 | padding-left: 0; 13 | margin-top: 20px; 14 | } 15 | 16 | &-links li { 17 | display: inline; 18 | padding: 0 2px; 19 | 20 | &:after { 21 | content: "·"; 22 | padding-left: 8px; 23 | } 24 | 25 | &:first-child { 26 | padding-left: 0; 27 | } 28 | 29 | &:last-child:after { 30 | content: ""; 31 | padding-left: 0; 32 | } 33 | } 34 | 35 | @media (min-width: 768px) { 36 | p { 37 | margin-bottom: 0; 38 | } 39 | } 40 | } 41 | 42 | 43 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_sass/_home.scss: -------------------------------------------------------------------------------- 1 | // Homepage-specific styles 2 | 3 | .s2-docs-home { 4 | .jumbotron { 5 | margin-bottom: 0; 6 | color: #000; 7 | 8 | h1 { 9 | color: #000; 10 | margin-top: 20px; 11 | } 12 | } 13 | 14 | .lead { 15 | text-align: center; 16 | max-width: 800px; 17 | margin: 0 auto 40px; 18 | } 19 | 20 | .notice-previous { 21 | background: #f6f6f6; 22 | color: #666; 23 | border-bottom: 1px solid #eee; 24 | padding: 15px 20px; 25 | } 26 | 27 | .half-rule { 28 | width: 100px; 29 | margin: 40px auto; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_sass/_jumbotron.scss: -------------------------------------------------------------------------------- 1 | // Jumbotron 2 | // 3 | // Modify Bootstrap's default `.jumbotron` styles. 4 | 5 | .jumbotron { 6 | background-color: #F6F6F6; 7 | border-bottom: 1px solid #eee; 8 | color: #777; 9 | padding-left: 0; 10 | padding-right: 0; 11 | 12 | h1 { 13 | color: #777; 14 | font-size: 36px; 15 | margin-top: 10px; 16 | } 17 | 18 | .version { 19 | color: #999; 20 | font-size: 14px; 21 | font-weight: normal; 22 | margin-bottom: 30px; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_sass/_layout.scss: -------------------------------------------------------------------------------- 1 | // Layout 2 | 3 | .s2-docs-container { 4 | line-height: 1.6; 5 | } 6 | 7 | section { 8 | margin-bottom: 40px; 9 | } 10 | 11 | .page-header { 12 | padding-bottom: 19px; 13 | margin-bottom: 29px; 14 | } 15 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_sass/_social.scss: -------------------------------------------------------------------------------- 1 | // Social buttons 2 | // 3 | // Twitter and GitHub social action buttons. 4 | 5 | .s2-docs-social { 6 | margin-bottom: 20px; 7 | text-align: center; 8 | } 9 | 10 | .s2-docs-social-buttons { 11 | display: inline-block; 12 | padding-left: 0; 13 | margin-bottom: 0; 14 | list-style: none; 15 | 16 | li { 17 | display: inline-block; 18 | padding: 5px 8px; 19 | line-height: 1; 20 | } 21 | 22 | .twitter-follow-button { 23 | width: 225px !important; 24 | } 25 | 26 | .twitter-share-button { 27 | width: 98px !important; 28 | } 29 | } 30 | 31 | // Style the GitHub buttons via CSS instead of inline attributes 32 | .github-btn { 33 | overflow: hidden; 34 | border: 0; 35 | } 36 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/_sass/_typography.scss: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | h1[id] { 4 | padding-top: 20px; 5 | margin-top: 0; 6 | } 7 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/css/s2-docs.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | @import "result-repository"; 4 | @import "sidenav"; 5 | @import "hamburger"; 6 | @import "code"; 7 | @import "featurette"; 8 | @import "layout"; 9 | @import "nav"; 10 | @import "footer"; 11 | @import "alert"; 12 | @import "home"; 13 | @import "examples"; 14 | @import "social"; 15 | @import "buttons"; 16 | @import "anchorjs"; 17 | @import "jumbotron"; 18 | @import "prettify"; 19 | @import "typography" 20 | -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/images/logo.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ak.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/al.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ar.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/az.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ca.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/co.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ct.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/de.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/fl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/fl.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ga.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/hi.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ia.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/id.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/il.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/in.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ks.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ky.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/la.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ma.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/md.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/me.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/mi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/mi.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/mn.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/mo.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ms.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/mt.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/nc.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/nd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/nd.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ne.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/nh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/nh.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/nj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/nj.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/nm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/nm.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/nv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/nv.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ny.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/oh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/oh.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ok.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/or.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/pa.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ri.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/sc.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/sd.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/tn.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/tx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/tx.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/ut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/ut.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/va.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/vt.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/wa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/wa.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/wi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/wi.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/wv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/wv.png -------------------------------------------------------------------------------- /static/matrix/js/select2/docs/vendor/images/flags/wy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/select2/docs/vendor/images/flags/wy.png -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/banner.end.js: -------------------------------------------------------------------------------- 1 | // Return the AMD loader configuration so it can be used outside of this file 2 | return { 3 | define: S2.define, 4 | require: S2.require 5 | }; 6 | }()); 7 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/banner.start.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | // Restore the Select2 AMD loader so it can be used 3 | // Needed mostly in the language files, where the loader is not inserted 4 | if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd) { 5 | var S2 = jQuery.fn.select2.amd; 6 | } 7 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/jquery.mousewheel.shim.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 'jquery' 3 | ], function ($) { 4 | // Used to shim jQuery.mousewheel for non-full builds. 5 | return $; 6 | }); 7 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/jquery.shim.js: -------------------------------------------------------------------------------- 1 | /* global jQuery:false, $:false */ 2 | define(function () { 3 | var _$ = jQuery || $; 4 | 5 | if (_$ == null && console && console.error) { 6 | console.error( 7 | 'Select2: An instance of jQuery or a jQuery-compatible library was not ' + 8 | 'found. Make sure that you are including jQuery before Select2 on your ' + 9 | 'web page.' 10 | ); 11 | } 12 | 13 | return _$; 14 | }); 15 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/compat/query.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 3 | ], function () { 4 | function Query (decorated, $element, options) { 5 | if (options.get('debug') && window.console && console.warn) { 6 | console.warn( 7 | 'Select2: The `query` option has been deprecated in favor of a ' + 8 | 'custom data adapter that overrides the `query` method. Support ' + 9 | 'will be removed for the `query` option in future versions of ' + 10 | 'Select2.' 11 | ); 12 | } 13 | 14 | decorated.call(this, $element, options); 15 | } 16 | 17 | Query.prototype.query = function (_, params, callback) { 18 | params.callback = callback; 19 | 20 | var query = this.options.get('query'); 21 | 22 | query.call(null, params); 23 | }; 24 | 25 | return Query; 26 | }); 27 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/data/maximumInputLength.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 3 | ], function () { 4 | function MaximumInputLength (decorated, $e, options) { 5 | this.maximumInputLength = options.get('maximumInputLength'); 6 | 7 | decorated.call(this, $e, options); 8 | } 9 | 10 | MaximumInputLength.prototype.query = function (decorated, params, callback) { 11 | params.term = params.term || ''; 12 | 13 | if (this.maximumInputLength > 0 && 14 | params.term.length > this.maximumInputLength) { 15 | this.trigger('results:message', { 16 | message: 'inputTooLong', 17 | args: { 18 | maximum: this.maximumInputLength, 19 | input: params.term, 20 | params: params 21 | } 22 | }); 23 | 24 | return; 25 | } 26 | 27 | decorated.call(this, params, callback); 28 | }; 29 | 30 | return MaximumInputLength; 31 | }); 32 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/data/minimumInputLength.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 3 | ], function () { 4 | function MinimumInputLength (decorated, $e, options) { 5 | this.minimumInputLength = options.get('minimumInputLength'); 6 | 7 | decorated.call(this, $e, options); 8 | } 9 | 10 | MinimumInputLength.prototype.query = function (decorated, params, callback) { 11 | params.term = params.term || ''; 12 | 13 | if (params.term.length < this.minimumInputLength) { 14 | this.trigger('results:message', { 15 | message: 'inputTooShort', 16 | args: { 17 | minimum: this.minimumInputLength, 18 | input: params.term, 19 | params: params 20 | } 21 | }); 22 | 23 | return; 24 | } 25 | 26 | decorated.call(this, params, callback); 27 | }; 28 | 29 | return MinimumInputLength; 30 | }); 31 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/dropdown/attachContainer.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 3 | ], function () { 4 | function AttachContainer (decorated, $element, options) { 5 | decorated.call(this, $element, options); 6 | } 7 | 8 | AttachContainer.prototype.position = 9 | function (decorated, $dropdown, $container) { 10 | var $dropdownContainer = $container.find('.dropdown-wrapper'); 11 | $dropdownContainer.append($dropdown); 12 | 13 | $dropdown.addClass('select2-dropdown--below'); 14 | $container.addClass('select2-container--below'); 15 | }; 16 | 17 | return AttachContainer; 18 | }); 19 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/dropdown/closeOnSelect.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 3 | ], function () { 4 | function CloseOnSelect () { } 5 | 6 | CloseOnSelect.prototype.bind = function (decorated, container, $container) { 7 | var self = this; 8 | 9 | decorated.call(this, container, $container); 10 | 11 | container.on('select', function (evt) { 12 | self._selectTriggered(evt); 13 | }); 14 | 15 | container.on('unselect', function (evt) { 16 | self._selectTriggered(evt); 17 | }); 18 | }; 19 | 20 | CloseOnSelect.prototype._selectTriggered = function (_, evt) { 21 | var originalEvent = evt.originalEvent; 22 | 23 | // Don't close if the control key is being held 24 | if (originalEvent && originalEvent.ctrlKey) { 25 | return; 26 | } 27 | 28 | this.trigger('close', {}); 29 | }; 30 | 31 | return CloseOnSelect; 32 | }); 33 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/dropdown/stopPropagation.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 3 | ], function () { 4 | function StopPropagation () { } 5 | 6 | StopPropagation.prototype.bind = function (decorated, container, $container) { 7 | decorated.call(this, container, $container); 8 | 9 | var stoppedEvents = [ 10 | 'blur', 11 | 'change', 12 | 'click', 13 | 'dblclick', 14 | 'focus', 15 | 'focusin', 16 | 'focusout', 17 | 'input', 18 | 'keydown', 19 | 'keyup', 20 | 'keypress', 21 | 'mousedown', 22 | 'mouseenter', 23 | 'mouseleave', 24 | 'mousemove', 25 | 'mouseover', 26 | 'mouseup', 27 | 'search', 28 | 'touchend', 29 | 'touchstart' 30 | ]; 31 | 32 | this.$dropdown.on(stoppedEvents.join(' '), function (evt) { 33 | evt.stopPropagation(); 34 | }); 35 | }; 36 | 37 | return StopPropagation; 38 | }); 39 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | // Azerbaijani 3 | return { 4 | inputTooLong: function (args) { 5 | var overChars = args.input.length - args.maximum; 6 | 7 | return overChars + ' simvol silin'; 8 | }, 9 | inputTooShort: function (args) { 10 | var remainingChars = args.minimum - args.input.length; 11 | 12 | return remainingChars + ' simvol daxil edin'; 13 | }, 14 | loadingMore: function () { 15 | return 'Daha çox nəticə yüklənir…'; 16 | }, 17 | maximumSelected: function (args) { 18 | return 'Sadəcə ' + args.maximum + ' element seçə bilərsiniz'; 19 | }, 20 | noResults: function () { 21 | return 'Nəticə tapılmadı'; 22 | }, 23 | searching: function () { 24 | return 'Axtarılır…'; 25 | } 26 | }; 27 | }); 28 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/i18n/fi.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | // Finnish 3 | return { 4 | inputTooLong: function (args) { 5 | var overChars = args.input.length - args.maximum; 6 | 7 | return 'Ole hyvä ja anna ' + overChars + ' merkkiä vähemmän'; 8 | }, 9 | inputTooShort: function (args) { 10 | var remainingChars = args.minimum - args.input.length; 11 | 12 | return 'Ole hyvä ja anna ' + remainingChars + ' merkkiä lisää'; 13 | }, 14 | loadingMore: function () { 15 | return 'Ladataan lisää tuloksia…'; 16 | }, 17 | maximumSelected: function (args) { 18 | return 'Voit valita ainoastaan ' + args.maximum + ' kpl'; 19 | }, 20 | noResults: function () { 21 | return 'Ei tuloksia'; 22 | }, 23 | searching: function () { 24 | 25 | } 26 | }; 27 | }); 28 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/i18n/hu.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | // Hungarian 3 | return { 4 | inputTooLong: function (args) { 5 | var overChars = args.input.length - args.maximum; 6 | 7 | return 'Túl hosszú. ' + overChars + ' karakterrel több, mint kellene.'; 8 | }, 9 | inputTooShort: function (args) { 10 | var remainingChars = args.minimum - args.input.length; 11 | 12 | return 'Túl rövid. Még ' + remainingChars + ' karakter hiányzik.'; 13 | }, 14 | loadingMore: function () { 15 | return 'Töltés…'; 16 | }, 17 | maximumSelected: function (args) { 18 | return 'Csak ' + args.maximum + ' elemet lehet kiválasztani.'; 19 | }, 20 | noResults: function () { 21 | return 'Nincs találat.'; 22 | }, 23 | searching: function () { 24 | return 'Keresés…'; 25 | } 26 | }; 27 | }); 28 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/i18n/id.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | // Indonesian 3 | return { 4 | errorLoading: function () { 5 | return 'Data tidak boleh diambil.'; 6 | }, 7 | inputTooLong: function (args) { 8 | var overChars = args.input.length - args.maximum; 9 | 10 | return 'Hapuskan ' + overChars + ' huruf'; 11 | }, 12 | inputTooShort: function (args) { 13 | var remainingChars = args.minimum - args.input.length; 14 | 15 | return 'Masukkan ' + remainingChars + ' huruf lagi'; 16 | }, 17 | loadingMore: function () { 18 | return 'Mengambil data…'; 19 | }, 20 | maximumSelected: function (args) { 21 | return 'Anda hanya dapat memilih ' + args.maximum + ' pilihan'; 22 | }, 23 | noResults: function () { 24 | return 'Tidak ada data yang sesuai'; 25 | }, 26 | searching: function () { 27 | return 'Mencari…'; 28 | } 29 | }; 30 | }); 31 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | // Chinese (Traditional) 3 | return { 4 | inputTooLong: function (args) { 5 | var overChars = args.input.length - args.maximum; 6 | 7 | var message = '請刪掉' + overChars + '個字元'; 8 | 9 | return message; 10 | }, 11 | inputTooShort: function (args) { 12 | var remainingChars = args.minimum - args.input.length; 13 | 14 | var message = '請再輸入' + remainingChars + '個字元'; 15 | 16 | return message; 17 | }, 18 | loadingMore: function () { 19 | return '載入中…'; 20 | }, 21 | maximumSelected: function (args) { 22 | var message = '你只能選擇最多' + args.maximum + '項'; 23 | 24 | return message; 25 | }, 26 | noResults: function () { 27 | return '沒有找到相符的項目'; 28 | }, 29 | searching: function () { 30 | return '搜尋中…'; 31 | } 32 | }; 33 | }); 34 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/keys.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 3 | ], function () { 4 | var KEYS = { 5 | BACKSPACE: 8, 6 | TAB: 9, 7 | ENTER: 13, 8 | SHIFT: 16, 9 | CTRL: 17, 10 | ALT: 18, 11 | ESC: 27, 12 | SPACE: 32, 13 | PAGE_UP: 33, 14 | PAGE_DOWN: 34, 15 | END: 35, 16 | HOME: 36, 17 | LEFT: 37, 18 | UP: 38, 19 | RIGHT: 39, 20 | DOWN: 40, 21 | DELETE: 46 22 | }; 23 | 24 | return KEYS; 25 | }); 26 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/selection/clickMask.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 'jquery' 3 | ], function ($) { 4 | function ClickMask () { } 5 | 6 | ClickMask.prototype.bind = function (decorate, $container, container) { 7 | var self = this; 8 | 9 | decorate.call(this, $container, container); 10 | 11 | this.$mask = $( 12 | '
' 13 | ); 14 | 15 | this.$mask.on('mousedown touchstart click', function () { 16 | self.trigger('close', {}); 17 | }); 18 | }; 19 | 20 | ClickMask.prototype._attachCloseHandler = function (decorate, container) { 21 | $(document.body).append(this.$mask); 22 | }; 23 | 24 | ClickMask.prototype._detachCloseHandler = function (deocrate, container) { 25 | this.$mask.detach(); 26 | }; 27 | 28 | return ClickMask; 29 | }); 30 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/selection/stopPropagation.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 3 | ], function () { 4 | function StopPropagation () { } 5 | 6 | StopPropagation.prototype.bind = function (decorated, container, $container) { 7 | decorated.call(this, container, $container); 8 | 9 | var stoppedEvents = [ 10 | 'blur', 11 | 'change', 12 | 'click', 13 | 'dblclick', 14 | 'focus', 15 | 'focusin', 16 | 'focusout', 17 | 'input', 18 | 'keydown', 19 | 'keyup', 20 | 'keypress', 21 | 'mousedown', 22 | 'mouseenter', 23 | 'mouseleave', 24 | 'mousemove', 25 | 'mouseover', 26 | 'mouseup', 27 | 'search', 28 | 'touchend', 29 | 'touchstart' 30 | ]; 31 | 32 | this.$selection.on(stoppedEvents.join(' '), function (evt) { 33 | evt.stopPropagation(); 34 | }); 35 | }; 36 | 37 | return StopPropagation; 38 | }); 39 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/select2/translation.js: -------------------------------------------------------------------------------- 1 | define([ 2 | 'jquery', 3 | 'require' 4 | ], function ($, require) { 5 | function Translation (dict) { 6 | this.dict = dict || {}; 7 | } 8 | 9 | Translation.prototype.all = function () { 10 | return this.dict; 11 | }; 12 | 13 | Translation.prototype.get = function (key) { 14 | return this.dict[key]; 15 | }; 16 | 17 | Translation.prototype.extend = function (translation) { 18 | this.dict = $.extend({}, translation.all(), this.dict); 19 | }; 20 | 21 | // Static functions 22 | 23 | Translation._cache = {}; 24 | 25 | Translation.loadPath = function (path) { 26 | if (!(path in Translation._cache)) { 27 | var translations = require(path); 28 | 29 | Translation._cache[path] = translations; 30 | } 31 | 32 | return new Translation(Translation._cache[path]); 33 | }; 34 | 35 | return Translation; 36 | }); 37 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/wrapper.end.js: -------------------------------------------------------------------------------- 1 | // Autoload the jQuery bindings 2 | // We know that all of the modules exist above this, so we're safe 3 | var select2 = S2.require('jquery.select2'); 4 | 5 | // Hold the AMD module references on the jQuery function that was just loaded 6 | // This allows Select2 to use the internal loader outside of this file, such 7 | // as in the language files. 8 | jQuery.fn.select2.amd = S2; 9 | 10 | // Return the Select2 instance for anyone who is importing it. 11 | return select2; 12 | })); 13 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/js/wrapper.start.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Select2 <%= package.version %> 3 | * https://select2.github.io 4 | * 5 | * Released under the MIT license 6 | * https://github.com/select2/select2/blob/master/LICENSE.md 7 | */ 8 | (function (factory) { 9 | if (typeof define === 'function' && define.amd) { 10 | // AMD. Register as an anonymous module. 11 | define(['jquery'], factory); 12 | } else if (typeof exports === 'object') { 13 | // Node/CommonJS 14 | factory(require('jquery')); 15 | } else { 16 | // Browser globals 17 | factory(jQuery); 18 | } 19 | }(function (jQuery) { 20 | // This is needed so we can catch the AMD loader configuration and use it 21 | // The inner file should be wrapped (by `banner.start.js`) in a function that 22 | // returns the AMD loader references. 23 | var S2 = 24 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/scss/_multiple.scss: -------------------------------------------------------------------------------- 1 | .select2-selection--multiple { 2 | box-sizing: border-box; 3 | 4 | cursor: pointer; 5 | display: block; 6 | 7 | min-height: 32px; 8 | 9 | user-select: none; 10 | -webkit-user-select: none; 11 | 12 | .select2-selection__rendered { 13 | display: inline-block; 14 | overflow: hidden; 15 | padding-left: 8px; 16 | text-overflow: ellipsis; 17 | white-space: nowrap; 18 | } 19 | } 20 | 21 | .select2-search--inline { 22 | float: left; 23 | 24 | .select2-search__field { 25 | box-sizing: border-box; 26 | border: none; 27 | font-size: 100%; 28 | margin-top: 5px; 29 | padding: 0; 30 | 31 | &::-webkit-search-cancel-button { 32 | -webkit-appearance: none; 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /static/matrix/js/select2/src/scss/_single.scss: -------------------------------------------------------------------------------- 1 | .select2-selection--single { 2 | box-sizing: border-box; 3 | 4 | cursor: pointer; 5 | display: block; 6 | 7 | height: 28px; 8 | 9 | user-select: none; 10 | -webkit-user-select: none; 11 | 12 | .select2-selection__rendered { 13 | display: block; 14 | padding-left: 8px; 15 | padding-right: 20px; 16 | 17 | overflow: hidden; 18 | text-overflow: ellipsis; 19 | white-space: nowrap; 20 | } 21 | 22 | .select2-selection__clear { 23 | position: relative; 24 | } 25 | } 26 | 27 | &[dir="rtl"] { 28 | .select2-selection--single { 29 | .select2-selection__rendered { 30 | padding-right: 8px; 31 | padding-left: 20px; 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /static/matrix/js/select2/tests/data/base-tests.js: -------------------------------------------------------------------------------- 1 | module('Data adapters - Base'); 2 | 3 | var BaseData = require('select2/data/base'); 4 | var $ = require('jquery'); 5 | var Options = require('select2/options'); 6 | 7 | var options = new Options({}); 8 | 9 | test('current is required', function (assert) { 10 | var data = new BaseData($('#qunit-fixture select'), options); 11 | 12 | assert.throws( 13 | function () { 14 | data.current(function () {}); 15 | }, 16 | 'current has no default implementation' 17 | ); 18 | }); 19 | 20 | test('query is required', function (assert) { 21 | var data = new BaseData($('#qunit-fixture select'), options); 22 | 23 | assert.throws( 24 | function () { 25 | data.query({}, function () {}); 26 | }, 27 | 'query has no default implementation' 28 | ); 29 | }); 30 | -------------------------------------------------------------------------------- /static/matrix/js/select2/tests/integration.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /static/matrix/js/select2/tests/options/translation-tests.js: -------------------------------------------------------------------------------- 1 | module('Options - Translations'); 2 | 3 | var $ = require('jquery'); 4 | var Options = require('select2/options'); 5 | 6 | test('partial dictionaries can be passed', function (assert) { 7 | var options = new Options({ 8 | language: { 9 | searching: function () { 10 | return 'Something'; 11 | } 12 | } 13 | }); 14 | 15 | var translations = options.get('translations'); 16 | 17 | assert.equal( 18 | translations.get('searching')(), 19 | 'Something', 20 | 'The partial dictionary still overrides translations' 21 | ); 22 | 23 | assert.equal( 24 | translations.get('noResults')(), 25 | 'No results found', 26 | 'You can still get English translations for keys not passed in' 27 | ); 28 | }); 29 | -------------------------------------------------------------------------------- /static/matrix/js/service-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/service-index.js -------------------------------------------------------------------------------- /static/matrix/js/shangyou-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/shangyou-index.js -------------------------------------------------------------------------------- /static/matrix/js/style-table.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function () { 2 | 3 | $('tbody tr').hover(function() { 4 | $(this).addClass('odd'); 5 | }, function() { 6 | $(this).removeClass('odd'); 7 | }); 8 | 9 | }); -------------------------------------------------------------------------------- /static/matrix/js/t_interface-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/matrix/js/t_interface-index.js -------------------------------------------------------------------------------- /static/om/css/cmdlist.css: -------------------------------------------------------------------------------- 1 | .mainbox { 2 | padding: 10px; 3 | text-align: center; 4 | color: red; 5 | } -------------------------------------------------------------------------------- /static/om/css/pickList.css: -------------------------------------------------------------------------------- 1 | .pickListButtons { 2 | padding: 10px; 3 | text-align: center; 4 | } 5 | 6 | .pickListButtons button { 7 | margin-bottom: 5px; 8 | } 9 | 10 | .pickListSelect { 11 | height: 200px !important; 12 | } 13 | -------------------------------------------------------------------------------- /static/om/img/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/static/om/img/switch.png -------------------------------------------------------------------------------- /templates/403.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | {% block content %} 3 |

sorry

4 |

403 Forbidden

5 | 6 | 7 | 8 | 9 | 10 | 11 | {% endblock %} 12 | -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 404 Not Found 4 | 5 |

404 Not Found

6 |
nginx
7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 500 Internal Server Error 4 | 5 |

500 Internal Server Error

6 |
nginx
7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /templates/alarm/alarmTransaction.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 |
6 | 7 |
8 | 9 | {% endblock %} -------------------------------------------------------------------------------- /templates/alarm/bussiAlarm.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 |
6 | 7 |
8 | 9 | {% endblock %} -------------------------------------------------------------------------------- /templates/err/404.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block head %} 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | {% endblock %} 15 | 16 | {% block content %} 17 | 18 |
19 |

404

20 |

Opps, You're lost.

21 |

We can not find the page you're looking for.

22 | Back to Home
23 | 24 | 25 | 26 | {% endblock %} -------------------------------------------------------------------------------- /templates/link/backstageManager.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 |
6 | 7 |
8 | 9 | {% endblock %} -------------------------------------------------------------------------------- /templates/link/ordersView.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 | 6 |
7 | 8 |
9 | 10 | {% endblock %} -------------------------------------------------------------------------------- /templates/link/searchInfor.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 |
6 | 7 |
8 | 9 | {% endblock %} -------------------------------------------------------------------------------- /templates/logout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /templates/preview/.monthReport.html.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BruceBee/Dtop/5cc4871d1d1e6994914cbb0e597f9cf5dc0007bb/templates/preview/.monthReport.html.swp -------------------------------------------------------------------------------- /templates/preview/sa.html: -------------------------------------------------------------------------------- 1 | {% extends "V.html" %} 2 | 3 | {% block content %} 4 | 5 | 6 |
7 | 8 |
9 | 10 | {% endblock %} 11 | -------------------------------------------------------------------------------- /templates/test.html: -------------------------------------------------------------------------------- 1 | this is a test page 2 | --------------------------------------------------------------------------------