├── .dockerignore ├── .gitattributes ├── .gitignore ├── LICENSE ├── OpsManage ├── __init__.py ├── asgi.py ├── celery.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── apply_task.py ├── models.py ├── routing.py ├── settings.py ├── urls.py ├── views │ ├── __init__.py │ └── index.py └── wsgi.py ├── README.md ├── apps ├── __init__.py ├── account │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── backends.py │ ├── models.py │ ├── urls.py │ └── views.py ├── api │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── serializers.py │ ├── urls.py │ ├── views.py │ └── views │ │ ├── __init__.py │ │ ├── account_api.py │ │ ├── apply_api.py │ │ ├── apscehd_api.py │ │ ├── assets_api.py │ │ ├── celery_api.py │ │ ├── cicd_api.py │ │ ├── cron_api.py │ │ ├── deploy_api.py │ │ ├── files_api.py │ │ ├── ipvs_api.py │ │ ├── monitor_api.py │ │ ├── mysql_api.py │ │ ├── nav_api.py │ │ ├── orders_api.py │ │ ├── redis_api.py │ │ └── wiki_api.py ├── apply │ ├── __init__.py │ ├── center │ │ ├── __init__.py │ │ └── views.py │ ├── consumers.py │ ├── ipvs │ │ ├── __init__.py │ │ └── views.py │ ├── k8s │ │ ├── __init__.py │ │ └── views.py │ ├── models.py │ ├── tasks │ │ ├── __init__.py │ │ └── views.py │ └── urls.py ├── asset │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── cicd │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── consumers.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── databases │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── mysql │ │ ├── __init__.py │ │ ├── consumers.py │ │ └── views.py │ ├── redis │ │ ├── __init__.py │ │ ├── consumers.py │ │ └── views.py │ ├── tests.py │ └── urls.py ├── deploy │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── consumers.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── navbar │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── orders │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── sched │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── urls.py │ └── views.py ├── tasks │ ├── __init__.py │ ├── callback.py │ ├── celery_assets.py │ ├── celery_deploy.py │ ├── celery_notice.py │ ├── celery_orders.py │ ├── celery_sched.py │ └── celery_sql.py ├── websocket │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── consumers.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py └── wiki │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── urls.py │ └── views.py ├── conf ├── logger.ini └── opsmanage.ini ├── dao ├── __init__.py ├── account.py ├── apply.py ├── apsched.py ├── assets.py ├── base.py ├── celerys.py ├── cicd.py ├── crontab.py ├── dispos.py ├── ipvs.py ├── mysql.py ├── navbar.py ├── orders.py ├── redis.py ├── redisdb.py └── wiki.py ├── demo_imgs ├── donate.png ├── opsmanage.png └── qq_group.png ├── docker ├── Dockerfile ├── README.md ├── docker-compose.yml ├── opsmanage.conf ├── start.sh └── superuser.json ├── libs ├── __init__.py ├── ansible │ ├── __init__.py │ ├── callback.py │ ├── inventory.py │ └── runner.py ├── notice │ ├── __init__.py │ ├── base.py │ ├── dingtalk.py │ ├── email.py │ └── wechat.py ├── redispool.py ├── request.py ├── secret │ ├── __init__.py │ └── aescipher.py ├── sqlparse │ ├── __init__.py │ ├── parse.py │ └── patch.py └── sqlpool.py ├── logs └── opsmanage.log ├── manage.py ├── opsched ├── opsched └── sched.conf ├── requirements.txt ├── service ├── __init__.py ├── apply │ ├── __init__.py │ ├── ipvs.py │ └── tasks.py ├── cicd │ ├── deploy.py │ └── utils.py ├── mysql │ ├── mysql_base.py │ ├── mysql_innodb_status.py │ ├── mysql_innodb_trx.py │ ├── mysql_pxc.py │ ├── mysql_replication.py │ ├── mysql_status.py │ └── mysql_variables.py └── redis │ ├── redis_base.py │ ├── redis_commandstats.py │ ├── redis_memory.py │ └── redis_status.py ├── static ├── Chart.js │ └── dist │ │ ├── Chart.bundle.js │ │ ├── Chart.bundle.min.js │ │ ├── Chart.js │ │ └── Chart.min.js ├── DateJS │ ├── GruntFile.js │ ├── build │ │ ├── date-af-ZA.js │ │ ├── date-ar-AE.js │ │ ├── date-ar-BH.js │ │ ├── date-ar-DZ.js │ │ ├── date-ar-EG.js │ │ ├── date-ar-IQ.js │ │ ├── date-ar-JO.js │ │ ├── date-ar-KW.js │ │ ├── date-ar-LB.js │ │ ├── date-ar-LY.js │ │ ├── date-ar-MA.js │ │ ├── date-ar-OM.js │ │ ├── date-ar-QA.js │ │ ├── date-ar-SA.js │ │ ├── date-ar-SY.js │ │ ├── date-ar-TN.js │ │ ├── date-ar-YE.js │ │ ├── date-az-Cyrl-AZ.js │ │ ├── date-az-Latn-AZ.js │ │ ├── date-be-BY.js │ │ ├── date-bg-BG.js │ │ ├── date-bs-Latn-BA.js │ │ ├── date-ca-ES.js │ │ ├── date-cs-CZ.js │ │ ├── date-cy-GB.js │ │ ├── date-da-DK.js │ │ ├── date-de-AT.js │ │ ├── date-de-CH.js │ │ ├── date-de-DE.js │ │ ├── date-de-LI.js │ │ ├── date-de-LU.js │ │ ├── date-dv-MV.js │ │ ├── date-el-GR.js │ │ ├── date-en-029.js │ │ ├── date-en-AU.js │ │ ├── date-en-BZ.js │ │ ├── date-en-CA.js │ │ ├── date-en-GB.js │ │ ├── date-en-IE.js │ │ ├── date-en-JM.js │ │ ├── date-en-NZ.js │ │ ├── date-en-PH.js │ │ ├── date-en-TT.js │ │ ├── date-en-US.js │ │ ├── date-en-ZA.js │ │ ├── date-en-ZW.js │ │ ├── date-es-AR.js │ │ ├── date-es-BO.js │ │ ├── date-es-CL.js │ │ ├── date-es-CO.js │ │ ├── date-es-CR.js │ │ ├── date-es-DO.js │ │ ├── date-es-EC.js │ │ ├── date-es-ES.js │ │ ├── date-es-GT.js │ │ ├── date-es-HN.js │ │ ├── date-es-MX.js │ │ ├── date-es-NI.js │ │ ├── date-es-PA.js │ │ ├── date-es-PE.js │ │ ├── date-es-PR.js │ │ ├── date-es-PY.js │ │ ├── date-es-SV.js │ │ ├── date-es-UY.js │ │ ├── date-es-VE.js │ │ ├── date-et-EE.js │ │ ├── date-eu-ES.js │ │ ├── date-fa-IR.js │ │ ├── date-fi-FI.js │ │ ├── date-fo-FO.js │ │ ├── date-fr-BE.js │ │ ├── date-fr-CA.js │ │ ├── date-fr-CH.js │ │ ├── date-fr-FR.js │ │ ├── date-fr-LU.js │ │ ├── date-fr-MC.js │ │ ├── date-gl-ES.js │ │ ├── date-gu-IN.js │ │ ├── date-he-IL.js │ │ ├── date-hi-IN.js │ │ ├── date-hr-BA.js │ │ ├── date-hr-HR.js │ │ ├── date-hu-HU.js │ │ ├── date-hy-AM.js │ │ ├── date-id-ID.js │ │ ├── date-is-IS.js │ │ ├── date-it-CH.js │ │ ├── date-it-IT.js │ │ ├── date-ja-JP.js │ │ ├── date-ka-GE.js │ │ ├── date-kk-KZ.js │ │ ├── date-kn-IN.js │ │ ├── date-ko-KR.js │ │ ├── date-kok-IN.js │ │ ├── date-ky-KG.js │ │ ├── date-lt-LT.js │ │ ├── date-lv-LV.js │ │ ├── date-mi-NZ.js │ │ ├── date-mk-MK.js │ │ ├── date-mn-MN.js │ │ ├── date-mr-IN.js │ │ ├── date-ms-BN.js │ │ ├── date-ms-MY.js │ │ ├── date-mt-MT.js │ │ ├── date-nb-NO.js │ │ ├── date-nl-BE.js │ │ ├── date-nl-NL.js │ │ ├── date-nn-NO.js │ │ ├── date-ns-ZA.js │ │ ├── date-pa-IN.js │ │ ├── date-pl-PL.js │ │ ├── date-pt-BR.js │ │ ├── date-pt-PT.js │ │ ├── date-quz-BO.js │ │ ├── date-quz-EC.js │ │ ├── date-quz-PE.js │ │ ├── date-ro-RO.js │ │ ├── date-ru-RU.js │ │ ├── date-sa-IN.js │ │ ├── date-se-FI.js │ │ ├── date-se-NO.js │ │ ├── date-se-SE.js │ │ ├── date-sk-SK.js │ │ ├── date-sl-SI.js │ │ ├── date-sma-NO.js │ │ ├── date-sma-SE.js │ │ ├── date-smj-NO.js │ │ ├── date-smj-SE.js │ │ ├── date-smn-FI.js │ │ ├── date-sms-FI.js │ │ ├── date-sq-AL.js │ │ ├── date-sr-Cyrl-BA.js │ │ ├── date-sr-Cyrl-CS.js │ │ ├── date-sr-Latn-BA.js │ │ ├── date-sr-Latn-CS.js │ │ ├── date-sv-FI.js │ │ ├── date-sv-SE.js │ │ ├── date-sw-KE.js │ │ ├── date-syr-SY.js │ │ ├── date-ta-IN.js │ │ ├── date-te-IN.js │ │ ├── date-th-TH.js │ │ ├── date-tn-ZA.js │ │ ├── date-tr-TR.js │ │ ├── date-tt-RU.js │ │ ├── date-uk-UA.js │ │ ├── date-ur-PK.js │ │ ├── date-uz-Cyrl-UZ.js │ │ ├── date-uz-Latn-UZ.js │ │ ├── date-vi-VN.js │ │ ├── date-xh-ZA.js │ │ ├── date-zh-CN.js │ │ ├── date-zh-HK.js │ │ ├── date-zh-MO.js │ │ ├── date-zh-SG.js │ │ ├── date-zh-TW.js │ │ ├── date-zu-ZA.js │ │ ├── date.js │ │ ├── i18n │ │ │ ├── af-ZA.js │ │ │ ├── ar-AE.js │ │ │ ├── ar-BH.js │ │ │ ├── ar-DZ.js │ │ │ ├── ar-EG.js │ │ │ ├── ar-IQ.js │ │ │ ├── ar-JO.js │ │ │ ├── ar-KW.js │ │ │ ├── ar-LB.js │ │ │ ├── ar-LY.js │ │ │ ├── ar-MA.js │ │ │ ├── ar-OM.js │ │ │ ├── ar-QA.js │ │ │ ├── ar-SA.js │ │ │ ├── ar-SY.js │ │ │ ├── ar-TN.js │ │ │ ├── ar-YE.js │ │ │ ├── az-Cyrl-AZ.js │ │ │ ├── az-Latn-AZ.js │ │ │ ├── be-BY.js │ │ │ ├── bg-BG.js │ │ │ ├── bs-Latn-BA.js │ │ │ ├── ca-ES.js │ │ │ ├── cs-CZ.js │ │ │ ├── cy-GB.js │ │ │ ├── da-DK.js │ │ │ ├── de-AT.js │ │ │ ├── de-CH.js │ │ │ ├── de-DE.js │ │ │ ├── de-LI.js │ │ │ ├── de-LU.js │ │ │ ├── dv-MV.js │ │ │ ├── el-GR.js │ │ │ ├── en-029.js │ │ │ ├── en-AU.js │ │ │ ├── en-BZ.js │ │ │ ├── en-CA.js │ │ │ ├── en-GB.js │ │ │ ├── en-IE.js │ │ │ ├── en-JM.js │ │ │ ├── en-NZ.js │ │ │ ├── en-PH.js │ │ │ ├── en-TT.js │ │ │ ├── en-ZA.js │ │ │ ├── en-ZW.js │ │ │ ├── es-AR.js │ │ │ ├── es-BO.js │ │ │ ├── es-CL.js │ │ │ ├── es-CO.js │ │ │ ├── es-CR.js │ │ │ ├── es-DO.js │ │ │ ├── es-EC.js │ │ │ ├── es-ES.js │ │ │ ├── es-GT.js │ │ │ ├── es-HN.js │ │ │ ├── es-MX.js │ │ │ ├── es-NI.js │ │ │ ├── es-PA.js │ │ │ ├── es-PE.js │ │ │ ├── es-PR.js │ │ │ ├── es-PY.js │ │ │ ├── es-SV.js │ │ │ ├── es-UY.js │ │ │ ├── es-VE.js │ │ │ ├── et-EE.js │ │ │ ├── eu-ES.js │ │ │ ├── fa-IR.js │ │ │ ├── fi-FI.js │ │ │ ├── fo-FO.js │ │ │ ├── fr-BE.js │ │ │ ├── fr-CA.js │ │ │ ├── fr-CH.js │ │ │ ├── fr-FR.js │ │ │ ├── fr-LU.js │ │ │ ├── fr-MC.js │ │ │ ├── gl-ES.js │ │ │ ├── gu-IN.js │ │ │ ├── he-IL.js │ │ │ ├── hi-IN.js │ │ │ ├── hr-BA.js │ │ │ ├── hr-HR.js │ │ │ ├── hu-HU.js │ │ │ ├── hy-AM.js │ │ │ ├── id-ID.js │ │ │ ├── is-IS.js │ │ │ ├── it-CH.js │ │ │ ├── it-IT.js │ │ │ ├── ja-JP.js │ │ │ ├── ka-GE.js │ │ │ ├── kk-KZ.js │ │ │ ├── kn-IN.js │ │ │ ├── ko-KR.js │ │ │ ├── kok-IN.js │ │ │ ├── ky-KG.js │ │ │ ├── lt-LT.js │ │ │ ├── lv-LV.js │ │ │ ├── mi-NZ.js │ │ │ ├── mk-MK.js │ │ │ ├── mn-MN.js │ │ │ ├── mr-IN.js │ │ │ ├── ms-BN.js │ │ │ ├── ms-MY.js │ │ │ ├── mt-MT.js │ │ │ ├── nb-NO.js │ │ │ ├── nl-BE.js │ │ │ ├── nl-NL.js │ │ │ ├── nn-NO.js │ │ │ ├── ns-ZA.js │ │ │ ├── pa-IN.js │ │ │ ├── pl-PL.js │ │ │ ├── pt-BR.js │ │ │ ├── pt-PT.js │ │ │ ├── quz-BO.js │ │ │ ├── quz-EC.js │ │ │ ├── quz-PE.js │ │ │ ├── ro-RO.js │ │ │ ├── ru-RU.js │ │ │ ├── sa-IN.js │ │ │ ├── se-FI.js │ │ │ ├── se-NO.js │ │ │ ├── se-SE.js │ │ │ ├── sk-SK.js │ │ │ ├── sl-SI.js │ │ │ ├── sma-NO.js │ │ │ ├── sma-SE.js │ │ │ ├── smj-NO.js │ │ │ ├── smj-SE.js │ │ │ ├── smn-FI.js │ │ │ ├── sms-FI.js │ │ │ ├── sq-AL.js │ │ │ ├── sr-Cyrl-BA.js │ │ │ ├── sr-Cyrl-CS.js │ │ │ ├── sr-Latn-BA.js │ │ │ ├── sr-Latn-CS.js │ │ │ ├── sv-FI.js │ │ │ ├── sv-SE.js │ │ │ ├── sw-KE.js │ │ │ ├── syr-SY.js │ │ │ ├── ta-IN.js │ │ │ ├── te-IN.js │ │ │ ├── th-TH.js │ │ │ ├── tn-ZA.js │ │ │ ├── tr-TR.js │ │ │ ├── tt-RU.js │ │ │ ├── uk-UA.js │ │ │ ├── ur-PK.js │ │ │ ├── uz-Cyrl-UZ.js │ │ │ ├── uz-Latn-UZ.js │ │ │ ├── vi-VN.js │ │ │ ├── xh-ZA.js │ │ │ ├── zh-CN.js │ │ │ ├── zh-HK.js │ │ │ ├── zh-MO.js │ │ │ ├── zh-SG.js │ │ │ ├── zh-TW.js │ │ │ └── zu-ZA.js │ │ └── production │ │ │ ├── date-af-ZA.min.js │ │ │ ├── date-ar-AE.min.js │ │ │ ├── date-ar-BH.min.js │ │ │ ├── date-ar-DZ.min.js │ │ │ ├── date-ar-EG.min.js │ │ │ ├── date-ar-IQ.min.js │ │ │ ├── date-ar-JO.min.js │ │ │ ├── date-ar-KW.min.js │ │ │ ├── date-ar-LB.min.js │ │ │ ├── date-ar-LY.min.js │ │ │ ├── date-ar-MA.min.js │ │ │ ├── date-ar-OM.min.js │ │ │ ├── date-ar-QA.min.js │ │ │ ├── date-ar-SA.min.js │ │ │ ├── date-ar-SY.min.js │ │ │ ├── date-ar-TN.min.js │ │ │ ├── date-ar-YE.min.js │ │ │ ├── date-az-Cyrl-AZ.min.js │ │ │ ├── date-az-Latn-AZ.min.js │ │ │ ├── date-be-BY.min.js │ │ │ ├── date-bg-BG.min.js │ │ │ ├── date-bs-Latn-BA.min.js │ │ │ ├── date-ca-ES.min.js │ │ │ ├── date-cs-CZ.min.js │ │ │ ├── date-cy-GB.min.js │ │ │ ├── date-da-DK.min.js │ │ │ ├── date-de-AT.min.js │ │ │ ├── date-de-CH.min.js │ │ │ ├── date-de-DE.min.js │ │ │ ├── date-de-LI.min.js │ │ │ ├── date-de-LU.min.js │ │ │ ├── date-dv-MV.min.js │ │ │ ├── date-el-GR.min.js │ │ │ ├── date-en-029.min.js │ │ │ ├── date-en-AU.min.js │ │ │ ├── date-en-BZ.min.js │ │ │ ├── date-en-CA.min.js │ │ │ ├── date-en-GB.min.js │ │ │ ├── date-en-IE.min.js │ │ │ ├── date-en-JM.min.js │ │ │ ├── date-en-NZ.min.js │ │ │ ├── date-en-PH.min.js │ │ │ ├── date-en-TT.min.js │ │ │ ├── date-en-US.min.js │ │ │ ├── date-en-ZA.min.js │ │ │ ├── date-en-ZW.min.js │ │ │ ├── date-es-AR.min.js │ │ │ ├── date-es-BO.min.js │ │ │ ├── date-es-CL.min.js │ │ │ ├── date-es-CO.min.js │ │ │ ├── date-es-CR.min.js │ │ │ ├── date-es-DO.min.js │ │ │ ├── date-es-EC.min.js │ │ │ ├── date-es-ES.min.js │ │ │ ├── date-es-GT.min.js │ │ │ ├── date-es-HN.min.js │ │ │ ├── date-es-MX.min.js │ │ │ ├── date-es-NI.min.js │ │ │ ├── date-es-PA.min.js │ │ │ ├── date-es-PE.min.js │ │ │ ├── date-es-PR.min.js │ │ │ ├── date-es-PY.min.js │ │ │ ├── date-es-SV.min.js │ │ │ ├── date-es-UY.min.js │ │ │ ├── date-es-VE.min.js │ │ │ ├── date-et-EE.min.js │ │ │ ├── date-eu-ES.min.js │ │ │ ├── date-fa-IR.min.js │ │ │ ├── date-fi-FI.min.js │ │ │ ├── date-fo-FO.min.js │ │ │ ├── date-fr-BE.min.js │ │ │ ├── date-fr-CA.min.js │ │ │ ├── date-fr-CH.min.js │ │ │ ├── date-fr-FR.min.js │ │ │ ├── date-fr-LU.min.js │ │ │ ├── date-fr-MC.min.js │ │ │ ├── date-gl-ES.min.js │ │ │ ├── date-gu-IN.min.js │ │ │ ├── date-he-IL.min.js │ │ │ ├── date-hi-IN.min.js │ │ │ ├── date-hr-BA.min.js │ │ │ ├── date-hr-HR.min.js │ │ │ ├── date-hu-HU.min.js │ │ │ ├── date-hy-AM.min.js │ │ │ ├── date-id-ID.min.js │ │ │ ├── date-is-IS.min.js │ │ │ ├── date-it-CH.min.js │ │ │ ├── date-it-IT.min.js │ │ │ ├── date-ja-JP.min.js │ │ │ ├── date-ka-GE.min.js │ │ │ ├── date-kk-KZ.min.js │ │ │ ├── date-kn-IN.min.js │ │ │ ├── date-ko-KR.min.js │ │ │ ├── date-kok-IN.min.js │ │ │ ├── date-ky-KG.min.js │ │ │ ├── date-lt-LT.min.js │ │ │ ├── date-lv-LV.min.js │ │ │ ├── date-mi-NZ.min.js │ │ │ ├── date-mk-MK.min.js │ │ │ ├── date-mn-MN.min.js │ │ │ ├── date-mr-IN.min.js │ │ │ ├── date-ms-BN.min.js │ │ │ ├── date-ms-MY.min.js │ │ │ ├── date-mt-MT.min.js │ │ │ ├── date-nb-NO.min.js │ │ │ ├── date-nl-BE.min.js │ │ │ ├── date-nl-NL.min.js │ │ │ ├── date-nn-NO.min.js │ │ │ ├── date-ns-ZA.min.js │ │ │ ├── date-pa-IN.min.js │ │ │ ├── date-pl-PL.min.js │ │ │ ├── date-pt-BR.min.js │ │ │ ├── date-pt-PT.min.js │ │ │ ├── date-quz-BO.min.js │ │ │ ├── date-quz-EC.min.js │ │ │ ├── date-quz-PE.min.js │ │ │ ├── date-ro-RO.min.js │ │ │ ├── date-ru-RU.min.js │ │ │ ├── date-sa-IN.min.js │ │ │ ├── date-se-FI.min.js │ │ │ ├── date-se-NO.min.js │ │ │ ├── date-se-SE.min.js │ │ │ ├── date-sk-SK.min.js │ │ │ ├── date-sl-SI.min.js │ │ │ ├── date-sma-NO.min.js │ │ │ ├── date-sma-SE.min.js │ │ │ ├── date-smj-NO.min.js │ │ │ ├── date-smj-SE.min.js │ │ │ ├── date-smn-FI.min.js │ │ │ ├── date-sms-FI.min.js │ │ │ ├── date-sq-AL.min.js │ │ │ ├── date-sr-Cyrl-BA.min.js │ │ │ ├── date-sr-Cyrl-CS.min.js │ │ │ ├── date-sr-Latn-BA.min.js │ │ │ ├── date-sr-Latn-CS.min.js │ │ │ ├── date-sv-FI.min.js │ │ │ ├── date-sv-SE.min.js │ │ │ ├── date-sw-KE.min.js │ │ │ ├── date-syr-SY.min.js │ │ │ ├── date-ta-IN.min.js │ │ │ ├── date-te-IN.min.js │ │ │ ├── date-th-TH.min.js │ │ │ ├── date-tn-ZA.min.js │ │ │ ├── date-tr-TR.min.js │ │ │ ├── date-tt-RU.min.js │ │ │ ├── date-uk-UA.min.js │ │ │ ├── date-ur-PK.min.js │ │ │ ├── date-uz-Cyrl-UZ.min.js │ │ │ ├── date-uz-Latn-UZ.min.js │ │ │ ├── date-vi-VN.min.js │ │ │ ├── date-xh-ZA.min.js │ │ │ ├── date-zh-CN.min.js │ │ │ ├── date-zh-HK.min.js │ │ │ ├── date-zh-MO.min.js │ │ │ ├── date-zh-SG.min.js │ │ │ ├── date-zh-TW.min.js │ │ │ ├── date-zu-ZA.min.js │ │ │ ├── date.min.js │ │ │ └── i18n │ │ │ ├── af-ZA.js │ │ │ ├── ar-AE.js │ │ │ ├── ar-BH.js │ │ │ ├── ar-DZ.js │ │ │ ├── ar-EG.js │ │ │ ├── ar-IQ.js │ │ │ ├── ar-JO.js │ │ │ ├── ar-KW.js │ │ │ ├── ar-LB.js │ │ │ ├── ar-LY.js │ │ │ ├── ar-MA.js │ │ │ ├── ar-OM.js │ │ │ ├── ar-QA.js │ │ │ ├── ar-SA.js │ │ │ ├── ar-SY.js │ │ │ ├── ar-TN.js │ │ │ ├── ar-YE.js │ │ │ ├── az-Cyrl-AZ.js │ │ │ ├── az-Latn-AZ.js │ │ │ ├── be-BY.js │ │ │ ├── bg-BG.js │ │ │ ├── bs-Latn-BA.js │ │ │ ├── ca-ES.js │ │ │ ├── cs-CZ.js │ │ │ ├── cy-GB.js │ │ │ ├── da-DK.js │ │ │ ├── de-AT.js │ │ │ ├── de-CH.js │ │ │ ├── de-DE.js │ │ │ ├── de-LI.js │ │ │ ├── de-LU.js │ │ │ ├── dv-MV.js │ │ │ ├── el-GR.js │ │ │ ├── en-029.js │ │ │ ├── en-AU.js │ │ │ ├── en-BZ.js │ │ │ ├── en-CA.js │ │ │ ├── en-GB.js │ │ │ ├── en-IE.js │ │ │ ├── en-JM.js │ │ │ ├── en-NZ.js │ │ │ ├── en-PH.js │ │ │ ├── en-TT.js │ │ │ ├── en-ZA.js │ │ │ ├── en-ZW.js │ │ │ ├── es-AR.js │ │ │ ├── es-BO.js │ │ │ ├── es-CL.js │ │ │ ├── es-CO.js │ │ │ ├── es-CR.js │ │ │ ├── es-DO.js │ │ │ ├── es-EC.js │ │ │ ├── es-ES.js │ │ │ ├── es-GT.js │ │ │ ├── es-HN.js │ │ │ ├── es-MX.js │ │ │ ├── es-NI.js │ │ │ ├── es-PA.js │ │ │ ├── es-PE.js │ │ │ ├── es-PR.js │ │ │ ├── es-PY.js │ │ │ ├── es-SV.js │ │ │ ├── es-UY.js │ │ │ ├── es-VE.js │ │ │ ├── et-EE.js │ │ │ ├── eu-ES.js │ │ │ ├── fa-IR.js │ │ │ ├── fi-FI.js │ │ │ ├── fo-FO.js │ │ │ ├── fr-BE.js │ │ │ ├── fr-CA.js │ │ │ ├── fr-CH.js │ │ │ ├── fr-FR.js │ │ │ ├── fr-LU.js │ │ │ ├── fr-MC.js │ │ │ ├── gl-ES.js │ │ │ ├── gu-IN.js │ │ │ ├── he-IL.js │ │ │ ├── hi-IN.js │ │ │ ├── hr-BA.js │ │ │ ├── hr-HR.js │ │ │ ├── hu-HU.js │ │ │ ├── hy-AM.js │ │ │ ├── id-ID.js │ │ │ ├── is-IS.js │ │ │ ├── it-CH.js │ │ │ ├── it-IT.js │ │ │ ├── ja-JP.js │ │ │ ├── ka-GE.js │ │ │ ├── kk-KZ.js │ │ │ ├── kn-IN.js │ │ │ ├── ko-KR.js │ │ │ ├── kok-IN.js │ │ │ ├── ky-KG.js │ │ │ ├── lt-LT.js │ │ │ ├── lv-LV.js │ │ │ ├── mi-NZ.js │ │ │ ├── mk-MK.js │ │ │ ├── mn-MN.js │ │ │ ├── mr-IN.js │ │ │ ├── ms-BN.js │ │ │ ├── ms-MY.js │ │ │ ├── mt-MT.js │ │ │ ├── nb-NO.js │ │ │ ├── nl-BE.js │ │ │ ├── nl-NL.js │ │ │ ├── nn-NO.js │ │ │ ├── ns-ZA.js │ │ │ ├── pa-IN.js │ │ │ ├── pl-PL.js │ │ │ ├── pt-BR.js │ │ │ ├── pt-PT.js │ │ │ ├── quz-BO.js │ │ │ ├── quz-EC.js │ │ │ ├── quz-PE.js │ │ │ ├── ro-RO.js │ │ │ ├── ru-RU.js │ │ │ ├── sa-IN.js │ │ │ ├── se-FI.js │ │ │ ├── se-NO.js │ │ │ ├── se-SE.js │ │ │ ├── sk-SK.js │ │ │ ├── sl-SI.js │ │ │ ├── sma-NO.js │ │ │ ├── sma-SE.js │ │ │ ├── smj-NO.js │ │ │ ├── smj-SE.js │ │ │ ├── smn-FI.js │ │ │ ├── sms-FI.js │ │ │ ├── sq-AL.js │ │ │ ├── sr-Cyrl-BA.js │ │ │ ├── sr-Cyrl-CS.js │ │ │ ├── sr-Latn-BA.js │ │ │ ├── sr-Latn-CS.js │ │ │ ├── sv-FI.js │ │ │ ├── sv-SE.js │ │ │ ├── sw-KE.js │ │ │ ├── syr-SY.js │ │ │ ├── ta-IN.js │ │ │ ├── te-IN.js │ │ │ ├── th-TH.js │ │ │ ├── tn-ZA.js │ │ │ ├── tr-TR.js │ │ │ ├── tt-RU.js │ │ │ ├── uk-UA.js │ │ │ ├── ur-PK.js │ │ │ ├── uz-Cyrl-UZ.js │ │ │ ├── uz-Latn-UZ.js │ │ │ ├── vi-VN.js │ │ │ ├── xh-ZA.js │ │ │ ├── zh-CN.js │ │ │ ├── zh-HK.js │ │ │ ├── zh-MO.js │ │ │ ├── zh-SG.js │ │ │ ├── zh-TW.js │ │ │ └── zu-ZA.js │ ├── index.js │ ├── reports │ │ ├── coverage.json │ │ ├── lcov-report │ │ │ ├── core │ │ │ │ ├── core-prototypes.js.html │ │ │ │ ├── core.js.html │ │ │ │ ├── extras.js.html │ │ │ │ ├── format_parser.js.html │ │ │ │ ├── i18n.js.html │ │ │ │ ├── index.html │ │ │ │ ├── parser.js.html │ │ │ │ ├── parsing_grammar.js.html │ │ │ │ ├── parsing_operators.js.html │ │ │ │ ├── parsing_translator.js.html │ │ │ │ ├── sugarpak.js.html │ │ │ │ ├── time_period.js.html │ │ │ │ └── time_span.js.html │ │ │ ├── index.html │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ └── lcov.info │ └── src │ │ ├── core │ │ ├── core-prototypes.js │ │ ├── core.js │ │ ├── extras.js │ │ ├── format_parser.js │ │ ├── i18n.js │ │ ├── parser.js │ │ ├── parsing_grammar.js │ │ ├── parsing_operators.js │ │ ├── parsing_translator.js │ │ ├── sugarpak.js │ │ ├── time_period.js │ │ └── time_span.js │ │ ├── i18n-template.js │ │ └── i18n │ │ ├── af-ZA.js │ │ ├── ar-AE.js │ │ ├── ar-BH.js │ │ ├── ar-DZ.js │ │ ├── ar-EG.js │ │ ├── ar-IQ.js │ │ ├── ar-JO.js │ │ ├── ar-KW.js │ │ ├── ar-LB.js │ │ ├── ar-LY.js │ │ ├── ar-MA.js │ │ ├── ar-OM.js │ │ ├── ar-QA.js │ │ ├── ar-SA.js │ │ ├── ar-SY.js │ │ ├── ar-TN.js │ │ ├── ar-YE.js │ │ ├── az-Cyrl-AZ.js │ │ ├── az-Latn-AZ.js │ │ ├── be-BY.js │ │ ├── bg-BG.js │ │ ├── bs-Latn-BA.js │ │ ├── ca-ES.js │ │ ├── cs-CZ.js │ │ ├── cy-GB.js │ │ ├── da-DK.js │ │ ├── de-AT.js │ │ ├── de-CH.js │ │ ├── de-DE.js │ │ ├── de-LI.js │ │ ├── de-LU.js │ │ ├── dv-MV.js │ │ ├── el-GR.js │ │ ├── en-029.js │ │ ├── en-AU.js │ │ ├── en-BZ.js │ │ ├── en-CA.js │ │ ├── en-GB.js │ │ ├── en-IE.js │ │ ├── en-JM.js │ │ ├── en-NZ.js │ │ ├── en-PH.js │ │ ├── en-TT.js │ │ ├── en-ZA.js │ │ ├── en-ZW.js │ │ ├── es-AR.js │ │ ├── es-BO.js │ │ ├── es-CL.js │ │ ├── es-CO.js │ │ ├── es-CR.js │ │ ├── es-DO.js │ │ ├── es-EC.js │ │ ├── es-ES.js │ │ ├── es-GT.js │ │ ├── es-HN.js │ │ ├── es-MX.js │ │ ├── es-NI.js │ │ ├── es-PA.js │ │ ├── es-PE.js │ │ ├── es-PR.js │ │ ├── es-PY.js │ │ ├── es-SV.js │ │ ├── es-UY.js │ │ ├── es-VE.js │ │ ├── et-EE.js │ │ ├── eu-ES.js │ │ ├── fa-IR.js │ │ ├── fi-FI.js │ │ ├── fo-FO.js │ │ ├── fr-BE.js │ │ ├── fr-CA.js │ │ ├── fr-CH.js │ │ ├── fr-FR.js │ │ ├── fr-LU.js │ │ ├── fr-MC.js │ │ ├── gl-ES.js │ │ ├── gu-IN.js │ │ ├── he-IL.js │ │ ├── hi-IN.js │ │ ├── hr-BA.js │ │ ├── hr-HR.js │ │ ├── hu-HU.js │ │ ├── hy-AM.js │ │ ├── id-ID.js │ │ ├── is-IS.js │ │ ├── it-CH.js │ │ ├── it-IT.js │ │ ├── ja-JP.js │ │ ├── ka-GE.js │ │ ├── kk-KZ.js │ │ ├── kn-IN.js │ │ ├── ko-KR.js │ │ ├── kok-IN.js │ │ ├── ky-KG.js │ │ ├── lt-LT.js │ │ ├── lv-LV.js │ │ ├── mi-NZ.js │ │ ├── mk-MK.js │ │ ├── mn-MN.js │ │ ├── mr-IN.js │ │ ├── ms-BN.js │ │ ├── ms-MY.js │ │ ├── mt-MT.js │ │ ├── nb-NO.js │ │ ├── nl-BE.js │ │ ├── nl-NL.js │ │ ├── nn-NO.js │ │ ├── ns-ZA.js │ │ ├── pa-IN.js │ │ ├── pl-PL.js │ │ ├── pt-BR.js │ │ ├── pt-PT.js │ │ ├── quz-BO.js │ │ ├── quz-EC.js │ │ ├── quz-PE.js │ │ ├── ro-RO.js │ │ ├── ru-RU.js │ │ ├── sa-IN.js │ │ ├── se-FI.js │ │ ├── se-NO.js │ │ ├── se-SE.js │ │ ├── sk-SK.js │ │ ├── sl-SI.js │ │ ├── sma-NO.js │ │ ├── sma-SE.js │ │ ├── smj-NO.js │ │ ├── smj-SE.js │ │ ├── smn-FI.js │ │ ├── sms-FI.js │ │ ├── sq-AL.js │ │ ├── sr-Cyrl-BA.js │ │ ├── sr-Cyrl-CS.js │ │ ├── sr-Latn-BA.js │ │ ├── sr-Latn-CS.js │ │ ├── sv-FI.js │ │ ├── sv-SE.js │ │ ├── sw-KE.js │ │ ├── syr-SY.js │ │ ├── ta-IN.js │ │ ├── te-IN.js │ │ ├── th-TH.js │ │ ├── tn-ZA.js │ │ ├── tr-TR.js │ │ ├── tt-RU.js │ │ ├── uk-UA.js │ │ ├── ur-PK.js │ │ ├── uz-Cyrl-UZ.js │ │ ├── uz-Latn-UZ.js │ │ ├── vi-VN.js │ │ ├── xh-ZA.js │ │ ├── zh-CN.js │ │ ├── zh-HK.js │ │ ├── zh-MO.js │ │ ├── zh-SG.js │ │ ├── zh-TW.js │ │ └── zu-ZA.js ├── Flot │ ├── excanvas.js │ ├── excanvas.min.js │ ├── jquery.colorhelpers.js │ ├── jquery.flot.canvas.js │ ├── jquery.flot.categories.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.errorbars.js │ ├── jquery.flot.fillbetween.js │ ├── jquery.flot.image.js │ ├── jquery.flot.js │ ├── jquery.flot.navigate.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.symbol.js │ ├── jquery.flot.threshold.js │ └── jquery.flot.time.js ├── ace │ └── js │ │ ├── ace.js │ │ ├── ext-language_tools.js │ │ ├── ext-old_ie.js │ │ ├── mode-json.js │ │ ├── mode-mysql.js │ │ ├── mode-perl.js │ │ ├── mode-python.js │ │ ├── mode-sh.js │ │ ├── mode-yaml.js │ │ ├── snippets │ │ ├── json.js │ │ ├── mysql.js │ │ ├── perl.js │ │ ├── python.js │ │ ├── sh.js │ │ ├── text.js │ │ └── yaml.js │ │ ├── theme-monokai.js │ │ ├── theme-sqlserver.js │ │ ├── theme-terminal.js │ │ └── worker-json.js ├── bootstrap-daterangepicker │ ├── daterangepicker.css │ ├── daterangepicker.js │ └── daterangepicker.scss ├── bootstrap-datetimepicker │ ├── css │ │ └── bootstrap-datetimepicker.min.css │ ├── js │ │ └── bootstrap-datetimepicker.min.js │ └── switchery │ │ ├── .bower.json │ │ ├── CHANGELOG.md │ │ ├── bower.json │ │ ├── dist │ │ ├── switchery.css │ │ ├── switchery.js │ │ ├── switchery.min.css │ │ └── switchery.min.js │ │ ├── meteor │ │ ├── export.js │ │ └── tests.js │ │ ├── package.js │ │ ├── package.json │ │ ├── switchery.css │ │ └── switchery.js ├── bootstrap-progressbar │ ├── .bower.json │ ├── CHANGELOG.md │ ├── CONTRIBUTORS.md │ ├── LICENSE │ ├── README.md │ ├── bootstrap-progressbar.js │ ├── bootstrap-progressbar.min.js │ ├── bower.json │ ├── css │ │ ├── bootstrap-progressbar-2.0.0.css │ │ ├── bootstrap-progressbar-2.0.0.min.css │ │ ├── bootstrap-progressbar-2.0.1.css │ │ ├── bootstrap-progressbar-2.0.1.min.css │ │ ├── bootstrap-progressbar-2.0.2.css │ │ ├── bootstrap-progressbar-2.0.2.min.css │ │ ├── bootstrap-progressbar-2.0.3.css │ │ ├── bootstrap-progressbar-2.0.3.min.css │ │ ├── bootstrap-progressbar-2.0.4.css │ │ ├── bootstrap-progressbar-2.0.4.min.css │ │ ├── bootstrap-progressbar-2.1.0.css │ │ ├── bootstrap-progressbar-2.1.0.min.css │ │ ├── bootstrap-progressbar-2.1.1.css │ │ ├── bootstrap-progressbar-2.1.1.min.css │ │ ├── bootstrap-progressbar-2.2.0.css │ │ ├── bootstrap-progressbar-2.2.0.min.css │ │ ├── bootstrap-progressbar-2.2.1.css │ │ ├── bootstrap-progressbar-2.2.1.min.css │ │ ├── bootstrap-progressbar-2.2.2.css │ │ ├── bootstrap-progressbar-2.2.2.min.css │ │ ├── bootstrap-progressbar-2.3.0.css │ │ ├── bootstrap-progressbar-2.3.0.min.css │ │ ├── bootstrap-progressbar-2.3.1.css │ │ ├── bootstrap-progressbar-2.3.1.min.css │ │ ├── bootstrap-progressbar-2.3.2.css │ │ ├── bootstrap-progressbar-2.3.2.min.css │ │ ├── bootstrap-progressbar-3.0.0-rc1.css │ │ ├── bootstrap-progressbar-3.0.0-rc1.min.css │ │ ├── bootstrap-progressbar-3.0.0-rc2.css │ │ ├── bootstrap-progressbar-3.0.0-rc2.min.css │ │ ├── bootstrap-progressbar-3.0.0.css │ │ ├── bootstrap-progressbar-3.0.0.min.css │ │ ├── bootstrap-progressbar-3.0.1.css │ │ ├── bootstrap-progressbar-3.0.1.min.css │ │ ├── bootstrap-progressbar-3.0.2.css │ │ ├── bootstrap-progressbar-3.0.2.min.css │ │ ├── bootstrap-progressbar-3.0.3.css │ │ ├── bootstrap-progressbar-3.0.3.min.css │ │ ├── bootstrap-progressbar-3.1.0.css │ │ ├── bootstrap-progressbar-3.1.0.min.css │ │ ├── bootstrap-progressbar-3.1.1.css │ │ ├── bootstrap-progressbar-3.1.1.min.css │ │ ├── bootstrap-progressbar-3.2.0.css │ │ ├── bootstrap-progressbar-3.2.0.min.css │ │ ├── bootstrap-progressbar-3.3.0.css │ │ ├── bootstrap-progressbar-3.3.0.min.css │ │ ├── bootstrap-progressbar-3.3.1.css │ │ ├── bootstrap-progressbar-3.3.1.min.css │ │ ├── bootstrap-progressbar-3.3.2.css │ │ ├── bootstrap-progressbar-3.3.2.min.css │ │ ├── bootstrap-progressbar-3.3.4.css │ │ └── bootstrap-progressbar-3.3.4.min.css │ ├── less │ │ ├── bootstrap-progressbar-2.x.x.less │ │ ├── bootstrap-progressbar-3.0.0-3.1.x.less │ │ ├── bootstrap-progressbar-3.2.0.less │ │ └── bootstrap-progressbar-3.3.0-3.x.x.less │ ├── package.json │ └── scss │ │ ├── bootstrap-progressbar-2.x.x.scss │ │ ├── bootstrap-progressbar-3.0.0-3.1.x.scss │ │ ├── bootstrap-progressbar-3.2.0.scss │ │ └── bootstrap-progressbar-3.3.0-3.x.x.scss ├── bootstrap │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── ckeditor │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es-mx.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── adobeair │ │ │ └── plugin.js │ │ ├── ajax │ │ │ └── plugin.js │ │ ├── autoembed │ │ │ ├── lang │ │ │ │ ├── cs.js │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── it.js │ │ │ │ ├── ku.js │ │ │ │ ├── nb.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── tr.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── autogrow │ │ │ └── plugin.js │ │ ├── autolink │ │ │ └── plugin.js │ │ ├── bbcode │ │ │ └── plugin.js │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── codesnippet │ │ │ ├── dialogs │ │ │ │ └── codesnippet.js │ │ │ ├── icons │ │ │ │ ├── codesnippet.png │ │ │ │ └── hidpi │ │ │ │ │ └── codesnippet.png │ │ │ ├── lang │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── lib │ │ │ │ └── highlight │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.ru.md │ │ │ │ │ ├── highlight.pack.js │ │ │ │ │ └── styles │ │ │ │ │ ├── arta.css │ │ │ │ │ ├── ascetic.css │ │ │ │ │ ├── atelier-dune.dark.css │ │ │ │ │ ├── atelier-dune.light.css │ │ │ │ │ ├── atelier-forest.dark.css │ │ │ │ │ ├── atelier-forest.light.css │ │ │ │ │ ├── atelier-heath.dark.css │ │ │ │ │ ├── atelier-heath.light.css │ │ │ │ │ ├── atelier-lakeside.dark.css │ │ │ │ │ ├── atelier-lakeside.light.css │ │ │ │ │ ├── atelier-seaside.dark.css │ │ │ │ │ ├── atelier-seaside.light.css │ │ │ │ │ ├── brown_paper.css │ │ │ │ │ ├── brown_papersq.png │ │ │ │ │ ├── dark.css │ │ │ │ │ ├── default.css │ │ │ │ │ ├── docco.css │ │ │ │ │ ├── far.css │ │ │ │ │ ├── foundation.css │ │ │ │ │ ├── github.css │ │ │ │ │ ├── googlecode.css │ │ │ │ │ ├── idea.css │ │ │ │ │ ├── ir_black.css │ │ │ │ │ ├── magula.css │ │ │ │ │ ├── mono-blue.css │ │ │ │ │ ├── monokai.css │ │ │ │ │ ├── monokai_sublime.css │ │ │ │ │ ├── obsidian.css │ │ │ │ │ ├── paraiso.dark.css │ │ │ │ │ ├── paraiso.light.css │ │ │ │ │ ├── pojoaque.css │ │ │ │ │ ├── pojoaque.jpg │ │ │ │ │ ├── railscasts.css │ │ │ │ │ ├── rainbow.css │ │ │ │ │ ├── school_book.css │ │ │ │ │ ├── school_book.png │ │ │ │ │ ├── solarized_dark.css │ │ │ │ │ ├── solarized_light.css │ │ │ │ │ ├── sunburst.css │ │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ ├── tomorrow-night.css │ │ │ │ │ ├── tomorrow.css │ │ │ │ │ ├── vs.css │ │ │ │ │ ├── xcode.css │ │ │ │ │ └── zenburn.css │ │ │ └── plugin.js │ │ ├── codesnippetgeshi │ │ │ └── plugin.js │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ ├── colordialog.css │ │ │ │ └── colordialog.js │ │ ├── copyformatting │ │ │ ├── cursors │ │ │ │ ├── cursor-disabled.svg │ │ │ │ └── cursor.svg │ │ │ └── styles │ │ │ │ └── copyformatting.css │ │ ├── devtools │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── div │ │ │ └── dialogs │ │ │ │ └── div.js │ │ ├── divarea │ │ │ └── plugin.js │ │ ├── docprops │ │ │ ├── dialogs │ │ │ │ └── docprops.js │ │ │ ├── icons │ │ │ │ ├── docprops-rtl.png │ │ │ │ ├── docprops.png │ │ │ │ └── hidpi │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ └── docprops.png │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── embed │ │ │ ├── icons │ │ │ │ ├── embed.png │ │ │ │ └── hidpi │ │ │ │ │ └── embed.png │ │ │ └── plugin.js │ │ ├── embedbase │ │ │ ├── dialogs │ │ │ │ └── embedbase.js │ │ │ ├── lang │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── it.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── ru.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── embedsemantic │ │ │ ├── icons │ │ │ │ ├── embedsemantic.png │ │ │ │ └── hidpi │ │ │ │ │ └── embedsemantic.png │ │ │ └── plugin.js │ │ ├── filetools │ │ │ ├── lang │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── it.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── ru.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── find │ │ │ └── dialogs │ │ │ │ └── find.js │ │ ├── flash │ │ │ ├── dialogs │ │ │ │ └── flash.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── forms │ │ │ ├── dialogs │ │ │ │ ├── button.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── form.js │ │ │ │ ├── hiddenfield.js │ │ │ │ ├── radio.js │ │ │ │ ├── select.js │ │ │ │ ├── textarea.js │ │ │ │ └── textfield.js │ │ │ └── images │ │ │ │ └── hiddenfield.gif │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── iframe │ │ │ ├── dialogs │ │ │ │ └── iframe.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── iframedialog │ │ │ └── plugin.js │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── image2 │ │ │ ├── dialogs │ │ │ │ └── image2.js │ │ │ ├── icons │ │ │ │ ├── hidpi │ │ │ │ │ └── image.png │ │ │ │ └── image.png │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── language │ │ │ ├── icons │ │ │ │ ├── hidpi │ │ │ │ │ └── language.png │ │ │ │ └── language.png │ │ │ ├── lang │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── lineutils │ │ │ └── plugin.js │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── liststyle │ │ │ └── dialogs │ │ │ │ └── liststyle.js │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ ├── mathjax │ │ │ ├── dialogs │ │ │ │ └── mathjax.js │ │ │ ├── icons │ │ │ │ ├── hidpi │ │ │ │ │ └── mathjax.png │ │ │ │ └── mathjax.png │ │ │ ├── images │ │ │ │ └── loader.gif │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── menubutton │ │ │ └── plugin.js │ │ ├── notification │ │ │ ├── lang │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── it.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── ru.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── notificationaggregator │ │ │ └── plugin.js │ │ ├── pagebreak │ │ │ └── images │ │ │ │ └── pagebreak.gif │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── placeholder │ │ │ ├── dialogs │ │ │ │ └── placeholder.js │ │ │ ├── icons │ │ │ │ ├── hidpi │ │ │ │ │ └── placeholder.png │ │ │ │ └── placeholder.png │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scayt │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ │ ├── dialog.css │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── scayt.css │ │ ├── sharedspace │ │ │ └── plugin.js │ │ ├── showblocks │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ └── block_pre.png │ │ ├── smiley │ │ │ ├── dialogs │ │ │ │ └── smiley.js │ │ │ └── images │ │ │ │ ├── angel_smile.gif │ │ │ │ ├── angel_smile.png │ │ │ │ ├── angry_smile.gif │ │ │ │ ├── angry_smile.png │ │ │ │ ├── broken_heart.gif │ │ │ │ ├── broken_heart.png │ │ │ │ ├── confused_smile.gif │ │ │ │ ├── confused_smile.png │ │ │ │ ├── cry_smile.gif │ │ │ │ ├── cry_smile.png │ │ │ │ ├── devil_smile.gif │ │ │ │ ├── devil_smile.png │ │ │ │ ├── embaressed_smile.gif │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ ├── embarrassed_smile.png │ │ │ │ ├── envelope.gif │ │ │ │ ├── envelope.png │ │ │ │ ├── heart.gif │ │ │ │ ├── heart.png │ │ │ │ ├── kiss.gif │ │ │ │ ├── kiss.png │ │ │ │ ├── lightbulb.gif │ │ │ │ ├── lightbulb.png │ │ │ │ ├── omg_smile.gif │ │ │ │ ├── omg_smile.png │ │ │ │ ├── regular_smile.gif │ │ │ │ ├── regular_smile.png │ │ │ │ ├── sad_smile.gif │ │ │ │ ├── sad_smile.png │ │ │ │ ├── shades_smile.gif │ │ │ │ ├── shades_smile.png │ │ │ │ ├── teeth_smile.gif │ │ │ │ ├── teeth_smile.png │ │ │ │ ├── thumbs_down.gif │ │ │ │ ├── thumbs_down.png │ │ │ │ ├── thumbs_up.gif │ │ │ │ ├── thumbs_up.png │ │ │ │ ├── tongue_smile.gif │ │ │ │ ├── tongue_smile.png │ │ │ │ ├── tounge_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ ├── wink_smile.gif │ │ │ │ └── wink_smile.png │ │ ├── sourcedialog │ │ │ ├── dialogs │ │ │ │ └── sourcedialog.js │ │ │ ├── icons │ │ │ │ ├── hidpi │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ └── sourcedialog.png │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ └── sourcedialog.png │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── stylesheetparser │ │ │ └── plugin.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tableresize │ │ │ └── plugin.js │ │ ├── tableselection │ │ │ └── styles │ │ │ │ └── tableselection.css │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── templates │ │ │ ├── dialogs │ │ │ │ ├── templates.css │ │ │ │ └── templates.js │ │ │ └── templates │ │ │ │ ├── default.js │ │ │ │ └── images │ │ │ │ ├── template1.gif │ │ │ │ ├── template2.gif │ │ │ │ └── template3.gif │ │ ├── uicolor │ │ │ ├── dialogs │ │ │ │ └── uicolor.js │ │ │ ├── icons │ │ │ │ ├── hidpi │ │ │ │ │ └── uicolor.png │ │ │ │ └── uicolor.png │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugin.js │ │ │ └── yui │ │ │ │ ├── assets │ │ │ │ ├── hue_bg.png │ │ │ │ ├── hue_thumb.png │ │ │ │ ├── picker_mask.png │ │ │ │ ├── picker_thumb.png │ │ │ │ └── yui.css │ │ │ │ └── yui.js │ │ ├── widget │ │ │ ├── images │ │ │ │ └── handle.png │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── wsc.css │ │ └── xml │ │ │ └── plugin.js │ ├── skins │ │ ├── moono-lisa │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ └── readme.md │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── spinner.gif │ │ │ └── readme.md │ └── styles.js ├── css │ ├── bootstrap-select.css │ ├── custom.css │ ├── custom.min.css │ ├── doublebox-bootstrap.css │ ├── jquery-ui.min.css │ ├── jquery.orgchart.css │ ├── tagstyles.css │ └── wiki.css ├── datatable │ ├── datatables.net-bs │ │ ├── css │ │ │ ├── dataTables.bootstrap.css │ │ │ └── dataTables.bootstrap.min.css │ │ └── js │ │ │ ├── dataTables.bootstrap.js │ │ │ └── dataTables.bootstrap.min.js │ ├── datatables.net-buttons-bs │ │ ├── css │ │ │ ├── buttons.bootstrap.css │ │ │ └── buttons.bootstrap.min.css │ │ └── js │ │ │ ├── buttons.bootstrap.js │ │ │ └── buttons.bootstrap.min.js │ ├── datatables.net-buttons │ │ └── js │ │ │ ├── buttons.colVis.js │ │ │ ├── buttons.colVis.min.js │ │ │ ├── buttons.flash.js │ │ │ ├── buttons.flash.min.js │ │ │ ├── buttons.html5.js │ │ │ ├── buttons.html5.min.js │ │ │ ├── buttons.print.js │ │ │ ├── buttons.print.min.js │ │ │ ├── dataTables.buttons.js │ │ │ └── dataTables.buttons.min.js │ ├── datatables.net-fixedheader-bs │ │ └── css │ │ │ ├── fixedHeader.bootstrap.css │ │ │ └── fixedHeader.bootstrap.min.css │ ├── datatables.net-fixedheader │ │ └── js │ │ │ ├── dataTables.fixedHeader.js │ │ │ └── dataTables.fixedHeader.min.js │ ├── datatables.net-keytable │ │ └── js │ │ │ ├── dataTables.keyTable.js │ │ │ └── dataTables.keyTable.min.js │ ├── datatables.net-responsive-bs │ │ ├── css │ │ │ ├── responsive.bootstrap.css │ │ │ └── responsive.bootstrap.min.css │ │ └── js │ │ │ └── responsive.bootstrap.js │ ├── datatables.net-responsive │ │ └── js │ │ │ ├── dataTables.responsive.js │ │ │ └── dataTables.responsive.min.js │ ├── datatables.net-scroller-bs │ │ └── css │ │ │ ├── scroller.bootstrap.css │ │ │ └── scroller.bootstrap.min.css │ ├── datatables.net-scroller │ │ └── js │ │ │ ├── dataTables.scroller.js │ │ │ └── dataTables.scroller.min.js │ ├── datatables.net-select │ │ ├── css │ │ │ ├── dataTables.checkboxes.css │ │ │ └── select.dataTables.min.css │ │ └── js │ │ │ └── dataTables.select.min.js │ └── datatables.net │ │ └── js │ │ ├── jquery.dataTables.js │ │ └── jquery.dataTables.min.js ├── fastclick │ └── lib │ │ └── fastclick.js ├── fileinput │ ├── css │ │ └── fileinput.css │ ├── img │ │ └── loading.gif │ └── js │ │ └── fileinput.js ├── flot-spline │ └── js │ │ ├── jquery.flot.spline.js │ │ └── jquery.flot.spline.min.js ├── flot.curvedlines │ └── curvedLines.js ├── flot.orderbars │ └── js │ │ └── jquery.flot.orderBars.js ├── flot.tooltip │ └── jquery.flot.tooltip.js ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ ├── font-awesome.css.map │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── NotoSansCJKsc-Regular.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── screen-reader.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss ├── gauge.js │ └── dist │ │ ├── gauge.coffee │ │ ├── gauge.js │ │ └── gauge.min.js ├── iCheck │ ├── icheck.js │ ├── icheck.min.js │ └── skins │ │ ├── all.css │ │ ├── flat │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── flat.css │ │ ├── flat.png │ │ ├── flat@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ │ ├── futurico │ │ ├── futurico.css │ │ ├── futurico.png │ │ └── futurico@2x.png │ │ ├── line │ │ ├── _all.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── green.css │ │ ├── grey.css │ │ ├── line.css │ │ ├── line.png │ │ ├── line@2x.png │ │ ├── orange.css │ │ ├── pink.css │ │ ├── purple.css │ │ ├── red.css │ │ └── yellow.css │ │ ├── minimal │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── minimal.css │ │ ├── minimal.png │ │ ├── minimal@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ │ ├── polaris │ │ ├── polaris.css │ │ ├── polaris.png │ │ └── polaris@2x.png │ │ └── square │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── square.css │ │ ├── square.png │ │ ├── square@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png ├── images │ ├── american-express.png │ ├── closae.png │ ├── close.png │ ├── details_close.png │ ├── details_open.png │ ├── divclose.jpg │ ├── docker.png │ ├── elasticsearch.png │ ├── etcd.png │ ├── favicon.png │ ├── img.jpg │ ├── kafka.png │ ├── kubernetes.png │ ├── mongodb.png │ ├── mysql.png │ ├── postgresql.png │ ├── prometheus.png │ ├── redis.png │ ├── ui-bg_flat_75_ffffff_40x100.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_glass_75_dadada_1x400.png │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ └── ui-bg_highlight-soft_75_cccccc_1x100.png ├── jquery-confirm │ ├── jquery-confirm.min.css │ └── jquery-confirm.min.js ├── jquery-contextmenu │ ├── css │ │ └── jquery.contextMenu.min.css │ └── js │ │ ├── jquery.contextMenu.min.js │ │ └── jquery.ui.position.js ├── jquery-knob │ └── dist │ │ └── jquery.knob.min.js ├── jquery-sparkline │ └── dist │ │ ├── jquery.sparkline.js │ │ └── jquery.sparkline.min.js ├── jquery │ └── dist │ │ ├── jquery-ui.min.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── js │ ├── account │ │ ├── center.js │ │ ├── manage.js │ │ └── task.js │ ├── apply │ │ ├── center.js │ │ ├── ipvs.js │ │ └── tasks.js │ ├── assets │ │ ├── assets.js │ │ ├── business.js │ │ └── config.js │ ├── cicd │ │ ├── apps.js │ │ ├── config.js │ │ ├── edit.js │ │ └── status.js │ ├── csrf │ │ └── csrf.js │ ├── custom │ │ ├── custom.min.js │ │ └── index.js │ ├── database │ │ ├── mysql │ │ │ ├── db.js │ │ │ ├── histroy.js │ │ │ ├── manage.js │ │ │ └── query.js │ │ └── redis │ │ │ ├── db.js │ │ │ ├── histroy.js │ │ │ └── manage.js │ ├── deploy │ │ ├── deploy.js │ │ └── logs.js │ ├── doublebox │ │ └── doublebox-bootstrap.js │ ├── dragable │ │ └── dragable.js │ ├── navbar │ │ ├── nav.js │ │ └── view.js │ ├── orders │ │ ├── apply.js │ │ ├── common.js │ │ ├── filedownload.js │ │ ├── fileupload.js │ │ ├── list.js │ │ ├── service.js │ │ └── sql.js │ ├── orgchart │ │ └── jquery.orgchart.js │ ├── sched │ │ ├── apsched.js │ │ ├── celery.js │ │ └── cron.js │ ├── select │ │ └── bootstrap-select.js │ ├── tagcanvas │ │ └── jquery.tagcanvas.js │ └── wiki │ │ └── post.js ├── jstree │ ├── css │ │ ├── 32px.png │ │ ├── 40px.png │ │ ├── style.min.css │ │ └── throbber.gif │ └── js │ │ └── jstree.min.js ├── malihu-custom-scrollbar-plugin │ ├── jquery.mCustomScrollbar.concat.min.js │ ├── jquery.mCustomScrollbar.css │ ├── jquery.mCustomScrollbar.js │ ├── jquery.mCustomScrollbar.min.css │ └── mCSB_buttons.png ├── moment │ └── min │ │ ├── locales.js │ │ ├── locales.min.js │ │ ├── moment-with-locales.js │ │ ├── moment-with-locales.min.js │ │ └── moment.min.js ├── morris.js │ ├── morris.js │ └── morris.min.js ├── nprogress │ ├── nprogress.css │ └── nprogress.js ├── pnotify │ └── dist │ │ ├── pnotify.animate.js │ │ ├── pnotify.brighttheme.css │ │ ├── pnotify.buttons.css │ │ ├── pnotify.buttons.js │ │ ├── pnotify.callbacks.js │ │ ├── pnotify.confirm.js │ │ ├── pnotify.css │ │ ├── pnotify.desktop.js │ │ ├── pnotify.history.css │ │ ├── pnotify.history.js │ │ ├── pnotify.js │ │ ├── pnotify.material.css │ │ ├── pnotify.mobile.css │ │ ├── pnotify.mobile.js │ │ ├── pnotify.nonblock.css │ │ ├── pnotify.nonblock.js │ │ ├── pnotify.reference.js │ │ └── pnotify.tooltip.js ├── raphael │ ├── raphael.js │ └── raphael.min.js ├── simpler-sidebar │ └── simpler-sidebar.min.js ├── switchery │ └── dist │ │ ├── css │ │ └── bootstrap-switch.min.css │ │ └── js │ │ └── bootstrap-switch.min.js ├── tooltips │ ├── css │ │ └── tooltips.css │ └── js │ │ └── jquery.pure.tooltips.js ├── validator │ ├── fv.css │ └── validator.js ├── webstack │ ├── css │ │ ├── fonts │ │ │ ├── elusive │ │ │ │ ├── css │ │ │ │ │ ├── animation.css │ │ │ │ │ ├── elusive-codes.css │ │ │ │ │ ├── elusive-embedded.css │ │ │ │ │ ├── elusive-ie7-codes.css │ │ │ │ │ ├── elusive-ie7.css │ │ │ │ │ └── elusive.css │ │ │ │ └── font │ │ │ │ │ ├── elusive.eot │ │ │ │ │ ├── elusive.svg │ │ │ │ │ ├── elusive.ttf │ │ │ │ │ └── elusive.woff │ │ │ ├── fontawesome │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── glyphicons │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── linecons │ │ │ │ ├── css │ │ │ │ │ ├── animation.css │ │ │ │ │ ├── linecons-codes.css │ │ │ │ │ ├── linecons-embedded.css │ │ │ │ │ ├── linecons-ie7-codes.css │ │ │ │ │ ├── linecons-ie7.css │ │ │ │ │ └── linecons.css │ │ │ │ └── font │ │ │ │ │ ├── linecons.eot │ │ │ │ │ ├── linecons.svg │ │ │ │ │ ├── linecons.ttf │ │ │ │ │ └── linecons.woff │ │ │ └── meteocons │ │ │ │ ├── css │ │ │ │ ├── animation.css │ │ │ │ ├── meteocons-codes.css │ │ │ │ ├── meteocons-embedded.css │ │ │ │ ├── meteocons-ie7-codes.css │ │ │ │ ├── meteocons-ie7.css │ │ │ │ └── meteocons.css │ │ │ │ └── font │ │ │ │ ├── meteocons.eot │ │ │ │ ├── meteocons.svg │ │ │ │ ├── meteocons.ttf │ │ │ │ └── meteocons.woff │ │ ├── nav.css │ │ ├── xenon-components.css │ │ └── xenon-core.css │ └── images │ │ ├── flags │ │ ├── flag-cn.png │ │ └── flag-us.png │ │ └── logos │ │ └── ops.png └── xterm │ ├── addons │ ├── attach │ │ ├── attach.js │ │ ├── index.html │ │ └── package.json │ ├── fit │ │ └── fit.js │ ├── fullscreen │ │ ├── fullscreen.css │ │ ├── fullscreen.js │ │ └── package.json │ ├── search │ │ ├── search.js │ │ └── search.js.map │ └── terminado │ │ ├── package.json │ │ └── terminado.js │ ├── fit.js │ ├── reconnecting-websocket.js │ ├── xterm.css │ └── xterm.js ├── templates ├── 403.html ├── 404.html ├── account │ ├── user_center.html │ └── user_manage.html ├── apply │ ├── center │ │ └── apply_center.html │ ├── ipvs │ │ └── list.html │ └── tasks │ │ └── apply_tasks.html ├── assets │ ├── assets_add.html │ ├── assets_business_tree.html │ ├── assets_config.html │ ├── assets_list.html │ └── assets_modf.html ├── base.html ├── cicd │ ├── cicd_config.html │ ├── cicd_edit.html │ ├── cicd_list.html │ └── cicd_status.html ├── database │ ├── mysql │ │ ├── db_config.html │ │ ├── db_history.html │ │ ├── db_manage.html │ │ └── db_query.html │ └── redis │ │ ├── db_config.html │ │ ├── db_history.html │ │ └── db_manage.html ├── deploy │ ├── deploy_inventory.html │ ├── deploy_logs.html │ ├── deploy_model.html │ ├── deploy_playbook.html │ └── deploy_scripts.html ├── login.html ├── navbar │ ├── navbar_list.html │ ├── navbar_manage.html │ └── navbar_third.html ├── orders │ ├── order_apply.html │ ├── order_filedownload.html │ ├── order_fileupload.html │ ├── order_list.html │ ├── order_service.html │ └── order_sql.html ├── sched │ ├── apsched_manage.html │ ├── celery_manage.html │ └── cron_manage.html ├── websocket │ └── ssh.html └── wiki │ ├── wiki_base.html │ ├── wiki_edit.html │ ├── wiki_post.html │ └── wiki_show.html ├── utils ├── __init__.py ├── avatar.py ├── base.py ├── deploy │ ├── __init__.py │ ├── git.py │ └── svn.py ├── execl.py ├── logger.py ├── mysql │ ├── __init__.py │ ├── binlog2sql.py │ ├── cmds.py │ ├── const.py │ └── inception.py ├── redis │ ├── __init__.py │ └── const.py └── ssh_tools.py └── 设备资产批量导入模板文件.xls /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | docker 4 | .dockerignore 5 | venv 6 | README.md 7 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-language=python 2 | *.js linguist-language=python 3 | *.css linguist-language=python -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | venv 4 | migrations* 5 | upload* 6 | media* 7 | .DS_Store 8 | .gitignore 9 | .settings 10 | .project 11 | .pydevproject 12 | *.log 13 | ./logs/opsmanage.log 14 | .quarantine 15 | .msyh.ttf 16 | celerybeat.pid 17 | -------------------------------------------------------------------------------- /OpsManage/__init__.py: -------------------------------------------------------------------------------- 1 | # coding:utf-8 2 | from __future__ import absolute_import, unicode_literals 3 | 4 | # This will make sure the app is always imported when 5 | # Django starts so that shared_task will use this app. 6 | from celery import app as celery_app 7 | 8 | __all__ = ['celery_app'] -------------------------------------------------------------------------------- /OpsManage/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/OpsManage/management/__init__.py -------------------------------------------------------------------------------- /OpsManage/management/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/OpsManage/management/commands/__init__.py -------------------------------------------------------------------------------- /OpsManage/models.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # _#_ coding:utf-8 _*_ 3 | from django.db import models -------------------------------------------------------------------------------- /OpsManage/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/OpsManage/views/__init__.py -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/__init__.py -------------------------------------------------------------------------------- /apps/account/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/account/__init__.py -------------------------------------------------------------------------------- /apps/account/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /apps/account/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AccountConfig(AppConfig): 5 | name = 'account' 6 | -------------------------------------------------------------------------------- /apps/account/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url 2 | from . import views 3 | 4 | urlpatterns = [ 5 | url(r'^user/manage/#39;, views.UserManage.as_view()), 6 | url(r'^user/center/#39;, views.UserCenter.as_view()), 7 | url(r'^role/manage/#39;, views.RoleManage.as_view()) 8 | ] 9 | -------------------------------------------------------------------------------- /apps/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/api/__init__.py -------------------------------------------------------------------------------- /apps/api/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.contrib import admin 5 | 6 | # Register your models here. 7 | -------------------------------------------------------------------------------- /apps/api/apps.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.apps import AppConfig 5 | 6 | 7 | class ApiConfig(AppConfig): 8 | name = 'Api' 9 | -------------------------------------------------------------------------------- /apps/api/models.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.db import models 5 | 6 | # Create your models here. 7 | -------------------------------------------------------------------------------- /apps/api/views.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.shortcuts import render 5 | 6 | # Create your views here. 7 | -------------------------------------------------------------------------------- /apps/api/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/api/views/__init__.py -------------------------------------------------------------------------------- /apps/apply/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/apply/__init__.py -------------------------------------------------------------------------------- /apps/apply/center/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/apply/center/__init__.py -------------------------------------------------------------------------------- /apps/apply/ipvs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/apply/ipvs/__init__.py -------------------------------------------------------------------------------- /apps/apply/k8s/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/apply/k8s/__init__.py -------------------------------------------------------------------------------- /apps/apply/k8s/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/apply/k8s/views.py -------------------------------------------------------------------------------- /apps/apply/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/apply/tasks/__init__.py -------------------------------------------------------------------------------- /apps/asset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/asset/__init__.py -------------------------------------------------------------------------------- /apps/asset/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.contrib import admin 5 | 6 | # Register your models here. 7 | -------------------------------------------------------------------------------- /apps/asset/apps.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.apps import AppConfig 5 | 6 | 7 | class AssetsConfig(AppConfig): 8 | name = 'asset' 9 | -------------------------------------------------------------------------------- /apps/asset/tests.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.test import TestCase 5 | 6 | # Create your tests here. 7 | -------------------------------------------------------------------------------- /apps/cicd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/cicd/__init__.py -------------------------------------------------------------------------------- /apps/cicd/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.contrib import admin 5 | 6 | # Register your models here. 7 | -------------------------------------------------------------------------------- /apps/cicd/apps.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.apps import AppConfig 5 | 6 | 7 | class ProjectConfig(AppConfig): 8 | name = 'Apps' 9 | -------------------------------------------------------------------------------- /apps/cicd/tests.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.test import TestCase 5 | 6 | # Create your tests here. 7 | -------------------------------------------------------------------------------- /apps/cicd/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url 2 | from . import views 3 | # from .views import article_add,upload_image,article_edit,article_index 4 | 5 | 6 | urlpatterns = [ 7 | url(r'^config/#39;, views.Config.as_view()), 8 | url(r'^list/#39;, views.Lists.as_view()), 9 | url(r'^manage/#39;, views.Manage.as_view()), 10 | ] -------------------------------------------------------------------------------- /apps/databases/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/databases/__init__.py -------------------------------------------------------------------------------- /apps/databases/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.contrib import admin 5 | 6 | # Register your models here. 7 | -------------------------------------------------------------------------------- /apps/databases/apps.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.apps import AppConfig 5 | 6 | 7 | class DatabasesConfig(AppConfig): 8 | name = 'Databases' 9 | -------------------------------------------------------------------------------- /apps/databases/mysql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/databases/mysql/__init__.py -------------------------------------------------------------------------------- /apps/databases/redis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/databases/redis/__init__.py -------------------------------------------------------------------------------- /apps/databases/tests.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.test import TestCase 5 | 6 | # Create your tests here. 7 | -------------------------------------------------------------------------------- /apps/deploy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/deploy/__init__.py -------------------------------------------------------------------------------- /apps/deploy/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.contrib import admin 5 | 6 | # Register your models here. 7 | -------------------------------------------------------------------------------- /apps/deploy/apps.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.apps import AppConfig 5 | 6 | 7 | class DeployConfig(AppConfig): 8 | name = 'deploy' 9 | -------------------------------------------------------------------------------- /apps/deploy/tests.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.test import TestCase 5 | 6 | # Create your tests here. 7 | -------------------------------------------------------------------------------- /apps/navbar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/navbar/__init__.py -------------------------------------------------------------------------------- /apps/navbar/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /apps/navbar/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class NavbarConfig(AppConfig): 5 | name = 'navbar' 6 | -------------------------------------------------------------------------------- /apps/navbar/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /apps/orders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/orders/__init__.py -------------------------------------------------------------------------------- /apps/orders/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.contrib import admin 5 | 6 | # Register your models here. 7 | -------------------------------------------------------------------------------- /apps/orders/apps.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.apps import AppConfig 5 | 6 | 7 | class OrdersConfig(AppConfig): 8 | name = 'orders' 9 | -------------------------------------------------------------------------------- /apps/orders/tests.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.test import TestCase 5 | 6 | # Create your tests here. 7 | -------------------------------------------------------------------------------- /apps/sched/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/sched/__init__.py -------------------------------------------------------------------------------- /apps/sched/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.contrib import admin 5 | 6 | # Register your models here. 7 | -------------------------------------------------------------------------------- /apps/sched/apps.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.apps import AppConfig 5 | 6 | 7 | class CronConfig(AppConfig): 8 | name = 'cron' 9 | -------------------------------------------------------------------------------- /apps/tasks/celery_assets.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # _#_ coding:utf-8 _*_ 3 | import time 4 | from celery import task 5 | from utils import base 6 | from asset.models import Assets 7 | from account.models import User 8 | -------------------------------------------------------------------------------- /apps/websocket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/websocket/__init__.py -------------------------------------------------------------------------------- /apps/websocket/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /apps/websocket/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class WebsshConfig(AppConfig): 5 | name = 'webssh' 6 | -------------------------------------------------------------------------------- /apps/websocket/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /apps/websocket/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /apps/websocket/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import url 2 | from . import views 3 | # from .views import article_add,upload_image,article_edit,article_index 4 | 5 | 6 | urlpatterns = [ 7 | url(r'^ssh/#39;, views.webssh), 8 | ] -------------------------------------------------------------------------------- /apps/websocket/views.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # _#_ coding:utf-8 _*_ 3 | # Create your views here. 4 | 5 | from django.shortcuts import redirect, render 6 | 7 | def webssh(request): 8 | return render(request, 'websocket/ssh.html') -------------------------------------------------------------------------------- /apps/wiki/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/apps/wiki/__init__.py -------------------------------------------------------------------------------- /apps/wiki/admin.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.contrib import admin 5 | from wiki.models import Post,Category,Tag 6 | 7 | # admin.site.register(Post) 8 | # admin.site.register(Category) 9 | # admin.site.register(Tag) 10 | # Register your models here. 11 | -------------------------------------------------------------------------------- /apps/wiki/apps.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from __future__ import unicode_literals 3 | 4 | from django.apps import AppConfig 5 | 6 | 7 | class WikiConfig(AppConfig): 8 | name = 'wiki' 9 | -------------------------------------------------------------------------------- /dao/__init__.py: -------------------------------------------------------------------------------- 1 | from asset.models import * 2 | from deploy.models import * -------------------------------------------------------------------------------- /demo_imgs/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/demo_imgs/donate.png -------------------------------------------------------------------------------- /demo_imgs/opsmanage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/demo_imgs/opsmanage.png -------------------------------------------------------------------------------- /demo_imgs/qq_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/demo_imgs/qq_group.png -------------------------------------------------------------------------------- /libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/libs/__init__.py -------------------------------------------------------------------------------- /libs/ansible/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/libs/ansible/__init__.py -------------------------------------------------------------------------------- /libs/secret/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/libs/secret/__init__.py -------------------------------------------------------------------------------- /libs/sqlparse/__init__.py: -------------------------------------------------------------------------------- 1 | #This function is borrowed from pip install clickhouse_cli 2 | from .parse import sql_parse -------------------------------------------------------------------------------- /logs/opsmanage.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opsched/opsched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/opsched/opsched -------------------------------------------------------------------------------- /service/apply/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/service/apply/__init__.py -------------------------------------------------------------------------------- /static/ace/js/snippets/json.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/json",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="json"}) -------------------------------------------------------------------------------- /static/ace/js/snippets/mysql.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/mysql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mysql"}) -------------------------------------------------------------------------------- /static/ace/js/snippets/text.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/text",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="text"}) -------------------------------------------------------------------------------- /static/ace/js/snippets/yaml.js: -------------------------------------------------------------------------------- 1 | define("ace/snippets/yaml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="yaml"}) -------------------------------------------------------------------------------- /static/bootstrap-datetimepicker/switchery/meteor/export.js: -------------------------------------------------------------------------------- 1 | /*global Switchery:true*/ // Meteor creates a file-scope global for exporting. This comment prevents a potential JSHint warning. 2 | Switchery = window.Switchery; 3 | delete window.Switchery; -------------------------------------------------------------------------------- /static/bootstrap-datetimepicker/switchery/meteor/tests.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | Tinytest.add('Switchery integration', function (test) { 4 | 5 | var checkbox = document.createElement('input'); 6 | checkbox.className = 'js-switch'; 7 | var switchy = new Switchery(checkbox); 8 | 9 | test.instanceOf(switchy, Switchery, 'instantiation OK'); 10 | }); -------------------------------------------------------------------------------- /static/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/autoembed/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","cs",{embeddingInProgress:"Pokus o vnoření vložené URL",embeddingFailed:"Tato URL nemůže být automaticky vnořena."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/autoembed/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","de",{embeddingInProgress:"Einbetten der eingefügten URL wird versucht...",embeddingFailed:"Diese URL konnte nicht automatisch eingebettet werden."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/autoembed/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","en",{embeddingInProgress:"Trying to embed pasted URL...",embeddingFailed:"This URL could not be automatically embedded."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/autoembed/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","it",{embeddingInProgress:"Prova a incorporare l'URL incollato...",embeddingFailed:"Non è stato possibile incorporare automaticamente questo URL."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/autoembed/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","ku",{embeddingInProgress:"لەهەوڵی لکاندنی بەستەری ناونیشانە...",embeddingFailed:"ئەم بەستەرە خۆکارانە ناتواندرێت بخرێتە ناوێ."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/autoembed/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","nb",{embeddingInProgress:"Prøver å bygge inn innlimt URL...",embeddingFailed:"URL-en kunne ikke bli automatisk bygget inn."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/autoembed/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","pl",{embeddingInProgress:"Osadzanie wklejonego adresu URL...",embeddingFailed:"Ten adres URL multimediów nie może być automatycznie osadzony."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/autoembed/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","pt-br",{embeddingInProgress:"Tentando embutir a URL colada...",embeddingFailed:"Esta URL não pode ser embutida automaticamente."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/autoembed/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","tr",{embeddingInProgress:"Yapıştırdığınız URL gömülmeye çalışılıyor...",embeddingFailed:"Bu URL otomatik olarak gömülemedi."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/autoembed/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","zh",{embeddingInProgress:"正在嘗試嵌入已貼上的 URL...",embeddingFailed:"這個 URL 無法被自動嵌入。"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/codesnippet/icons/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/codesnippet/icons/codesnippet.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/codesnippet/icons/hidpi/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/codesnippet/icons/hidpi/codesnippet.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/codesnippet/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("codesnippet","ja",{button:"コードスニペットを挿入",codeContents:"コード内容",emptySnippetError:"コードスニペットを入力してください。",language:"言語",title:"コードスニペット",pathName:"コードスニペット"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/codesnippet/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("codesnippet","ko",{button:"코드 스니펫 삽입",codeContents:"코드 본문",emptySnippetError:"코드 스니펫은 빈칸일 수 없습니다.",language:"언어",title:"코드 스니펫",pathName:"코드 스니펫"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/codesnippet/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("codesnippet","zh-cn",{button:"插入代码段",codeContents:"代码内容",emptySnippetError:"插入的代码不能为空。",language:"代码语言",title:"代码段",pathName:"代码段"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/codesnippet/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("codesnippet","zh",{button:"插入程式碼片段",codeContents:"程式碼內容",emptySnippetError:"程式碼片段不可為空白。",language:"語言",title:"程式碼片段",pathName:"程式碼片段"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg -------------------------------------------------------------------------------- /static/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ar",{title:"معلومات العنصر",dialogName:"إسم نافذة الحوار",tabName:"إسم التبويب",elementId:"إسم العنصر",elementType:"نوع العنصر"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","cs",{title:"Informace o prvku",dialogName:"Název dialogového okna",tabName:"Název karty",elementId:"ID prvku",elementType:"Typ prvku"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","cy",{title:"Gwybodaeth am yr Elfen",dialogName:"Enw ffenestr y deialog",tabName:"Enw'r tab",elementId:"ID yr Elfen",elementType:"Math yr elfen"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","da",{title:"Information på elementet",dialogName:"Dialogboks",tabName:"Tab beskrivelse",elementId:"ID på element",elementType:"Type af element"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","de",{title:"Elementinformation",dialogName:"Dialogfenstername",tabName:"Reitername",elementId:"Elementkennung",elementType:"Elementtyp"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","en-gb",{title:"Element Information",dialogName:"Dialogue window name",tabName:"Tab name",elementId:"Element ID",elementType:"Element type"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","en",{title:"Element Information",dialogName:"Dialog window name",tabName:"Tab name",elementId:"Element ID",elementType:"Element type"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","et",{title:"Elemendi andmed",dialogName:"Dialoogiakna nimi",tabName:"Saki nimi",elementId:"Elemendi ID",elementType:"Elemendi liik"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","fa",{title:"اطلاعات عنصر",dialogName:"نام پنجره محاورهای",tabName:"نام برگه",elementId:"ID عنصر",elementType:"نوع عنصر"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","fi",{title:"Elementin tiedot",dialogName:"Dialogi-ikkunan nimi",tabName:"Välilehden nimi",elementId:"Elementin ID",elementType:"Elementin tyyppi"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","gu",{title:"પ્રાથમિક માહિતી",dialogName:"વિન્ડોનું નામ",tabName:"ટેબનું નામ",elementId:"પ્રાથમિક આઈડી",elementType:"પ્રાથમિક પ્રકાર"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","he",{title:"מידע על האלמנט",dialogName:"שם הדיאלוג",tabName:"שם הטאב",elementId:"ID של האלמנט",elementType:"סוג האלמנט"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","hr",{title:"Informacije elementa",dialogName:"Naziv prozora za dijalog",tabName:"Naziva jahača",elementId:"ID elementa",elementType:"Vrsta elementa"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","hu",{title:"Elem információ",dialogName:"Párbeszédablak neve",tabName:"Fül neve",elementId:"Elem ID",elementType:"Elem típusa"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","id",{title:"Informasi Elemen",dialogName:"Nama jendela dialog",tabName:"Nama tab",elementId:"ID Elemen",elementType:"Tipe elemen"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","it",{title:"Informazioni elemento",dialogName:"Nome finestra di dialogo",tabName:"Nome Tab",elementId:"ID Elemento",elementType:"Tipo elemento"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ja",{title:"エレメント情報",dialogName:"ダイアログウィンドウ名",tabName:"タブ名",elementId:"エレメントID",elementType:"要素タイプ"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","km",{title:"ព័ត៌មាននៃធាតុ",dialogName:"ឈ្មោះប្រអប់វីនដូ",tabName:"ឈ្មោះផ្ទាំង",elementId:"អត្តលេខធាតុ",elementType:"ប្រភេទធាតុ"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ko",{title:"구성 요소 정보",dialogName:"다이얼로그 윈도우 이름",tabName:"탭 이름",elementId:"요소 ID",elementType:"요소 형식"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ku",{title:"زانیاری توخم",dialogName:"ناوی پەنجەرەی دیالۆگ",tabName:"ناوی بازدەر تاب",elementId:"ناسنامەی توخم",elementType:"جۆری توخم"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","lv",{title:"Elementa informācija",dialogName:"Dialoga loga nosaukums",tabName:"Cilnes nosaukums",elementId:"Elementa ID",elementType:"Elementa tips"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","nb",{title:"Elementinformasjon",dialogName:"Navn på dialogvindu",tabName:"Navn på fane",elementId:"Element-ID",elementType:"Elementtype"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","nl",{title:"Elementinformatie",dialogName:"Naam dialoogvenster",tabName:"Tabnaam",elementId:"Element ID",elementType:"Elementtype"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","no",{title:"Elementinformasjon",dialogName:"Navn på dialogvindu",tabName:"Navn på fane",elementId:"Element-ID",elementType:"Elementtype"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","pl",{title:"Informacja o elemencie",dialogName:"Nazwa okna dialogowego",tabName:"Nazwa zakładki",elementId:"ID elementu",elementType:"Typ elementu"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ru",{title:"Информация об элементе",dialogName:"Имя окна диалога",tabName:"Имя вкладки",elementId:"ID элемента",elementType:"Тип элемента"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/si.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","si",{title:"මුලද්රව්ය ",dialogName:"දෙබස් කවුළුවේ නම",tabName:"තීරුවේ නම",elementId:"මුලද්රව්ය කේතය",elementType:"මුලද්රව්ය වර්ගය"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","sk",{title:"Informácie o prvku",dialogName:"Názov okna dialógu",tabName:"Názov záložky",elementId:"ID prvku",elementType:"Typ prvku"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","sl",{title:"Podatki elementa",dialogName:"Ime pogovornega okna",tabName:"Ime zavihka",elementId:"ID elementa",elementType:"Tip elementa"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","sv",{title:"Elementinformation",dialogName:"Dialogrutans namn",tabName:"Fliknamn",elementId:"Element-ID",elementType:"Element-typ"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","tr",{title:"Eleman Bilgisi",dialogName:"İletişim pencere ismi",tabName:"Sekme adı",elementId:"Eleman ID",elementType:"Eleman türü"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ug",{title:"ئېلېمېنت ئۇچۇرى",dialogName:"سۆزلەشكۈ كۆزنەك ئاتى",tabName:"Tab ئاتى",elementId:"ئېلېمېنت كىملىكى",elementType:"ئېلېمېنت تىپى"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","vi",{title:"Thông tin thành ph",dialogName:"Tên hộp tho",tabName:"Tên th",elementId:"Mã thành ph",elementType:"Loại thành ph"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","zh-cn",{title:"元素信息",dialogName:"对话框窗口名称",tabName:"选项卡名称",elementId:"元素 ID",elementType:"元素类型"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/devtools/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","zh",{title:"元件資訊",dialogName:"對話視窗名稱",tabName:"標籤名稱",elementId:"元件 ID",elementType:"元件類型"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /static/ckeditor/plugins/docprops/icons/docprops-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/docprops/icons/docprops-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/docprops/icons/docprops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/docprops/icons/docprops.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/docprops/icons/hidpi/docprops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/docprops/icons/hidpi/docprops.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/embed/icons/embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/embed/icons/embed.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/embed/icons/hidpi/embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/embed/icons/hidpi/embed.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/embedbase/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("embedbase","zh-cn",{pathName:"媒体对象",title:"嵌入媒体",button:"插入媒体",unsupportedUrlGiven:"不支持指定的 URL。",unsupportedUrl:"嵌入媒体不支持此 URL {url}。",fetchingFailedGiven:"无法抓取此 URL 的内容。",fetchingFailed:"无法抓取 {url} 的内容。",fetchingOne:"正在抓取……",fetchingMany:"正在抓取,{max} 中的 {current} ……"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/embedbase/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("embedbase","zh",{pathName:"媒體元件",title:"內嵌媒體",button:"插入內嵌媒體",unsupportedUrlGiven:"不支援指定的 URL。",unsupportedUrl:"內嵌媒體不支援 URL {url} 。",fetchingFailedGiven:"抓取指定 URL 的內容失敗。",fetchingFailed:"抓取 {url} 的內容失敗。",fetchingOne:"正在抓取 oEmbed 回應...",fetchingMany:"正在抓取 oEmbed 回應,{max} 中的 {current} 已完成..."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/embedsemantic/icons/embedsemantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/embedsemantic/icons/embedsemantic.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/image2/icons/hidpi/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/image2/icons/hidpi/image.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/image2/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/image2/icons/image.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/image2/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("image2","ja",{alt:"代替テキスト",btnUpload:"サーバーに送信",captioned:"キャプションを付ける",captionPlaceholder:"キャプション",infoTab:"画像情報",lockRatio:"比率を固定",menu:"画像のプロパティ",pathName:"image",pathNameCaption:"caption",resetSize:"サイズをリセット",resizer:"ドラッグしてリサイズ",title:"画像のプロパティ",uploadTab:"アップロード",urlMissing:"画像のURLを入力してください。"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/image2/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("image2","ko",{alt:"대체 문자열",btnUpload:"서버로 전송",captioned:"이미지 설명 넣기",captionPlaceholder:"설명",infoTab:"이미지 정보",lockRatio:"비율 유지",menu:"이미지 속성",pathName:"이미지",pathNameCaption:"설명",resetSize:"원래 크기로",resizer:"크기를 조절하려면 클릭 후 드래그 하세요",title:"이미지 속성",uploadTab:"업로드",urlMissing:"이미지 원본 주소(URL)가 없습니다."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/image2/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("image2","zh-cn",{alt:"替换文本",btnUpload:"上传到服务器",captioned:"带标题图像",captionPlaceholder:"标题",infoTab:"图像信息",lockRatio:"锁定比例",menu:"图像属性",pathName:"图像",pathNameCaption:"标题",resetSize:"原始尺寸",resizer:"点击并拖拽以改变尺寸",title:"图像属性",uploadTab:"上传",urlMissing:"缺少图像源文件地址"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/image2/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("image2","zh",{alt:"替代文字",btnUpload:"傳送至伺服器",captioned:"已加標題之圖片",captionPlaceholder:"標題",infoTab:"影像資訊",lockRatio:"固定比例",menu:"影像屬性",pathName:"圖片",pathNameCaption:"標題",resetSize:"重設大小",resizer:"拖曳以改變大小",title:"影像屬性",uploadTab:"上傳",urlMissing:"遺失圖片來源之 URL "}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/icons/hidpi/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/language/icons/hidpi/language.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/icons/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/language/icons/language.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ar",{button:"حدد اللغة",remove:"حذف اللغة"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","bg",{button:"Задай език",remove:"Премахни език"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ca",{button:"Definir l'idioma",remove:"Eliminar idioma"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","cs",{button:"Nastavit jazyk",remove:"Odstranit jazyk"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","cy",{button:"Gosod iaith",remove:"Tynnu iaith"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","da",{button:"Vælg sprog",remove:"Fjern sprog"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","de",{button:"Sprache festlegen",remove:"Sprache entfernen"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","el",{button:"Θέση γλώσσας",remove:"Αφαίρεση γλώσσας"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","en-gb",{button:"Set language",remove:"Remove language"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","en",{button:"Set language",remove:"Remove language"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","eo",{button:"Instali lingvon",remove:"Forigi lingvon"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","es",{button:"Fijar lenguaje",remove:"Quitar lenguaje"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","fa",{button:"تعیین زبان",remove:"حذف زبان"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","fi",{button:"Aseta kieli",remove:"Poista kieli"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","fo",{button:"Velja tungumál",remove:"Remove language"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","fr",{button:"Définir la langue",remove:"Supprimer la langue"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","gl",{button:"Estabelezer o idioma",remove:"Retirar o idioma"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","he",{button:"צור שפה",remove:"הסר שפה"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","hr",{button:"Namjesti jezik",remove:"Makni jezik"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","hu",{button:"Nyelv beállítása",remove:"Nyelv eltávolítása"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","it",{button:"Imposta lingua",remove:"Rimuovi lingua"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ja",{button:"言語を設定",remove:"言語を削除"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","km",{button:"កំណត់ភាសា",remove:"លុបភាសា"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ko",{button:"언어 설정",remove:"언어 설정 지우기"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ku",{button:"جێگیرکردنی زمان",remove:"لابردنی زمان"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","nb",{button:"Sett språk",remove:"Fjern språk"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","nl",{button:"Taal instellen",remove:"Taal verwijderen"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","no",{button:"Sett språk",remove:"Fjern språk"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","pl",{button:"Ustaw język",remove:"Usuń język"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","pt-br",{button:"Configure o Idioma",remove:"Remover Idioma"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","pt",{button:"Definir Idioma",remove:"Remover idioma"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ru",{button:"Установка языка",remove:"Удалить язык"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","sk",{button:"Nastaviť jazyk",remove:"Odstrániť jazyk"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","sl",{button:"Nastavi jezik",remove:"Odstrani jezik"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","sq",{button:"Përzgjidhni gjuhën",remove:"Largoni gjuhën"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","sv",{button:"Sätt språk",remove:"Ta bort språk"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","tr",{button:"Dili seç",remove:"Dili kaldır"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","tt",{button:"Тел сайлау",remove:"Телне бетерү"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","uk",{button:"Установити мову",remove:"Вилучити мову"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","vi",{button:"Thiết lập ngôn ngữ",remove:"Loại bỏ ngôn ngữ"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","zh-cn",{button:"设置语言",remove:"移除语言"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/language/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","zh",{button:"設定語言",remove:"移除語言"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/icons/mathjax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/mathjax/icons/mathjax.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/mathjax/images/loader.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","af",{title:"Wiskunde in TeX",button:"Wiskunde",dialogInput:"Skryf you Tex hier",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokument",loading:"laai...",pathName:"wiskunde"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ar",{title:"الرياصيات في Tex",button:"رياضيات",dialogInput:"أكتب Tex خاصتك هنا",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"وثائق Tex",loading:"جاري التحميل...",pathName:"رياضيات"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","bg",{title:"Формули в TeX формат",button:"Формули",dialogInput:"Въведете вашите данни с TeX форматиране тук",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX документация",loading:"зареждане...",pathName:"формули"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ca",{title:"Matemàtiques a TeX",button:"Matemàtiques",dialogInput:"Escriu el TeX aquí",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentació TeX",loading:"carregant...",pathName:"matemàtiques"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","cs",{title:"Matematika v TeXu",button:"Matematika",dialogInput:"Zde napište TeXový kód",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentace k TeXu",loading:"Nahrává se...",pathName:"Matematika"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","cy",{title:"Mathemateg mewn TeX",button:"Math",dialogInput:"Ysgrifennwch eich TeX yma",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dogfennaeth TeX",loading:"llwytho...",pathName:"math"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","da",{title:"Matematik i TeX",button:"Matematik",dialogInput:"Skriv din TeX her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentation",loading:"henter...",pathName:"matematik"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","de",{title:"Mathematik in Tex",button:"Rechnung",dialogInput:"Schreiben Sie hier in Tex",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-Dokumentation",loading:"Ladevorgang...",pathName:"rechnen"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","el",{title:"Μαθηματικά με τη γλώσσα TeX",button:"Μαθηματικά",dialogInput:"Γράψτε κώδικα TeX εδώ",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Τεκμηρίωση TeX",loading:"γίνεται φόρτωση...",pathName:"μαθηματικά"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","en-gb",{title:"Mathematics in TeX",button:"Math",dialogInput:"Write you TeX here",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentation",loading:"loading...",pathName:"math"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","en",{title:"Mathematics in TeX",button:"Math",dialogInput:"Write your TeX here",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentation",loading:"loading...",pathName:"math"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","eo",{title:"Matematiko en TeX",button:"Matematiko",dialogInput:"Skribu vian TeX tien",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentado",loading:"estas ŝarganta",pathName:"matematiko"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","es",{title:"Matemáticas en TeX",button:"Matemáticas",dialogInput:"Escribe tu TeX aquí",docUrl:"http://es.wikipedia.org/wiki/TeX",docLabel:"Documentación de TeX",loading:"cargando...",pathName:"matemáticas"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","fa",{title:"ریاضیات در تک",button:"ریاضی",dialogInput:"فرمول خود را اینجا بنویسید",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"مستندسازی فرمول نویسی",loading:"بارگیری",pathName:"ریاضی"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","fi",{title:"Matematiikkaa TeX:llä",button:"Matematiikka",dialogInput:"Kirjoita TeX:iä tähän",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentaatio",loading:"lataa...",pathName:"matematiikka"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","fr",{title:"Mathématiques au format TeX",button:"Math",dialogInput:"Saisir la formule TeX ici",docUrl:"http://fr.wikibooks.org/wiki/LaTeX/Math%C3%A9matiques",docLabel:"Documentation du format TeX",loading:"chargement...",pathName:"math"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","gl",{title:"Matemáticas en TeX",button:"Matemáticas",dialogInput:"Escriba o seu TeX aquí",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentación de TeX",loading:"cargando...",pathName:"matemáticas"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","he",{title:"מתמטיקה בTeX",button:"מתמטיקה",dialogInput:"כתוב את הTeX שלך כאן",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"תיעוד TeX",loading:"טוען...",pathName:"מתמטיקה"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","hr",{title:"Matematika u TeXu",button:"Matematika",dialogInput:"Napiši svoj TeX ovdje",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentacija",loading:"učitavanje...",pathName:"matematika"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","hu",{title:"Matematika a TeX-ben",button:"Matek",dialogInput:"Írd a TeX-ed ide",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentáció",loading:"töltés...",pathName:"matek"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","it",{title:"Formule in TeX",button:"Formule",dialogInput:"Scrivere qui il proprio TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentazione TeX",loading:"caricamento…",pathName:"formula"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ja",{title:"TeX形式の数式",button:"数式",dialogInput:"TeX形式の数式を入力してください",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeXの解説",loading:"読み込み中…",pathName:"math"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","km",{title:"គណិតវិទ្យាក្នុង TeX",button:"គណិត",dialogInput:"សរសេរ TeX របស់អ្នកនៅទីនេះ",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"ឯកសារអត្ថបទពី TeX",loading:"កំពុងផ្ទុក..",pathName:"គណិត"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ko",{title:"TeX 문법 수식",button:"수식",dialogInput:"여기 TeX 를 입력하세요",docUrl:"http://ko.wikipedia.org/wiki/%EC%9C%84%ED%82%A4%EB%B0%B1%EA%B3%BC:TeX_%EB%AC%B8%EB%B2%95",docLabel:"TeX 문서",loading:"불러오는 중...",pathName:"수식"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ku",{title:"بیرکاری لە TeX",button:"بیرکاری",dialogInput:"TeXەکەت لێرە بنووسە",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"بەڵگەنامەکردنی TeX",loading:"بارکردن...",pathName:"بیرکاری"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","lt",{title:"Matematika per TeX",button:"Matematika",dialogInput:"Parašyk savo TeX čia",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX žinynas",loading:"kraunasi...",pathName:"matematika"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","nb",{title:"Matematikk i TeX",button:"Matte",dialogInput:"Skriv TeX-koden her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-dokumentasjon",loading:"laster...",pathName:"matte"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","nl",{title:"Wiskunde in TeX",button:"Wiskunde",dialogInput:"Typ hier uw TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentatie",loading:"laden...",pathName:"wiskunde"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","no",{title:"Matematikk i TeX",button:"Matte",dialogInput:"Skriv TeX-koden her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-dokumentasjon",loading:"laster...",pathName:"matte"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","pl",{title:"Wzory matematyczne w TeX",button:"Wzory matematyczne",dialogInput:"Wpisz wyrażenie w TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentacja TeX",loading:"ładowanie...",pathName:"matematyka"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","pt-br",{title:"Matemática em TeX",button:"Matemática",dialogInput:"Escreva seu TeX aqui",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentação TeX",loading:"carregando...",pathName:"Matemática"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","pt",{title:"Matemática em TeX",button:"Matemática",dialogInput:"Escreva aqui o seu Tex",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentação TeX",loading:"a carregar ...",pathName:"matemática"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ro",{title:"Matematici in TeX",button:"Matematici",dialogInput:"Scrie TeX-ul aici",docUrl:"http://ro.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentatie TeX",loading:"încarcă...",pathName:"matematici"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ru",{title:"Математика в TeX-системе",button:"Математика",dialogInput:"Введите здесь TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX документация",loading:"загрузка...",pathName:"мат."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","sk",{title:"Matematika v TeX",button:"Matika",dialogInput:"Napíšte svoj TeX sem",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentácia TeX",loading:"načítavanie...",pathName:"matika"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","sl",{title:"Matematika v TeX",button:"Matematika",dialogInput:"Napišite svoj TeX tukaj",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentacija",loading:"nalaganje...",pathName:"matematika"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","sq",{title:"Matematikë në TeX",button:"Matematikë",dialogInput:"Shkruani TeX-in tuaj këtu",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Tex dokumentimi",loading:"duke u hapur...",pathName:"matematikë"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","sv",{title:"Mattematik i TeX",button:"Matte",dialogInput:"Skriv din TeX här",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentation",loading:"laddar...",pathName:"matte"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","tr",{title:"TeX ile Matematik",button:"Matematik",dialogInput:"TeX kodunuzu buraya yazın",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX yardım dökümanı",loading:"yükleniyor...",pathName:"matematik"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","tt",{title:"TeX'та математика",button:"Математика",dialogInput:"Биредә TeX форматында аңлатмагызны языгыз",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX турыдна документлар",loading:"йөкләнә...",pathName:"математика"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","uk",{title:"Математика у TeX",button:"Математика",dialogInput:"Наберіть тут на TeX'у",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Документація про TeX",loading:"завантажується…",pathName:"математика"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","vi",{title:"Toán học bằng TeX",button:"Toán",dialogInput:"Nhập mã TeX ở đây",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Tài liệu TeX",loading:"đang nạp...",pathName:"toán"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","zh-cn",{title:"TeX 语法的数学公式编辑器",button:"数学公式",dialogInput:"在此编写您的 TeX 指令",docUrl:"http://zh.wikipedia.org/wiki/TeX",docLabel:"TeX 语法(可以参考维基百科自身关于数学公式显示方式的帮助)",loading:"正在加载...",pathName:"数字公式"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/mathjax/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","zh",{title:"以 TeX 表示數學",button:"數學",dialogInput:"請輸入 TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX 說明文件",loading:"載入中…",pathName:"數學"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","cs",{closed:"Oznámení zavřeno."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","da",{closed:"Notefikation lukket."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","de",{closed:"Benachrichtigung geschlossen."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","en",{closed:"Notification closed."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","eo",{closed:"Sciigo fermita"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","fr",{closed:"La notification est close."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","gl",{closed:"Notificación pechada."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","it",{closed:"Notifica chiusa."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ko",{closed:"알림이 닫힘."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ku",{closed:"ئاگادارکەرەوەکە داخرا."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","nb",{closed:"Varsling lukket."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","nl",{closed:"Melding gesloten."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","pl",{closed:"Powiadomienie zostało zamknięte."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","pt-br",{closed:"Notificação fechada."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ru",{closed:"Уведомление закрыто"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","sv",{closed:"Notifiering stängd."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","tr",{closed:"Uyarılar kapatıldı."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","zh-cn",{closed:"通知已关闭。"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/notification/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","zh",{closed:"通知已關閉。"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/placeholder/icons/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/placeholder/icons/placeholder.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/placeholder/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("placeholder","ko",{title:"플레이스홀더 속성",toolbar:"플레이스홀더",name:"플레이스홀더 이름",invalidName:"플레이스홀더는 빈칸이거나 다음 문자열을 포함할 수 없습니다: [, ], <, >",pathName:"플레이스홀더"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/placeholder/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("placeholder","zh-cn",{title:"占位符属性",toolbar:"占位符",name:"占位符名称",invalidName:"占位符名称不能为空,并且不能包含以下字符:[、]、<、>",pathName:"占位符"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/placeholder/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("placeholder","zh",{title:"預留位置屬性",toolbar:"建立預留位置",name:"Placeholder 名稱",invalidName:"「預留位置」不可為空白且不可包含以下字元:[, ], <, >",pathName:"預留位置"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | <script> 2 | 3 | // Prevent from DOM clobbering. 4 | if ( typeof window.opener._cke_htmlToLoad == 'string' ) { 5 | var doc = document; 6 | doc.open(); 7 | doc.write( window.opener._cke_htmlToLoad ); 8 | doc.close(); 9 | 10 | delete window.opener._cke_htmlToLoad; 11 | } 12 | 13 | </script> 14 | -------------------------------------------------------------------------------- /static/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/icons/sourcedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/sourcedialog/icons/sourcedialog.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","af",{toolbar:"Bron",title:"Bron"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ar",{toolbar:"المصدر",title:"المصدر"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bg",{toolbar:"Източник",title:"Източник"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bn",{toolbar:"সোর্স",title:"সোর্স"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bs",{toolbar:"HTML kôd",title:"HTML kôd"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ca",{toolbar:"Codi font",title:"Codi font"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","cs",{toolbar:"Zdroj",title:"Zdroj"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","cy",{toolbar:"HTML",title:"HTML"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","da",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","de",{toolbar:"Quellcode",title:"Quellcode"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","el",{toolbar:"Κώδικας",title:"Κώδικας"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-au",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-ca",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-gb",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","eo",{toolbar:"Fonto",title:"Fonto"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","es",{toolbar:"Fuente HTML",title:"Fuente HTML"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","et",{toolbar:"Lähtekood",title:"Lähtekood"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","eu",{toolbar:"HTML Iturburua",title:"HTML Iturburua"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fa",{toolbar:"منبع",title:"منبع"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fi",{toolbar:"Koodi",title:"Koodi"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fo",{toolbar:"Kelda",title:"Kelda"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fr-ca",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fr",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","gl",{toolbar:"Orixe",title:"Orixe"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","gu",{toolbar:"મૂળ કે પ્રાથમિક દસ્તાવેજ",title:"મૂળ કે પ્રાથમિક દસ્તાવેજ"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","he",{toolbar:"מקור",title:"מקור"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hi",{toolbar:"सोर्स",title:"सोर्स"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hr",{toolbar:"Kôd",title:"Kôd"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hu",{toolbar:"Forráskód",title:"Forráskód"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","id",{toolbar:"Sumber",title:"Sumber"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","is",{toolbar:"Kóði",title:"Kóði"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","it",{toolbar:"Sorgente",title:"Sorgente"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ja",{toolbar:"ソース",title:"ソース"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ka",{toolbar:"კოდები",title:"კოდები"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","km",{toolbar:"អក្សរកូដ",title:"អក្សរកូដ"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ko",{toolbar:"소스",title:"소스"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ku",{toolbar:"سەرچاوە",title:"سەرچاوە"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","lt",{toolbar:"Šaltinis",title:"Šaltinis"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","lv",{toolbar:"HTML kods",title:"HTML kods"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","mn",{toolbar:"Код",title:"Код"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ms",{toolbar:"Sumber",title:"Sumber"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","nb",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","nl",{toolbar:"Broncode",title:"Broncode"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","no",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pl",{toolbar:"Źródło dokumentu",title:"Źródło dokumentu"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pt-br",{toolbar:"Código-Fonte",title:"Código-Fonte"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pt",{toolbar:"Fonte",title:"Fonte"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ro",{toolbar:"Sursa",title:"Sursa"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ru",{toolbar:"Исходник",title:"Источник"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","si",{toolbar:"මුලාශ්රය",title:"මුලාශ්රය"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sk",{toolbar:"Zdroj",title:"Zdroj"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sl",{toolbar:"Izvorna koda",title:"Izvorna koda"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sq",{toolbar:"Burimi",title:"Burimi"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sr-latn",{toolbar:"Kôd",title:"Kôd"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sr",{toolbar:"Kôд",title:"Kôд"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sv",{toolbar:"Källa",title:"Källa"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","th",{toolbar:"ดูรหัส HTML",title:"ดูรหัส HTML"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","tr",{toolbar:"Kaynak",title:"Kaynak"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","tt",{toolbar:"Чыганак",title:"Чыганак"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ug",{toolbar:"مەنبە",title:"مەنبە"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","uk",{toolbar:"Джерело",title:"Джерело"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","vi",{toolbar:"Mã HTML",title:"Mã HTML"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","zh-cn",{toolbar:"源码",title:"源码"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/sourcedialog/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","zh",{toolbar:"原始碼",title:"原始碼"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/icons/uicolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/uicolor/icons/uicolor.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","af",{title:"UI kleur keuse",preview:"Voorskou",config:"Voeg hierdie in jou config.js lêr in",predefined:"Voordefinieerte kleur keuses"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","ar",{title:"منتقي الألوان",preview:"معاينة مباشرة",config:"قص السطر إلى الملف config.js",predefined:"مجموعات ألوان معرفة مسبقا"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","bg",{title:"ПИ избор на цвят",preview:"Преглед",config:"Вмъкнете този низ във Вашия config.js fajl",predefined:"Предефинирани цветови палитри"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","ca",{title:"UI Color Picker",preview:"Vista prèvia",config:"Enganxa aquest text dins el fitxer config.js",predefined:"Conjunts de colors predefinits"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","en-gb",{title:"UI Colour Picker",preview:"Live preview",config:"Paste this string into your config.js file",predefined:"Predefined colour sets"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","en",{title:"UI Color Picker",preview:"Live preview",config:"Paste this string into your config.js file",predefined:"Predefined color sets"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","he",{title:"בחירת צבע ממשק משתמש",preview:"תצוגה מקדימה",config:"הדבק את הטקסט הבא לתוך הקובץ config.js",predefined:"קבוצות צבעים מוגדרות מראש"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","hr",{title:"UI odabir boja",preview:"Pregled uživo",config:"Zalijepite ovaj tekst u Vašu config.js datoteku.",predefined:"Već postavljeni setovi boja"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","id",{title:"Pengambil Warna UI",preview:"Pratinjau",config:"Tempel string ini ke arsip config.js anda.",predefined:"Set warna belum terdefinisi."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","ja",{title:"UIカラーピッカー",preview:"ライブプレビュー",config:"この文字列を config.js ファイルへ貼り付け",predefined:"既定カラーセット"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","ko",{title:"UI 색상 선택기",preview:"미리보기",config:"이 문자열을 config.js 에 붙여넣으세요",predefined:"미리 정의된 색상"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","lv",{title:"UI krāsas izvēle",preview:"Priekšskatījums",config:"Ielīmējiet šo rindu jūsu config.js failā",predefined:"Predefinēti krāsu komplekti"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","mk",{title:"Палета со бои",preview:"Преглед",config:"Залепи го овој текст во config.js датотеката",predefined:"Предефинирани множества на бои"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","sk",{title:"UI výber farby",preview:"Živý náhľad",config:"Vložte tento reťazec do vášho config.js súboru",predefined:"Preddefinované sady farieb"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","uk",{title:"Color Picker Інтерфейс",preview:"Перегляд наживо",config:"Вставте цей рядок у файл config.js",predefined:"Стандартний набір кольорів"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","zh-cn",{title:"用户界面颜色选择器",preview:"即时预览",config:"粘贴此字符串到您的 config.js 文件",predefined:"预定义颜色集"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","zh",{title:"UI 色彩選擇器",preview:"即時預覽",config:"請將此段字串複製到您的 config.js 檔案中。",predefined:"設定預先定義的色彩"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","af",{move:"Klik en trek on te beweeg"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ar",{move:"إضغط و إسحب للتحريك"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","bg",{move:"Кликни и влачи, за да преместиш"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ca",{move:"Clicar i arrossegar per moure"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","cs",{move:"Klepněte a táhněte pro přesunutí"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","cy",{move:"Clcio a llusgo i symud"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","da",{move:"Klik og træk for at flytte"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","de",{move:"Zum Verschieben anwählen und ziehen"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","el",{move:"Κάνετε κλικ και σύρετε το ποντίκι για να μετακινήστε"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","en-gb",{move:"Click and drag to move"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","en",{move:"Click and drag to move"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","eo",{move:"klaki kaj treni por movi"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","es",{move:"Dar clic y arrastrar para mover"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","fa",{move:"کلیک و کشیدن برای جابجایی"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","fi",{move:"Siirrä klikkaamalla ja raahaamalla"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","fr",{move:"Cliquer et glisser pour déplacer"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","gl",{move:"Prema e arrastre para mover"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","he",{move:"לחץ וגרור להזזה"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","hr",{move:"Klikni i povuci da pomakneš"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","hu",{move:"Kattints és húzd a mozgatáshoz"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","it",{move:"Fare clic e trascinare per spostare"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ja",{move:"ドラッグして移動"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","km",{move:"ចុចហើយទាញដើម្បីផ្លាស់ទី"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ko",{move:"움직이려면 클릭 후 드래그 하세요"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ku",{move:"کرتەبکە و ڕایبکێشە بۆ جوڵاندن"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","lv",{move:"Klikšķina un velc, lai pārvietotu"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","nb",{move:"Klikk og dra for å flytte"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","nl",{move:"Klik en sleep om te verplaatsen"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","no",{move:"Klikk og dra for å flytte"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","pl",{move:"Kliknij i przeciągnij, by przenieść."}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","pt-br",{move:"Click e arraste para mover"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","pt",{move:"Clique e arraste para mover"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ru",{move:"Нажмите и перетащите"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","sk",{move:"Kliknite a potiahnite pre presunutie"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","sl",{move:"Kliknite in povlecite, da premaknete"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","sq",{move:"Kliko dhe tërhiqe për ta lëvizur"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","sv",{move:"Klicka och drag för att flytta"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","tr",{move:"Taşımak için, tıklayın ve sürükleyin"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","tt",{move:"Күчереп куер өчен басып шудырыгыз"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","uk",{move:"Клікніть і потягніть для переміщення"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","vi",{move:"Nhấp chuột và kéo để di chuyển"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","zh-cn",{move:"点击并拖拽以移动"}); -------------------------------------------------------------------------------- /static/ckeditor/plugins/widget/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","zh",{move:"拖曳以移動"}); -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /static/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /static/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /static/fileinput/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/fileinput/img/loading.gif -------------------------------------------------------------------------------- /static/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/font-awesome/fonts/NotoSansCJKsc-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/font-awesome/fonts/NotoSansCJKsc-Regular.otf -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /static/iCheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/aero.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/aero@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/blue.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/blue@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/flat.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/flat@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/green.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/green@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/grey.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/grey@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/orange.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/orange@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/pink.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/pink@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/purple.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/purple@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/red.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/red@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/yellow.png -------------------------------------------------------------------------------- /static/iCheck/skins/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/flat/yellow@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/futurico/futurico.png -------------------------------------------------------------------------------- /static/iCheck/skins/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/futurico/futurico@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/line/line.png -------------------------------------------------------------------------------- /static/iCheck/skins/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/line/line@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/aero.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/aero@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/blue.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/blue@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/green.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/green@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/grey.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/grey@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/minimal.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/minimal@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/orange.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/orange@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/pink.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/pink@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/purple.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/purple@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/red.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/red@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/yellow.png -------------------------------------------------------------------------------- /static/iCheck/skins/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/minimal/yellow@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/polaris/polaris.png -------------------------------------------------------------------------------- /static/iCheck/skins/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/polaris/polaris@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/aero.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/aero@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/blue.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/blue@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/green.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/green@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/grey.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/grey@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/orange.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/orange@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/pink.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/pink@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/purple.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/purple@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/red.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/red@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/square.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/square@2x.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/yellow.png -------------------------------------------------------------------------------- /static/iCheck/skins/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/iCheck/skins/square/yellow@2x.png -------------------------------------------------------------------------------- /static/images/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/american-express.png -------------------------------------------------------------------------------- /static/images/closae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/closae.png -------------------------------------------------------------------------------- /static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/close.png -------------------------------------------------------------------------------- /static/images/details_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/details_close.png -------------------------------------------------------------------------------- /static/images/details_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/details_open.png -------------------------------------------------------------------------------- /static/images/divclose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/divclose.jpg -------------------------------------------------------------------------------- /static/images/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/docker.png -------------------------------------------------------------------------------- /static/images/elasticsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/elasticsearch.png -------------------------------------------------------------------------------- /static/images/etcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/etcd.png -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/img.jpg -------------------------------------------------------------------------------- /static/images/kafka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/kafka.png -------------------------------------------------------------------------------- /static/images/kubernetes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/kubernetes.png -------------------------------------------------------------------------------- /static/images/mongodb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/mongodb.png -------------------------------------------------------------------------------- /static/images/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/mysql.png -------------------------------------------------------------------------------- /static/images/postgresql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/postgresql.png -------------------------------------------------------------------------------- /static/images/prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/prometheus.png -------------------------------------------------------------------------------- /static/images/redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/redis.png -------------------------------------------------------------------------------- /static/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /static/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /static/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /static/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /static/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /static/jstree/css/32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/jstree/css/32px.png -------------------------------------------------------------------------------- /static/jstree/css/40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/jstree/css/40px.png -------------------------------------------------------------------------------- /static/jstree/css/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/jstree/css/throbber.gif -------------------------------------------------------------------------------- /static/malihu-custom-scrollbar-plugin/mCSB_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/malihu-custom-scrollbar-plugin/mCSB_buttons.png -------------------------------------------------------------------------------- /static/pnotify/dist/pnotify.buttons.css: -------------------------------------------------------------------------------- 1 | .ui-pnotify-closer,.ui-pnotify-sticker{float:right;margin-left:.2em} -------------------------------------------------------------------------------- /static/pnotify/dist/pnotify.nonblock.css: -------------------------------------------------------------------------------- 1 | .ui-pnotify.ui-pnotify-nonblock-fade{opacity:.2}.ui-pnotify.ui-pnotify-nonblock-hide{display:none!important} -------------------------------------------------------------------------------- /static/pnotify/dist/pnotify.tooltip.js: -------------------------------------------------------------------------------- 1 | !function(e,o){"function"==typeof define&&define.amd?define("pnotify.tooltip",["jquery","pnotify"],o):"object"==typeof exports&&"undefined"!=typeof module?module.exports=o(require("jquery"),require("./pnotify")):o(e.jQuery,e.PNotify)}(this,function(e,o){}); -------------------------------------------------------------------------------- /static/webstack/css/fonts/elusive/font/elusive.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/elusive/font/elusive.eot -------------------------------------------------------------------------------- /static/webstack/css/fonts/elusive/font/elusive.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/elusive/font/elusive.ttf -------------------------------------------------------------------------------- /static/webstack/css/fonts/elusive/font/elusive.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/elusive/font/elusive.woff -------------------------------------------------------------------------------- /static/webstack/css/fonts/fontawesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/fontawesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/webstack/css/fonts/fontawesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/fontawesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/webstack/css/fonts/fontawesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/fontawesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/webstack/css/fonts/fontawesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/fontawesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/webstack/css/fonts/glyphicons/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/glyphicons/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/webstack/css/fonts/glyphicons/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/glyphicons/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/webstack/css/fonts/glyphicons/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/glyphicons/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/webstack/css/fonts/linecons/font/linecons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/linecons/font/linecons.eot -------------------------------------------------------------------------------- /static/webstack/css/fonts/linecons/font/linecons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/linecons/font/linecons.ttf -------------------------------------------------------------------------------- /static/webstack/css/fonts/linecons/font/linecons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/linecons/font/linecons.woff -------------------------------------------------------------------------------- /static/webstack/css/fonts/meteocons/font/meteocons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/meteocons/font/meteocons.eot -------------------------------------------------------------------------------- /static/webstack/css/fonts/meteocons/font/meteocons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/meteocons/font/meteocons.ttf -------------------------------------------------------------------------------- /static/webstack/css/fonts/meteocons/font/meteocons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/css/fonts/meteocons/font/meteocons.woff -------------------------------------------------------------------------------- /static/webstack/images/flags/flag-cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/images/flags/flag-cn.png -------------------------------------------------------------------------------- /static/webstack/images/flags/flag-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/images/flags/flag-us.png -------------------------------------------------------------------------------- /static/webstack/images/logos/ops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/static/webstack/images/logos/ops.png -------------------------------------------------------------------------------- /static/xterm/addons/attach/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "xterm.attach", 3 | "main": "attach.js", 4 | "private": true 5 | } 6 | -------------------------------------------------------------------------------- /static/xterm/addons/fullscreen/fullscreen.css: -------------------------------------------------------------------------------- 1 | .xterm.fullscreen { 2 | position: fixed; 3 | top: 0; 4 | bottom: 0; 5 | left: 0; 6 | right: 0; 7 | width: auto; 8 | height: auto; 9 | z-index: 255; 10 | } 11 | -------------------------------------------------------------------------------- /static/xterm/addons/fullscreen/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "xterm.fullscreen", 3 | "main": "fullscreen.js", 4 | "private": true 5 | } 6 | -------------------------------------------------------------------------------- /static/xterm/addons/terminado/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "xterm.terminado", 3 | "main": "terminado.js", 4 | "private": true 5 | } 6 | -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/utils/__init__.py -------------------------------------------------------------------------------- /utils/deploy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/utils/deploy/__init__.py -------------------------------------------------------------------------------- /utils/mysql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/utils/mysql/__init__.py -------------------------------------------------------------------------------- /utils/redis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/utils/redis/__init__.py -------------------------------------------------------------------------------- /设备资产批量导入模板文件.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welliamcao/OpsManage/800e45ed18d0da168702b277bb45ac41a7301570/设备资产批量导入模板文件.xls --------------------------------------------------------------------------------