├── paas-ce ├── paas │ ├── VERSION │ ├── login │ │ ├── static │ │ │ ├── assets │ │ │ │ ├── select2-3.5.2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── select2.png │ │ │ │ │ ├── select2x2.png │ │ │ │ │ ├── triangle.png │ │ │ │ │ ├── select2-spinner.gif │ │ │ │ │ └── bower.json │ │ │ │ ├── bootstrap-3.1.1 │ │ │ │ │ ├── img │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ └── btn_loading.gif │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ └── bk-icon-2.0 │ │ │ │ │ └── fonts │ │ │ │ │ ├── bk_icons_linear.eot │ │ │ │ │ ├── bk_icons_linear.ttf │ │ │ │ │ └── bk_icons_linear.woff │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ │ ├── crown.png │ │ │ │ ├── error │ │ │ │ │ ├── 401.png │ │ │ │ │ ├── 403.png │ │ │ │ │ ├── 404.png │ │ │ │ │ └── 500.png │ │ │ │ ├── logo │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── qr.png │ │ │ │ │ ├── qtlogo.png │ │ │ │ │ ├── bg_footer.png │ │ │ │ │ ├── bk_login.png │ │ │ │ │ ├── icon_error.png │ │ │ │ │ ├── logo_user_01.png │ │ │ │ │ ├── logo_user_02.png │ │ │ │ │ ├── logo_user_01_en.png │ │ │ │ │ └── logo_user_02_en.png │ │ │ │ ├── getheadimg.jpg │ │ │ │ └── getadminheadimg.jpg │ │ │ ├── bk_user_import.xls │ │ │ └── bk_user_import_en.xls │ │ ├── requirements.txt │ │ ├── README.md │ │ ├── Makefile │ │ ├── templates │ │ │ ├── 403.html │ │ │ ├── 404.html │ │ │ └── 500.html │ │ ├── __init__.py │ │ ├── common │ │ │ └── __init__.py │ │ ├── conf │ │ │ └── __init__.py │ │ ├── bkaccount │ │ │ └── __init__.py │ │ ├── ee_login │ │ │ └── __init__.py │ │ └── healthz │ │ │ └── __init__.py │ ├── paas │ │ ├── static │ │ │ ├── assets │ │ │ │ ├── select2-3.5.3 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── select2.png │ │ │ │ │ ├── select2x2.png │ │ │ │ │ ├── select2-spinner.gif │ │ │ │ │ └── bower.json │ │ │ │ ├── bksite.zip │ │ │ │ ├── bootstrap-3.1.1 │ │ │ │ │ ├── img │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ └── btn_loading.gif │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ ├── bk-icon-2.0 │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── bk_icons_linear.eot │ │ │ │ │ │ ├── bk_icons_linear.ttf │ │ │ │ │ │ └── bk_icons_linear.woff │ │ │ │ ├── jquery.zeroclipboard-0.2.0 │ │ │ │ │ └── ZeroClipboard.swf │ │ │ │ └── jquery-ui-1.11.0.custom │ │ │ │ │ └── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ └── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── esb │ │ │ │ ├── assets │ │ │ │ │ └── select2-3.5.3 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── select2.png │ │ │ │ │ │ ├── select2x2.png │ │ │ │ │ │ ├── select2-spinner.gif │ │ │ │ │ │ └── bower.json │ │ │ │ ├── favicon.ico │ │ │ │ ├── img │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── icon-no.gif │ │ │ │ │ ├── icon-yes.gif │ │ │ │ │ ├── logo_esb_01.png │ │ │ │ │ ├── logo_esb_02.png │ │ │ │ │ ├── en │ │ │ │ │ │ ├── logo_esb_01.png │ │ │ │ │ │ └── logo_esb_02.png │ │ │ │ │ ├── logo_esb_02.png.bak │ │ │ │ │ ├── notice_fail_icon.png │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ ├── notice_success_icon.png │ │ │ │ │ └── glyphicons-halflings-white.png │ │ │ │ ├── guide │ │ │ │ │ ├── hcp.tar.gz │ │ │ │ │ ├── en │ │ │ │ │ │ └── hcp.tar.gz │ │ │ │ │ └── weixin_component_guide │ │ │ │ │ │ ├── 15081252708641.jpg │ │ │ │ │ │ ├── 15081375626539.jpg │ │ │ │ │ │ ├── 15081379473152.jpg │ │ │ │ │ │ ├── 15081384579344.jpg │ │ │ │ │ │ ├── 15081404321746.jpg │ │ │ │ │ │ ├── 15081428561464.jpg │ │ │ │ │ │ └── 15081438048577.jpg │ │ │ │ └── api_docs │ │ │ │ │ └── img │ │ │ │ │ ├── help-icon.png │ │ │ │ │ ├── angle.icon.png │ │ │ │ │ └── system_img │ │ │ │ │ ├── custom_icon.png │ │ │ │ │ └── config_service.png │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ │ ├── crown.png │ │ │ │ ├── loading.gif │ │ │ │ ├── warning.png │ │ │ │ ├── error │ │ │ │ │ ├── 401.png │ │ │ │ │ ├── 403.png │ │ │ │ │ ├── 404.png │ │ │ │ │ └── 500.png │ │ │ │ ├── getheadimg.jpg │ │ │ │ ├── icon_dots.png │ │ │ │ ├── service │ │ │ │ │ ├── db.png │ │ │ │ │ ├── code.png │ │ │ │ │ ├── log.png │ │ │ │ │ ├── deploy.png │ │ │ │ │ ├── monitor.png │ │ │ │ │ ├── sample.png │ │ │ │ │ ├── third.png │ │ │ │ │ ├── tools.png │ │ │ │ │ ├── analysis.png │ │ │ │ │ ├── createapp.png │ │ │ │ │ ├── db_hover.png │ │ │ │ │ ├── log_hover.png │ │ │ │ │ ├── security.png │ │ │ │ │ ├── app_deploy.png │ │ │ │ │ ├── code_hover.png │ │ │ │ │ ├── deploy_hover.png │ │ │ │ │ ├── sample_hover.png │ │ │ │ │ ├── third_hover.png │ │ │ │ │ ├── tools_hover.png │ │ │ │ │ ├── analysis_hover.png │ │ │ │ │ ├── monitor_hover.png │ │ │ │ │ ├── security_hover.png │ │ │ │ │ └── createapp_hover.png │ │ │ │ ├── logo │ │ │ │ │ ├── bg_logo.png │ │ │ │ │ ├── logoimg.png │ │ │ │ │ ├── bg_login.jpg │ │ │ │ │ ├── icon_error.png │ │ │ │ │ ├── login_text.png │ │ │ │ │ ├── logo_develper_01.png │ │ │ │ │ └── logo_develper_02.png │ │ │ │ ├── getadminheadimg.jpg │ │ │ │ ├── loading_2_24x24.gif │ │ │ │ ├── resource │ │ │ │ │ ├── mysql.png │ │ │ │ │ ├── python.png │ │ │ │ │ ├── pycharm.jpeg │ │ │ │ │ ├── rabbitmq.png │ │ │ │ │ ├── vagrant.jpg │ │ │ │ │ ├── eclipse-4.5.png │ │ │ │ │ ├── framework.png │ │ │ │ │ ├── python-sdk.png │ │ │ │ │ ├── framework_py.png │ │ │ │ │ ├── framework_py3.png │ │ │ │ │ └── api_dev_template.png │ │ │ │ ├── app_logo │ │ │ │ │ └── default.png │ │ │ │ ├── base │ │ │ │ │ ├── base_spring.png │ │ │ │ │ ├── icon_menu_db.png │ │ │ │ │ ├── icon_menu_esb.png │ │ │ │ │ ├── icon_menu_guide.png │ │ │ │ │ ├── icon_menu_host.png │ │ │ │ │ ├── icon_menu_log.png │ │ │ │ │ ├── icon_menu_store.png │ │ │ │ │ ├── icon_menu_task.png │ │ │ │ │ ├── icon_menu_tool.png │ │ │ │ │ ├── icon_menu_user.png │ │ │ │ │ ├── icon_menu_access.png │ │ │ │ │ ├── icon_menu_adhost.png │ │ │ │ │ ├── icon_menu_advert.png │ │ │ │ │ ├── icon_menu_manage.png │ │ │ │ │ ├── icon_menu_monitor.png │ │ │ │ │ ├── icon_menu_sample.png │ │ │ │ │ ├── icon_menu_service.png │ │ │ │ │ ├── icon_menu_setting.png │ │ │ │ │ ├── icon_menu_appcenter.png │ │ │ │ │ ├── icon_menu_function.png │ │ │ │ │ ├── icon_menu_statistics.png │ │ │ │ │ ├── icon_menu_db_selected.png │ │ │ │ │ ├── icon_menu_log_selected.png │ │ │ │ │ ├── icon32_loading_dark1e5b3a.gif │ │ │ │ │ ├── icon_menu_access_selected.png │ │ │ │ │ ├── icon_menu_adhost_selected.png │ │ │ │ │ ├── icon_menu_advert_selected.png │ │ │ │ │ ├── icon_menu_guide_selected.png │ │ │ │ │ ├── icon_menu_host_selected.png │ │ │ │ │ ├── icon_menu_manage_selected.png │ │ │ │ │ ├── icon_menu_sample_selected.png │ │ │ │ │ ├── icon_menu_store_selected.png │ │ │ │ │ ├── icon_menu_task_selected.png │ │ │ │ │ ├── icon_menu_tool_selected.png │ │ │ │ │ ├── icon_menu_user_selected.png │ │ │ │ │ ├── icon16_loading_light1e5b3a.gif │ │ │ │ │ ├── icon32_loading_light1e5b3a.gif │ │ │ │ │ ├── icon_menu_function_selected.png │ │ │ │ │ ├── icon_menu_monitor_selected.png │ │ │ │ │ ├── icon_menu_service_selected.png │ │ │ │ │ ├── icon_menu_setting_selected.png │ │ │ │ │ ├── icon13_arrow_right_gray1e5b3a.png │ │ │ │ │ ├── icon30_loading_gray_dark1e5b3a.png │ │ │ │ │ ├── icon_menu_appcenter_selected.png │ │ │ │ │ ├── icon_menu_statistics_selected.png │ │ │ │ │ ├── icon30_loading_gray_ligth1e5b3a.png │ │ │ │ │ └── page_service_package_intro_z21b651.png │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ └── glyphicons-halflings-white.png │ │ │ ├── home │ │ │ │ └── images │ │ │ │ │ ├── qr.png │ │ │ │ │ ├── gear.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── avatar.png │ │ │ │ │ ├── crown.png │ │ │ │ │ ├── icon-um.png │ │ │ │ │ ├── img-zw.png │ │ │ │ │ ├── loading.png │ │ │ │ │ ├── qtlogo.png │ │ │ │ │ ├── icon-logout.png │ │ │ │ │ ├── img-default.png │ │ │ │ │ ├── icon-userinfo.png │ │ │ │ │ ├── icon-bind-weixin.png │ │ │ │ │ └── icon-unbind-weixin.png │ │ │ ├── admin │ │ │ │ ├── img │ │ │ │ │ ├── nav-bg.gif │ │ │ │ │ ├── icon-no.gif │ │ │ │ │ ├── icon-yes.gif │ │ │ │ │ ├── default-bg.gif │ │ │ │ │ ├── icon_alert.gif │ │ │ │ │ ├── icon_clock.gif │ │ │ │ │ ├── icon_error.gif │ │ │ │ │ ├── tooltag-add.png │ │ │ │ │ ├── changelist-bg.gif │ │ │ │ │ ├── icon-unknown.gif │ │ │ │ │ ├── icon_addlink.gif │ │ │ │ │ ├── icon_calendar.gif │ │ │ │ │ ├── icon_searchbox.png │ │ │ │ │ ├── icon_success.gif │ │ │ │ │ ├── inline-delete.png │ │ │ │ │ ├── inline-restore.png │ │ │ │ │ ├── nav-bg-grabber.gif │ │ │ │ │ ├── nav-bg-reverse.gif │ │ │ │ │ ├── selector-icons.gif │ │ │ │ │ ├── sorting-icons.gif │ │ │ │ │ ├── deleted-overlay.gif │ │ │ │ │ ├── icon_changelink.gif │ │ │ │ │ ├── icon_deletelink.gif │ │ │ │ │ ├── nav-bg-selected.gif │ │ │ │ │ ├── selector-search.gif │ │ │ │ │ ├── changelist-bg_rtl.gif │ │ │ │ │ ├── default-bg-reverse.gif │ │ │ │ │ ├── gis │ │ │ │ │ │ ├── move_vertex_off.png │ │ │ │ │ │ └── move_vertex_on.png │ │ │ │ │ ├── inline-delete-8bit.png │ │ │ │ │ ├── inline-restore-8bit.png │ │ │ │ │ ├── inline-splitter-bg.gif │ │ │ │ │ └── tooltag-arrowright.png │ │ │ │ ├── js │ │ │ │ │ ├── jquery.init.js │ │ │ │ │ ├── prepopulate.min.js │ │ │ │ │ └── collapse.min.js │ │ │ │ └── css │ │ │ │ │ └── dashboard.css │ │ │ ├── doc │ │ │ │ ├── img │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ └── glyphicons-halflings-white.png │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ ├── apidoc.json │ │ │ │ ├── api_project.json │ │ │ │ ├── api_project.js │ │ │ │ └── vendor │ │ │ │ │ └── prettify │ │ │ │ │ └── prettify.css │ │ │ └── user_center │ │ │ │ └── img │ │ │ │ ├── loading_2_16x16.gif │ │ │ │ └── loading_2_36x36.gif │ │ ├── media │ │ │ ├── iconlogo │ │ │ │ └── README.md │ │ │ ├── saaslogo │ │ │ │ ├── README.md │ │ │ │ └── bk_fta_solutions.png │ │ │ ├── framework.tar.gz │ │ │ ├── applogo │ │ │ │ ├── bk_cc.png │ │ │ │ ├── bk_job.png │ │ │ │ ├── bk_cdman.png │ │ │ │ ├── bk_framework.png │ │ │ │ ├── bk_monitor.png │ │ │ │ ├── bk_agent_setup.png │ │ │ │ ├── bk_check_list.png │ │ │ │ ├── bk_devops_nav.png │ │ │ │ ├── bk_log_search.png │ │ │ │ ├── bk_work_manage.png │ │ │ │ ├── bk_app_template.png │ │ │ │ ├── bk_fta_solutions.png │ │ │ │ └── bk_funds_manage.png │ │ │ ├── framework_py.tar.gz │ │ │ ├── api_dev_template.tar.gz │ │ │ └── saas_files │ │ │ │ ├── bk_framework_V1.0.0.tar.gz │ │ │ │ └── bk_app_template_V1.0.1.tar.gz │ │ ├── esb │ │ │ ├── apps │ │ │ │ ├── api_docs │ │ │ │ │ └── templates │ │ │ │ │ │ └── api_docs │ │ │ │ │ │ └── base.html │ │ │ │ ├── manager │ │ │ │ │ └── templates │ │ │ │ │ │ └── manager │ │ │ │ │ │ ├── base.html │ │ │ │ │ │ ├── mdfiles │ │ │ │ │ │ ├── zh-hans │ │ │ │ │ │ │ ├── channel.md │ │ │ │ │ │ │ ├── system.md │ │ │ │ │ │ │ └── index.md │ │ │ │ │ │ └── en │ │ │ │ │ │ │ ├── channel.md │ │ │ │ │ │ │ ├── system.md │ │ │ │ │ │ │ └── index.md │ │ │ │ │ │ └── buffet_comp │ │ │ │ │ │ └── base.html │ │ │ │ └── bootstrapform │ │ │ │ │ └── templates │ │ │ │ │ └── bootstrapform │ │ │ │ │ ├── formset.html │ │ │ │ │ └── form.html │ │ │ ├── mainsite │ │ │ │ └── templates │ │ │ │ │ └── mainsite │ │ │ │ │ └── footer.html │ │ │ └── __init__.py │ │ ├── templates │ │ │ ├── error │ │ │ │ ├── app_error2.html │ │ │ │ ├── app_error1.html │ │ │ │ ├── app_error4.html │ │ │ │ ├── app_error3.html │ │ │ │ ├── app_error_dialog2.html │ │ │ │ ├── app_error_dialog4.html │ │ │ │ ├── app_error_dialog1.html │ │ │ │ └── app_error_dialog3.html │ │ │ ├── app │ │ │ │ ├── info_error.html │ │ │ │ └── list_tip.part │ │ │ ├── admin │ │ │ │ └── base_site.html │ │ │ ├── 403.html │ │ │ ├── user_center │ │ │ │ └── weixin_bind_error.html │ │ │ ├── 500.html │ │ │ ├── 404.html │ │ │ ├── 50x.html │ │ │ └── 401.html │ │ ├── requirements.txt │ │ ├── README.md │ │ ├── __init__.py │ │ ├── account │ │ │ └── __init__.py │ │ ├── api │ │ │ └── __init__.py │ │ ├── app_env │ │ │ └── __init__.py │ │ ├── bk_app │ │ │ └── __init__.py │ │ ├── common │ │ │ ├── __init__.py │ │ │ └── views │ │ │ │ └── __init__.py │ │ ├── conf │ │ │ └── __init__.py │ │ ├── engine │ │ │ └── __init__.py │ │ ├── guide │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── healthz │ │ │ └── __init__.py │ │ ├── home │ │ │ └── __init__.py │ │ ├── release │ │ │ └── __init__.py │ │ └── saas │ │ │ └── __init__.py │ ├── esb │ │ ├── .gitignore │ │ ├── healthz │ │ │ ├── checklist.txt │ │ │ └── __init__.py │ │ ├── requirements.txt │ │ ├── components │ │ │ ├── confapis │ │ │ │ └── cc │ │ │ │ │ └── apidocs │ │ │ │ │ ├── zh_hans │ │ │ │ │ ├── delete_object.md │ │ │ │ │ ├── delete_object_attribute.md │ │ │ │ │ ├── delete_classification.md │ │ │ │ │ ├── batch_delete_set.md │ │ │ │ │ ├── unsubcribe_event.md │ │ │ │ │ ├── add_host_lock.md │ │ │ │ │ ├── bind_process_module.md │ │ │ │ │ ├── delete_process_module_bind.md │ │ │ │ │ ├── delete_host_lock.md │ │ │ │ │ ├── testing_connection.md │ │ │ │ │ ├── delete_user_group.md │ │ │ │ │ ├── delete_instance_association.md │ │ │ │ │ └── transfer_sethost_to_idle_module.md │ │ │ │ │ └── en │ │ │ │ │ └── delete_object.md │ │ │ ├── __init__.py │ │ │ └── bk │ │ │ │ └── __init__.py │ │ ├── lib │ │ │ └── __init__.py │ │ ├── apps │ │ │ └── __init__.py │ │ ├── common │ │ │ └── __init__.py │ │ ├── configs │ │ │ └── __init__.py │ │ └── esb │ │ │ ├── exdb │ │ │ └── __init__.py │ │ │ ├── bkapp │ │ │ └── __init__.py │ │ │ ├── bkauth │ │ │ └── __init__.py │ │ │ ├── bkcore │ │ │ └── __init__.py │ │ │ ├── bkperm │ │ │ └── __init__.py │ │ │ ├── compperm │ │ │ └── __init__.py │ │ │ └── ratelimit │ │ │ └── __init__.py │ ├── appengine │ │ ├── requirements.txt │ │ ├── README.md │ │ ├── api │ │ │ └── __init__.py │ │ └── common │ │ │ └── __init__.py │ ├── Makefile │ ├── .flake8 │ ├── release.md │ └── examples │ │ ├── README.md │ │ └── build │ │ └── LICENSE_JSCSS_HEADER └── paasagent │ ├── VERSION │ ├── vendor │ ├── github.com │ │ ├── spf13 │ │ │ ├── pflag │ │ │ │ ├── .gitignore │ │ │ │ └── .travis.yml │ │ │ ├── afero │ │ │ │ ├── go.mod │ │ │ │ ├── .travis.yml │ │ │ │ └── appveyor.yml │ │ │ ├── jwalterweatherman │ │ │ │ ├── go.mod │ │ │ │ └── .gitignore │ │ │ ├── cast │ │ │ │ ├── go.mod │ │ │ │ ├── .travis.yml │ │ │ │ ├── .gitignore │ │ │ │ └── go.sum │ │ │ └── viper │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ └── go.mod │ │ ├── pelletier │ │ │ └── go-toml │ │ │ │ ├── .gitignore │ │ │ │ ├── fuzz.sh │ │ │ │ ├── fuzz.go │ │ │ │ └── .travis.yml │ │ ├── mitchellh │ │ │ └── mapstructure │ │ │ │ ├── go.mod │ │ │ │ ├── .travis.yml │ │ │ │ └── CHANGELOG.md │ │ ├── mattn │ │ │ ├── go-isatty │ │ │ │ ├── doc.go │ │ │ │ ├── isatty_appengine.go │ │ │ │ ├── isatty_linux.go │ │ │ │ ├── isatty_solaris.go │ │ │ │ ├── isatty_bsd.go │ │ │ │ ├── isatty_windows.go │ │ │ │ └── README.md │ │ │ └── go-colorable │ │ │ │ └── colorable_others.go │ │ ├── fsnotify │ │ │ └── fsnotify │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── open_mode_bsd.go │ │ │ │ ├── open_mode_darwin.go │ │ │ │ └── .travis.yml │ │ ├── hashicorp │ │ │ └── hcl │ │ │ │ ├── go.mod │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── go.sum │ │ │ │ ├── Makefile │ │ │ │ ├── hcl │ │ │ │ └── parser │ │ │ │ │ └── error.go │ │ │ │ ├── appveyor.yml │ │ │ │ ├── hcl.go │ │ │ │ └── lex.go │ │ ├── labstack │ │ │ ├── gommon │ │ │ │ └── log │ │ │ │ │ ├── README.md │ │ │ │ │ ├── white.go │ │ │ │ │ └── color.go │ │ │ └── echo │ │ │ │ ├── .gitignore │ │ │ │ ├── website │ │ │ │ └── layouts │ │ │ │ │ └── partials │ │ │ │ │ └── notice.html │ │ │ │ ├── context │ │ │ │ ├── context_1.7.go │ │ │ │ └── context_pre1.7.go │ │ │ │ ├── .editorconfig │ │ │ │ └── .travis.yml │ │ ├── magiconair │ │ │ └── properties │ │ │ │ ├── .gitignore │ │ │ │ └── .travis.yml │ │ ├── pkg │ │ │ └── errors │ │ │ │ ├── .travis.yml │ │ │ │ └── .gitignore │ │ ├── parnurzeal │ │ │ └── gorequest │ │ │ │ ├── .travis.yml │ │ │ │ └── .gitignore │ │ └── moul │ │ │ └── http2curl │ │ │ ├── .gitignore │ │ │ └── .travis.yml │ ├── golang.org │ │ └── x │ │ │ ├── sys │ │ │ ├── unix │ │ │ │ ├── .gitignore │ │ │ │ ├── endian_big.go │ │ │ │ ├── endian_little.go │ │ │ │ ├── constants.go │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ ├── aliases.go │ │ │ │ ├── pagesize_unix.go │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── syscall_linux_gc.go │ │ │ │ ├── race0.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_linux_gc_386.go │ │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── dirent.go │ │ │ │ └── str.go │ │ │ ├── AUTHORS │ │ │ └── CONTRIBUTORS │ │ │ ├── net │ │ │ ├── AUTHORS │ │ │ └── CONTRIBUTORS │ │ │ └── text │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── language │ │ │ ├── go1_2.go │ │ │ ├── common.go │ │ │ ├── Makefile │ │ │ └── gen_common.go │ │ │ └── secure │ │ │ └── bidirule │ │ │ ├── bidirule10.0.0.go │ │ │ └── bidirule9.0.0.go │ └── gopkg.in │ │ └── yaml.v2 │ │ ├── go.mod │ │ ├── .travis.yml │ │ └── NOTICE │ ├── release.md │ ├── README.md │ ├── Makefile │ └── etc │ ├── build │ └── packages │ │ └── requirements.txt │ └── paas_agent_config.yaml ├── VERSION ├── .gitattributes ├── docs ├── resource │ └── img │ │ ├── logo.png │ │ ├── paas.png │ │ ├── allView.png │ │ ├── features.png │ │ ├── bk_paas_en.png │ │ ├── bk_paas_zh.png │ │ ├── bk_qq_group.png │ │ └── ce_deploy.png ├── overview │ ├── project_deploy.md │ ├── architecture.md │ └── project_codes.md └── PULL_REQUEST_TEMPLATE.md ├── .gitmodules └── .travis.yml /paas-ce/paas/VERSION: -------------------------------------------------------------------------------- 1 | 3.2.5 2 | -------------------------------------------------------------------------------- /paas-ce/paasagent/VERSION: -------------------------------------------------------------------------------- 1 | 3.1.02 2 | -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | PaaS 3.2.5 2 | PaaSAgent 3.1.0 3 | -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/select2-3.5.2/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/select2-3.5.3/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/assets/select2-3.5.3/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=python 2 | static/* linguist-vendored 3 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/iconlogo/README.md: -------------------------------------------------------------------------------- 1 | Dir for icon(extract from uploaded icon) 2 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/afero/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/afero 2 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/saaslogo/README.md: -------------------------------------------------------------------------------- 1 | Dir for saas logo(extract from uploaded saas) 2 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/apps/api_docs/templates/api_docs/base.html: -------------------------------------------------------------------------------- 1 | {% extends "mainsite/base.html" %} 2 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/apps/manager/templates/manager/base.html: -------------------------------------------------------------------------------- 1 | {% extends "mainsite/base.html" %} 2 | -------------------------------------------------------------------------------- /docs/resource/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/docs/resource/img/logo.png -------------------------------------------------------------------------------- /docs/resource/img/paas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/docs/resource/img/paas.png -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/pelletier/go-toml/.gitignore: -------------------------------------------------------------------------------- 1 | test_program/test_program_bin 2 | fuzz/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "saas/bk-sops"] 2 | path = saas/bk-sops 3 | url = https://github.com/Tencent/bk-sops 4 | -------------------------------------------------------------------------------- /docs/resource/img/allView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/docs/resource/img/allView.png -------------------------------------------------------------------------------- /docs/resource/img/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/docs/resource/img/features.png -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/mitchellh/mapstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/mapstructure 2 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/jwalterweatherman/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/jwalterweatherman 2 | -------------------------------------------------------------------------------- /docs/resource/img/bk_paas_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/docs/resource/img/bk_paas_en.png -------------------------------------------------------------------------------- /docs/resource/img/bk_paas_zh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/docs/resource/img/bk_paas_zh.png -------------------------------------------------------------------------------- /docs/resource/img/bk_qq_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/docs/resource/img/bk_qq_group.png -------------------------------------------------------------------------------- /docs/resource/img/ce_deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/docs/resource/img/ce_deploy.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/apps/manager/templates/manager/mdfiles/zh-hans/channel.md: -------------------------------------------------------------------------------- 1 | - 通道默认是开启的;如果关闭,则会在通道名称前提示 **已关闭** 2 | -------------------------------------------------------------------------------- /paas-ce/paas/login/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/favicon.ico -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/favicon.ico -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/crown.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/crown.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/framework.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/framework.tar.gz -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/favicon.ico -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/loading.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/warning.png -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- 1 | // Package isatty implements interface to isatty 2 | package isatty 3 | -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/error/401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/error/401.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/error/403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/error/403.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/error/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/error/404.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/error/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/error/500.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/logo/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/logo/bg.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/logo/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/logo/qr.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_cc.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_job.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/framework_py.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/framework_py.tar.gz -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/bksite.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/bksite.zip -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/logo.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/qr.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/error/401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/error/401.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/error/403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/error/403.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/error/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/error/404.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/error/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/error/500.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/getheadimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/getheadimg.jpg -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/icon_dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/icon_dots.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/db.png -------------------------------------------------------------------------------- /paas-ce/paas/esb/.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | configs/default.py 6 | tests/ 7 | -------------------------------------------------------------------------------- /paas-ce/paas/login/static/bk_user_import.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/bk_user_import.xls -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/getheadimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/getheadimg.jpg -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/logo/qtlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/logo/qtlogo.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/apps/manager/templates/manager/mdfiles/zh-hans/system.md: -------------------------------------------------------------------------------- 1 | - 系统:一类API的统称,用以对API进行分类 2 | 3 | - 系统名称:系统的唯一标识,主要由字母和数字组成 4 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_cdman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_cdman.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/nav-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/nav-bg.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/doc/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/doc/img/favicon.ico -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/guide/hcp.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/guide/hcp.tar.gz -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/favicon.ico -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/icon-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/icon-no.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/icon-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/icon-yes.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/gear.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/logo.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/logo/bg_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/logo/bg_logo.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/logo/logoimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/logo/logoimg.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/code.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/log.png -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/fsnotify/fsnotify/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | indent_size = 4 6 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/hashicorp/hcl/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/hashicorp/hcl 2 | 3 | require github.com/davecgh/go-spew v1.1.1 4 | -------------------------------------------------------------------------------- /paas-ce/paas/login/static/bk_user_import_en.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/bk_user_import_en.xls -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/logo/bg_footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/logo/bg_footer.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/logo/bk_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/logo/bk_login.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/api_dev_template.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/api_dev_template.tar.gz -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_framework.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_monitor.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/icon-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/icon-no.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/icon-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/icon-yes.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/guide/en/hcp.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/guide/en/hcp.tar.gz -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/logo_esb_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/logo_esb_01.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/logo_esb_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/logo_esb_02.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/avatar.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/crown.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/icon-um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/icon-um.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/img-zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/img-zw.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/loading.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/qtlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/qtlogo.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/getadminheadimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/getadminheadimg.jpg -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/loading_2_24x24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/loading_2_24x24.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/logo/bg_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/logo/bg_login.jpg -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/logo/icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/logo/icon_error.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/logo/login_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/logo/login_text.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/resource/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/resource/mysql.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/resource/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/resource/python.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/deploy.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/monitor.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/sample.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/third.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/third.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/tools.png -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/labstack/gommon/log/README.md: -------------------------------------------------------------------------------- 1 | ## WORK IN PROGRESS 2 | 3 | ### Usage 4 | 5 | [log_test.go](log_test.go) 6 | -------------------------------------------------------------------------------- /docs/overview/project_deploy.md: -------------------------------------------------------------------------------- 1 | # 蓝鲸智云PaaS平台社区版部署拓扑 2 | 3 | 4 | 以下为`paas-ce` 部署拓扑图 5 | 6 | ![](../../docs/resource/img/ce_deploy.png) 7 | 8 | 9 | -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/getadminheadimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/getadminheadimg.jpg -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/logo/icon_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/logo/icon_error.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_agent_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_agent_setup.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_check_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_check_list.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_devops_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_devops_nav.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_log_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_log_search.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_work_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_work_manage.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/default-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/default-bg.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/icon_alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/icon_alert.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/icon_clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/icon_clock.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/icon_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/icon_error.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/tooltag-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/tooltag-add.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/app_logo/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/app_logo/default.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/base_spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/base_spring.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_db.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/resource/pycharm.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/resource/pycharm.jpeg -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/resource/rabbitmq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/resource/rabbitmq.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/resource/vagrant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/resource/vagrant.jpg -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/analysis.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/createapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/createapp.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/db_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/db_hover.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/log_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/log_hover.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/security.png -------------------------------------------------------------------------------- /paas-ce/paas/appengine/requirements.txt: -------------------------------------------------------------------------------- 1 | django==1.8.11 2 | pymysql==0.6.7 3 | requests==2.21.0 4 | gunicorn==19.9.0 5 | uWSGI==2.0.13.1 6 | gevent==1.1.2 7 | -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/logo/logo_user_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/logo/logo_user_01.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/logo/logo_user_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/logo/logo_user_02.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_app_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_app_template.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_fta_solutions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_fta_solutions.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/applogo/bk_funds_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/applogo/bk_funds_manage.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/saaslogo/bk_fta_solutions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/saaslogo/bk_fta_solutions.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/changelist-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/changelist-bg.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/icon-unknown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/icon-unknown.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/icon_addlink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/icon_addlink.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/icon_calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/icon_calendar.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/icon_searchbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/icon_searchbox.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/icon_success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/icon_success.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/inline-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/inline-delete.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/inline-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/inline-restore.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/nav-bg-grabber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/nav-bg-grabber.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/nav-bg-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/nav-bg-reverse.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/selector-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/selector-icons.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/sorting-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/sorting-icons.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/en/logo_esb_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/en/logo_esb_01.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/en/logo_esb_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/en/logo_esb_02.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/logo_esb_02.png.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/logo_esb_02.png.bak -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/notice_fail_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/notice_fail_icon.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/icon-logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/icon-logout.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/img-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/img-default.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_esb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_esb.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_guide.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_host.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_log.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_store.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_task.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_tool.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_user.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/resource/eclipse-4.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/resource/eclipse-4.5.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/resource/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/resource/framework.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/resource/python-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/resource/python-sdk.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/app_deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/app_deploy.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/code_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/code_hover.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/deploy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/deploy_hover.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/sample_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/sample_hover.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/third_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/third_hover.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/tools_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/tools_hover.png -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/magiconair/properties/.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-project 2 | *.sublime-workspace 3 | *.un~ 4 | *.swp 5 | .idea/ 6 | *.iml 7 | -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/logo/logo_user_01_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/logo/logo_user_01_en.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/img/logo/logo_user_02_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/img/logo/logo_user_02_en.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/deleted-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/deleted-overlay.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/icon_changelink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/icon_changelink.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/icon_deletelink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/icon_deletelink.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/nav-bg-selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/nav-bg-selected.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/selector-search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/selector-search.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/api_docs/img/help-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/api_docs/img/help-icon.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/icon-userinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/icon-userinfo.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_access.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_adhost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_adhost.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_advert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_advert.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_manage.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_monitor.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_sample.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_service.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_setting.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/logo/logo_develper_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/logo/logo_develper_01.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/logo/logo_develper_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/logo/logo_develper_02.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/resource/framework_py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/resource/framework_py.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/resource/framework_py3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/resource/framework_py3.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/analysis_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/analysis_hover.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/monitor_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/monitor_hover.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/security_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/security_hover.png -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/mitchellh/mapstructure/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - "1.11.x" 5 | - tip 6 | 7 | script: 8 | - go test 9 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- 1 | module "gopkg.in/yaml.v2" 2 | 3 | require ( 4 | "gopkg.in/check.v1" v0.0.0-20161208181325-20d25e280405 5 | ) 6 | -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/select2-3.5.2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/assets/select2-3.5.2/select2.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/changelist-bg_rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/changelist-bg_rtl.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/default-bg-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/default-bg-reverse.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/gis/move_vertex_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/gis/move_vertex_off.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/gis/move_vertex_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/gis/move_vertex_on.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/inline-delete-8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/inline-delete-8bit.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/inline-restore-8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/inline-restore-8bit.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/inline-splitter-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/inline-splitter-bg.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/img/tooltag-arrowright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/admin/img/tooltag-arrowright.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/select2-3.5.3/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/select2-3.5.3/select2.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/doc/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/doc/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/api_docs/img/angle.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/api_docs/img/angle.icon.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/notice_success_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/notice_success_icon.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/icon-bind-weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/icon-bind-weixin.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_appcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_appcenter.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_function.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_statistics.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/resource/api_dev_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/resource/api_dev_template.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/service/createapp_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/service/createapp_hover.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/select2-3.5.2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/assets/select2-3.5.2/select2x2.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/select2-3.5.2/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/assets/select2-3.5.2/triangle.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/select2-3.5.3/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/select2-3.5.3/select2x2.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/home/images/icon-unbind-weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/home/images/icon-unbind-weixin.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_db_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_db_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_log_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_log_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/user_center/img/loading_2_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/user_center/img/loading_2_16x16.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/user_center/img/loading_2_36x36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/user_center/img/loading_2_36x36.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/apps/manager/templates/manager/mdfiles/en/channel.md: -------------------------------------------------------------------------------- 1 | - Channel is on by default; if off, it will be prompted before the channel name with **Closed** 2 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/saas_files/bk_framework_V1.0.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/saas_files/bk_framework_V1.0.0.tar.gz -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/bootstrap-3.1.1/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/bootstrap-3.1.1/img/loading.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/doc/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/doc/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/assets/select2-3.5.3/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/assets/select2-3.5.3/select2.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/assets/select2-3.5.3/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/assets/select2-3.5.3/select2x2.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon32_loading_dark1e5b3a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon32_loading_dark1e5b3a.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_access_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_access_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_adhost_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_adhost_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_advert_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_advert_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_guide_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_guide_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_host_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_host_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_manage_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_manage_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_sample_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_sample_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_store_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_store_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_task_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_task_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_tool_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_tool_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_user_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_user_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/bootstrap-3.1.1/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/assets/bootstrap-3.1.1/img/loading.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/media/saas_files/bk_app_template_V1.0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/media/saas_files/bk_app_template_V1.0.1.tar.gz -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/select2-3.5.3/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/select2-3.5.3/select2-spinner.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon16_loading_light1e5b3a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon16_loading_light1e5b3a.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon32_loading_light1e5b3a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon32_loading_light1e5b3a.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_function_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_function_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_monitor_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_monitor_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_service_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_service_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_setting_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_setting_selected.png -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- 1 | y.output 2 | 3 | # ignore intellij files 4 | .idea 5 | *.iml 6 | *.ipr 7 | *.iws 8 | 9 | *.test 10 | -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/bootstrap-3.1.1/img/btn_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/assets/bootstrap-3.1.1/img/btn_loading.gif -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/select2-3.5.2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/assets/select2-3.5.2/select2-spinner.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/bootstrap-3.1.1/img/btn_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/bootstrap-3.1.1/img/btn_loading.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/doc/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/doc/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/doc/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/doc/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/doc/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/doc/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/api_docs/img/system_img/custom_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/api_docs/img/system_img/custom_icon.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon13_arrow_right_gray1e5b3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon13_arrow_right_gray1e5b3a.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon30_loading_gray_dark1e5b3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon30_loading_gray_dark1e5b3a.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_appcenter_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_appcenter_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon_menu_statistics_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon_menu_statistics_selected.png -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/bk-icon-2.0/fonts/bk_icons_linear.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/assets/bk-icon-2.0/fonts/bk_icons_linear.eot -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/bk-icon-2.0/fonts/bk_icons_linear.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/assets/bk-icon-2.0/fonts/bk_icons_linear.ttf -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/bk-icon-2.0/fonts/bk_icons_linear.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/bk-icon-2.0/fonts/bk_icons_linear.eot -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/bk-icon-2.0/fonts/bk_icons_linear.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/bk-icon-2.0/fonts/bk_icons_linear.ttf -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/bk-icon-2.0/fonts/bk_icons_linear.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/bk-icon-2.0/fonts/bk_icons_linear.woff -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/doc/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/doc/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/assets/select2-3.5.3/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/assets/select2-3.5.3/select2-spinner.gif -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/icon30_loading_gray_ligth1e5b3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/icon30_loading_gray_ligth1e5b3a.png -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/labstack/echo/.gitignore: -------------------------------------------------------------------------------- 1 | # Website 2 | website/public 3 | 4 | # IntelliJ 5 | .idea 6 | *.iml 7 | 8 | # Glide 9 | vendor 10 | 11 | .DS_Store 12 | -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/bk-icon-2.0/fonts/bk_icons_linear.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/assets/bk-icon-2.0/fonts/bk_icons_linear.woff -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/api_docs/img/system_img/config_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/api_docs/img/system_img/config_service.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/img/base/page_service_package_intro_z21b651.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/img/base/page_service_package_intro_z21b651.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery.zeroclipboard-0.2.0/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery.zeroclipboard-0.2.0/ZeroClipboard.swf -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081252708641.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081252708641.jpg -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081375626539.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081375626539.jpg -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081379473152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081379473152.jpg -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081384579344.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081384579344.jpg -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081404321746.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081404321746.jpg -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081428561464.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081428561464.jpg -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081438048577.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/esb/guide/weixin_component_guide/15081438048577.jpg -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/animated-overlay.gif -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/login/static/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/hashicorp/hcl/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | language: go 4 | 5 | go: 6 | - 1.x 7 | - tip 8 | 9 | branches: 10 | only: 11 | - master 12 | 13 | script: make test 14 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/labstack/gommon/log/white.go: -------------------------------------------------------------------------------- 1 | // +build appengine 2 | 3 | package log 4 | 5 | import ( 6 | "io" 7 | "os" 8 | ) 9 | 10 | func output() io.Writer { 11 | return os.Stdout 12 | } 13 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/hashicorp/hcl/go.sum: -------------------------------------------------------------------------------- 1 | github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= 2 | github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= 3 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/magiconair/properties/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.4.x 4 | - 1.5.x 5 | - 1.6.x 6 | - 1.7.x 7 | - 1.8.x 8 | - 1.9.x 9 | - "1.10.x" 10 | - tip 11 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.4 5 | - 1.5 6 | - 1.6 7 | - 1.7 8 | - 1.8 9 | - 1.9 10 | - tip 11 | 12 | go_import_path: gopkg.in/yaml.v2 13 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /paas-ce/paas/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: lint gulp-init gulp 2 | 3 | lint: 4 | flake8 --config=.flake8 . 5 | 6 | gulp-init: 7 | # you need to install node first 8 | node -v && npm install -g gulp && npm install 9 | 10 | gulp: 11 | gulp 12 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go_import_path: github.com/pkg/errors 3 | go: 4 | - 1.4.3 5 | - 1.5.4 6 | - 1.6.2 7 | - 1.7.1 8 | - tip 9 | 10 | script: 11 | - go test -v ./... 12 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/cast/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/cast 2 | 3 | require ( 4 | github.com/davecgh/go-spew v1.1.1 // indirect 5 | github.com/pmezard/go-difflib v1.0.0 // indirect 6 | github.com/stretchr/testify v1.2.2 7 | ) 8 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/apps/manager/templates/manager/mdfiles/en/system.md: -------------------------------------------------------------------------------- 1 | - System: A generic name for apis of the same category that classifies the api 2 | 3 | - System Name: The unique identification of the system, mainly composed of letters and numbers 4 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devops/bk-PaaS/master/paas-ce/paas/paas/static/assets/jquery-ui-1.11.0.custom/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: python 2 | python: 3 | - '2.7' 4 | 5 | install: 6 | - pip install mock pytz flake8 coverage 7 | - pip install -r paas-ce/paas/paas/requirements.txt 8 | 9 | script: 10 | - cd paas-ce/paas 11 | - flake8 --config=.flake8 . 12 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/apps/manager/templates/manager/mdfiles/zh-hans/index.md: -------------------------------------------------------------------------------- 1 |        2 | 蓝鲸API网关(API Gateway)是蓝鲸体系的API托管服务。可以帮助开发者创建、发布、维护、和保护API,以快速、低成本、低风险地开放系统的数据或服务。 3 | API网关支持组件编码接入和在线自助接入两种接入方式,并提供了统一的**用户认证**、**蓝鲸应用鉴权**、**请求转发**、**日志记录**等功能。 4 | -------------------------------------------------------------------------------- /paas-ce/paas/login/requirements.txt: -------------------------------------------------------------------------------- 1 | django==1.8.11 2 | dj-static==0.0.6 3 | pycrypto==2.6.1 4 | requests==2.21.0 5 | pymysql==0.6.7 6 | gunicorn==19.9.0 7 | uWSGI==2.0.13.1 8 | xlrd==1.0.0 9 | xlwt==1.1.2 10 | gevent==1.1.2 11 | pytz==2016.6.1 12 | python-dateutil==2.6.0 13 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/labstack/gommon/log/color.go: -------------------------------------------------------------------------------- 1 | // +build !appengine 2 | 3 | package log 4 | 5 | import ( 6 | "io" 7 | 8 | "github.com/mattn/go-colorable" 9 | ) 10 | 11 | func output() io.Writer { 12 | return colorable.NewColorableStdout() 13 | } 14 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/error/app_error2.html: -------------------------------------------------------------------------------- 1 | <%inherit file="/base_app.html"/> 2 | <%block name="right_content"> 3 |
4 |
您没有权限!
5 |
6 | 7 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/fsnotify/fsnotify/.gitignore: -------------------------------------------------------------------------------- 1 | # Setup a Global .gitignore for OS and editor generated files: 2 | # https://help.github.com/articles/ignoring-files 3 | # git config --global core.excludesfile ~/.gitignore_global 4 | 5 | .vagrant 6 | *.sublime-project 7 | -------------------------------------------------------------------------------- /paas-ce/paas/login/static/assets/select2-3.5.2/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "select2", 3 | "version": "3.5.2", 4 | "main": ["select2.js", "select2.css", "select2.png", "select2x2.png", "select2-spinner.gif"], 5 | "dependencies": { 6 | "jquery": ">= 1.7.1" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/assets/select2-3.5.3/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "select2", 3 | "version": "3.5.3", 4 | "main": ["select2.js", "select2.css", "select2.png", "select2x2.png", "select2-spinner.gif"], 5 | "dependencies": { 6 | "jquery": ">= 1.7.1" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/esb/assets/select2-3.5.3/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "select2", 3 | "version": "3.5.3", 4 | "main": ["select2.js", "select2.css", "select2.png", "select2x2.png", "select2-spinner.gif"], 5 | "dependencies": { 6 | "jquery": ">= 1.7.1" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/app/info_error.html: -------------------------------------------------------------------------------- 1 | <%inherit file="/base_app.html"/> 2 | <%block name="right_content"> 3 |
4 | 5 |
${error}
6 |
7 | 8 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/error/app_error1.html: -------------------------------------------------------------------------------- 1 | <%inherit file="/base_app.html"/> 2 | <%block name="right_content"> 3 |
4 |
出错了!应用不存在!
5 |
6 | 7 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/error/app_error4.html: -------------------------------------------------------------------------------- 1 | <%inherit file="/base_center.html"/> 2 | <%block name="right_content"> 3 |
4 |
您没有权限!
5 |
6 | 7 | -------------------------------------------------------------------------------- /paas-ce/paasagent/release.md: -------------------------------------------------------------------------------- 1 | # 蓝鲸智云 PaaSAgent 社区版版本记录 2 | 3 | # 3.1.02 4 | - 支持python3 5 | 6 | # 3.1.01 7 | - 去除syncdb 8 | - postEventLog增加错误日志输出 9 | 10 | # 3.1.0 11 | - 更新READEME.md 12 | 13 | # 3.0.9 14 | - 添加supervisor=3.3.3到基础环境中 15 | 16 | # 3.0.8 17 | - 更新djcelery版本到3.2.1 18 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/error/app_error3.html: -------------------------------------------------------------------------------- 1 | <%inherit file="/base_center.html"/> 2 | <%block name="right_content"> 3 |
4 |
出错了!应用不存在!
5 |
6 | 7 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/doc/apidoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "apidoc", 3 | "version": "1.0.0", 4 | "description": "", 5 | "title": "ESB文档|蓝鲸智云社区版", 6 | "url" : "", 7 | "sampleUrl": false, 8 | "template": { 9 | "withCompare": true, 10 | "withGenerator": true 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/cast/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | env: 3 | - GO111MODULE=on 4 | sudo: required 5 | go: 6 | - "1.11.x" 7 | - tip 8 | os: 9 | - linux 10 | matrix: 11 | allow_failures: 12 | - go: tip 13 | fast_finish: true 14 | script: 15 | - make check 16 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/mattn/go-isatty/isatty_appengine.go: -------------------------------------------------------------------------------- 1 | // +build appengine 2 | 3 | package isatty 4 | 5 | // IsTerminal returns true if the file descriptor is terminal which 6 | // is always false on on appengine classic which is a sandboxed PaaS. 7 | func IsTerminal(fd uintptr) bool { 8 | return false 9 | } 10 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | // 5 | // +build ppc64 s390x mips mips64 6 | 7 | package unix 8 | 9 | const isBigEndian = true 10 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/labstack/echo/website/layouts/partials/notice.html: -------------------------------------------------------------------------------- 1 |
2 |

3 | Check out our new project Armor 4 |

5 |

6 | Simple HTTP server, supports HTTP/2 and auto TLS, based on Echo v3. 7 |

8 |
9 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/parnurzeal/gorequest/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.7 4 | - 1.6 5 | - 1.5 6 | - 1.4 7 | - 1.3 8 | - 1.2 9 | install: 10 | - go get -t -v ./... 11 | notifications: 12 | email: 13 | recipients: parnurzeal@gmail.com 14 | on_success: change 15 | on_failure: always 16 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.2 6 | 7 | package language 8 | 9 | import "sort" 10 | 11 | var sortStable = sort.Stable 12 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/labstack/echo/context/context_1.7.go: -------------------------------------------------------------------------------- 1 | // +build go1.7 2 | 3 | package context 4 | 5 | import "context" 6 | 7 | func Background() Context { 8 | return context.Background() 9 | } 10 | 11 | func WithValue(parent Context, key, val interface{}) Context { 12 | return context.WithValue(parent, key, val) 13 | } 14 | -------------------------------------------------------------------------------- /docs/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | ## 变更点(Changes) 11 | 12 | - xxxx 13 | 14 | ## 相关issues (Which issues this PR fixes) 15 | 16 | - Fixes # 17 | 18 | ## 备注(Special notes) 19 | 20 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/afero/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | 4 | go: 5 | - 1.9 6 | - "1.10" 7 | - tip 8 | 9 | os: 10 | - linux 11 | - osx 12 | 13 | matrix: 14 | allow_failures: 15 | - go: tip 16 | fast_finish: true 17 | 18 | script: 19 | - go build 20 | - go test -race -v ./... 21 | 22 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | // 5 | // +build 386 amd64 amd64p32 arm arm64 ppc64le mipsle mips64le 6 | 7 | package unix 8 | 9 | const isBigEndian = false 10 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/labstack/echo/context/context_pre1.7.go: -------------------------------------------------------------------------------- 1 | // +build !go1.7 2 | 3 | package context 4 | 5 | import "golang.org/x/net/context" 6 | 7 | func Background() Context { 8 | return context.Background() 9 | } 10 | 11 | func WithValue(parent Context, key, val interface{}) Context { 12 | return context.WithValue(parent, key, val) 13 | } 14 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/js/jquery.init.js: -------------------------------------------------------------------------------- 1 | /* Puts the included jQuery into our own namespace using noConflict and passing 2 | * it 'true'. This ensures that the included jQuery doesn't pollute the global 3 | * namespace (i.e. this preserves pre-existing values for both window.$ and 4 | * window.jQuery). 5 | */ 6 | var django = django || {}; 7 | django.jQuery = jQuery.noConflict(true); 8 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/error/app_error_dialog2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 错误信息 5 | 6 | 7 |
8 |
您没有权限!
9 |
10 | 11 | 12 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/error/app_error_dialog4.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 错误信息 5 | 6 | 7 |
8 |
您没有权限!
9 |
10 | 11 | 12 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- 1 | TEST?=./... 2 | 3 | default: test 4 | 5 | fmt: generate 6 | go fmt ./... 7 | 8 | test: generate 9 | go get -t ./... 10 | go test $(TEST) $(TESTARGS) 11 | 12 | generate: 13 | go generate ./... 14 | 15 | updatedeps: 16 | go get -u golang.org/x/tools/cmd/stringer 17 | 18 | .PHONY: default generate test updatedeps 19 | -------------------------------------------------------------------------------- /paas-ce/paas/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | # ignore = W292,E722 3 | exclude = 4 | *migrations*, 5 | *.pyc, 6 | .git, 7 | __pycache__, 8 | node_modules/*, 9 | */templates_module*, 10 | templates_module* 11 | */bin/*, 12 | ./esb/lib/gse/* 13 | 14 | max-line-length=120 15 | max-complexity=12 16 | format=pylint 17 | show_source = True 18 | statistics = True 19 | count = True 20 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/error/app_error_dialog1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 错误信息 5 | 6 | 7 |
8 |
出错了!应用不存在!
9 |
10 | 11 | 12 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/error/app_error_dialog3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 错误信息 5 | 6 | 7 |
8 |
出错了!应用不存在!
9 |
10 | 11 | 12 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build aix darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | package unix 8 | 9 | const ( 10 | R_OK = 0x4 11 | W_OK = 0x2 12 | X_OK = 0x1 13 | ) 14 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/hashicorp/hcl/hcl/parser/error.go: -------------------------------------------------------------------------------- 1 | package parser 2 | 3 | import ( 4 | "fmt" 5 | 6 | "github.com/hashicorp/hcl/hcl/token" 7 | ) 8 | 9 | // PosError is a parse error that contains a position. 10 | type PosError struct { 11 | Pos token.Pos 12 | Err error 13 | } 14 | 15 | func (e *PosError) Error() string { 16 | return fmt.Sprintf("At %s: %s", e.Pos, e.Err) 17 | } 18 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | 3 | language: go 4 | 5 | go: 6 | - 1.7.3 7 | - 1.8.1 8 | - tip 9 | 10 | matrix: 11 | allow_failures: 12 | - go: tip 13 | 14 | install: 15 | - go get github.com/golang/lint/golint 16 | - export PATH=$GOPATH/bin:$PATH 17 | - go install ./... 18 | 19 | script: 20 | - verify/all.sh -v 21 | - go test ./... 22 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/pelletier/go-toml/fuzz.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | set -eu 3 | 4 | go get github.com/dvyukov/go-fuzz/go-fuzz 5 | go get github.com/dvyukov/go-fuzz/go-fuzz-build 6 | 7 | if [ ! -e toml-fuzz.zip ]; then 8 | go-fuzz-build github.com/pelletier/go-toml 9 | fi 10 | 11 | rm -fr fuzz 12 | mkdir -p fuzz/corpus 13 | cp *.toml fuzz/corpus 14 | 15 | go-fuzz -bin=toml-fuzz.zip -workdir=fuzz 16 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/apps/bootstrapform/templates/bootstrapform/formset.html: -------------------------------------------------------------------------------- 1 | {{ formset.management_form }} 2 | 3 | {% for form in formset %} 4 | {% if classes.label == 'sr-only' %} 5 |
6 | {% include "bootstrapform/form.html" with form=form %} 7 |
8 | {%else%} 9 | {% include "bootstrapform/form.html" with form=form %} 10 | {% endif %} 11 | {% endfor %} 12 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- 1 | (function(b){b.fn.prepopulate=function(e,g){return this.each(function(){var a=b(this),d=function(){if(!a.data("_changed")){var f=[];b.each(e,function(h,c){c=b(c);c.val().length>0&&f.push(c.val())});a.val(URLify(f.join(" "),g))}};a.data("_changed",false);a.change(function(){a.data("_changed",true)});a.val()||b(e.join(",")).keyup(d).change(d).focus(d)})}})(django.jQuery); 2 | -------------------------------------------------------------------------------- /paas-ce/paasagent/README.md: -------------------------------------------------------------------------------- 1 | # 蓝鲸智云PaaS平台社区版之PaaSAgent 2 | 3 | ## 简介 4 | 5 | paasagent目录是蓝鲸智云PaaS平台中应用引擎(appengine)对应的agent模块源码目录 6 | 7 | 主要作用是: 8 | 9 | - agent需要部署在应用服务器上 10 | - 负责接收上层应用引擎(appengine)的请求指令,执行SaaS应用的部署和下架等任务操作(应用运行时环境的构建和进程托管) 11 | 12 | ## 技术栈 13 | 14 | - framework: labstack/echo 15 | - python run time: virtualenv, uwsgi 16 | 17 | ## 依赖说明 18 | 19 | - appengine: 需要调用appengine的接口, 回写SaaS应用的部署日志 20 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/fsnotify/fsnotify/open_mode_bsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build freebsd openbsd netbsd dragonfly 6 | 7 | package fsnotify 8 | 9 | import "golang.org/x/sys/unix" 10 | 11 | const openMode = unix.O_NONBLOCK | unix.O_RDONLY 12 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/afero/appveyor.yml: -------------------------------------------------------------------------------- 1 | version: '{build}' 2 | clone_folder: C:\gopath\src\github.com\spf13\afero 3 | environment: 4 | GOPATH: C:\gopath 5 | build_script: 6 | - cmd: >- 7 | go version 8 | 9 | go env 10 | 11 | go get -v github.com/spf13/afero/... 12 | 13 | go build github.com/spf13/afero 14 | test_script: 15 | - cmd: go test -race -v github.com/spf13/afero/... 16 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/jwalterweatherman/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | -------------------------------------------------------------------------------- /paas-ce/paas/appengine/README.md: -------------------------------------------------------------------------------- 1 | # 蓝鲸智云PaaS平台社区版之应用引擎 2 | 3 | ## 简介 4 | 5 | appengine目录是蓝鲸智云PaaS平台中, 负责托管 SaaS 应用的后台服务模块(应用引擎)源码目录。 6 | 7 | 主要作用是: 8 | 9 | - 提供SaaS应用生命周期的管理功能,包括提测、上线、下架等,与PaaSAgent交互 10 | - 提供SaaS应用依赖的第三方服务的管理功能,包括服务申请,服务配置等 11 | 12 | ## 技术栈 13 | 14 | - framework: Django 1.8.11 15 | - database: mysql 16 | 17 | ## 依赖说明 18 | 19 | - paasagent: 需要调用paasagent接口, 完成对SaaS应用生命周期的管理功能 20 | - mysql: 平台数据库 21 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/healthz/checklist.txt: -------------------------------------------------------------------------------- 1 | ## ESB 健康检查 checklist 2 | 3 | ### 检查 settings 配置 4 | 1. 以下配置必须存在 5 | ESB_TOKEN, PAAS_HOST, HOST_BK_LOGIN 6 | HOST_CC, HOST_FTA 7 | 8 | 9 | ### 检查 DB 服务是否正常,且以下库表已经创建 10 | esb_component_system 11 | esb_channel 12 | esb_function_controller 13 | esb_buffet_component 14 | 15 | 16 | ### 检查 ESB 访问的后端接口是否正常,主要检查以下系统 17 | BK_LOGIN 18 | CC 19 | FTA 20 | -------------------------------------------------------------------------------- /paas-ce/paasagent/Makefile: -------------------------------------------------------------------------------- 1 | # Go parameters 2 | GOCMD=go 3 | GOBUILD=$(GOCMD) build 4 | GOCLEAN=$(GOCMD) clean 5 | GOTEST=$(GOCMD) test 6 | GOGET=$(GOCMD) get 7 | GOVET=$(GOCMD) vet 8 | 9 | .PHONY: build build-linux clean 10 | 11 | build: 12 | $(GOBUILD) -o bin/paas_agent -v -i main.go 13 | 14 | build-linux: 15 | GOOS=linux GOARCH=amd64 $(GOBUILD) -o bin/paas_agent -v -i main.go 16 | 17 | clean: 18 | $(GOCLEAN) 19 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build amd64,linux 6 | // +build !gccgo 7 | 8 | package unix 9 | 10 | import "syscall" 11 | 12 | //go:noescape 13 | func gettimeofday(tv *Timeval) (err syscall.Errno) 14 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/fsnotify/fsnotify/open_mode_darwin.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin 6 | 7 | package fsnotify 8 | 9 | import "golang.org/x/sys/unix" 10 | 11 | // note: this constant is not defined on BSD 12 | const openMode = unix.O_EVTONLY 13 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/viper/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.bench -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/moul/http2curl/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/parnurzeal/gorequest/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | .idea 10 | 11 | # Architecture specific extensions/prefixes 12 | *.[568vq] 13 | [568vq].out 14 | 15 | *.cgo1.go 16 | *.cgo2.c 17 | _cgo_defun.c 18 | _cgo_gotypes.go 19 | _cgo_export.* 20 | 21 | _testmain.go 22 | 23 | *.exe 24 | tags 25 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | *.test 24 | 25 | *.bench 26 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.10 6 | 7 | package bidirule 8 | 9 | func (t *Transformer) isFinal() bool { 10 | return t.state == ruleLTRFinal || t.state == ruleRTLFinal || t.state == ruleInitial 11 | } 12 | -------------------------------------------------------------------------------- /paas-ce/paas/release.md: -------------------------------------------------------------------------------- 1 | # 蓝鲸智云 PaaS 社区版版本记录 2 | 3 | # 3.2.5 4 | 5 | - bugfix: fix a lot of front-end issues 6 | - update: avatar 7 | - update: esb update sops confapis, cmsi send_voice_msg support tencentcloud api 8 | 9 | # 3.2.4 10 | 11 | - update: python3 frmaework 12 | - update: python framwork to support https dev 13 | - bugfix: add old login account manager url 14 | 15 | # 3.2.3 16 | 17 | - devops support 18 | 19 | # 3.2.2 20 | - first version 21 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/hashicorp/hcl/appveyor.yml: -------------------------------------------------------------------------------- 1 | version: "build-{branch}-{build}" 2 | image: Visual Studio 2015 3 | clone_folder: c:\gopath\src\github.com\hashicorp\hcl 4 | environment: 5 | GOPATH: c:\gopath 6 | init: 7 | - git config --global core.autocrlf false 8 | install: 9 | - cmd: >- 10 | echo %Path% 11 | 12 | go version 13 | 14 | go env 15 | 16 | go get -t ./... 17 | 18 | build_script: 19 | - cmd: go test -v ./... 20 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/requirements.txt: -------------------------------------------------------------------------------- 1 | django==1.8.11 2 | dj-static==0.0.6 3 | mako==1.0.4 4 | pycrypto==2.6.1 5 | requests==2.21.0 6 | gunicorn==19.9.0 7 | uWSGI==2.0.13.1 8 | elasticsearch==2.3.0 9 | pymysql==0.6.7 10 | redis==2.10.5 11 | PyYAML==5.1 12 | Pillow==3.4.2 13 | gevent==1.1.2 14 | pytz==2016.6.1 15 | enum34==1.1.6 16 | 17 | # for esb 18 | jinja2==2.8 19 | django-bootstrap-form==3.2.1 20 | Markdown==2.6.6 21 | pygments==2.1.3 22 | 23 | # for test 24 | mock==2.0.0 25 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build aix darwin dragonfly freebsd linux netbsd openbsd solaris 6 | // +build go1.9 7 | 8 | package unix 9 | 10 | import "syscall" 11 | 12 | type Signal = syscall.Signal 13 | type Errno = syscall.Errno 14 | type SysProcAttr = syscall.SysProcAttr 15 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !go1.10 6 | 7 | package bidirule 8 | 9 | func (t *Transformer) isFinal() bool { 10 | if !t.isRTL() { 11 | return true 12 | } 13 | return t.state == ruleLTRFinal || t.state == ruleRTLFinal || t.state == ruleInitial 14 | } 15 | -------------------------------------------------------------------------------- /paas-ce/paas/login/README.md: -------------------------------------------------------------------------------- 1 | # 蓝鲸智云PaaS平台社区版之统一登录 2 | 3 | ## 简介 4 | 5 | login目录是蓝鲸智云统一登录服务的源码目录 6 | 7 | 主要作用是: 8 | - 为蓝鲸智云所有平台和SaaS应用提供统一的用户身份认证和单点登录服务 9 | - 支持蓝鲸智云所有用户统一管理和简单授权 10 | - 支持蓝鲸智云统一登录对接企业内部登录体系 11 | 12 | 由蓝鲸统一登录模块和自定义接入企业登录模块两部分组成: 13 | 14 | - 蓝鲸统一登录模块: 提供蓝鲸智云用户登录入口,用户信息管理和简单授权管理 15 | - 自定义接入企业登录模块: 支持将蓝鲸智云统一登录对接企业内部登录体系,让用户使用企业内部的身份认证 16 | 17 | 18 | ## 技术栈 19 | 20 | - framework: Django 1.8.11 21 | - database: mysql 22 | 23 | 24 | ## 依赖服务 25 | 26 | - mysql: 平台数据库 27 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- 1 | // Copyright 2017 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build aix darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | // For Unix, get the pagesize from the runtime. 8 | 9 | package unix 10 | 11 | import "syscall" 12 | 13 | func Getpagesize() int { 14 | return syscall.Getpagesize() 15 | } 16 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/requirements.txt: -------------------------------------------------------------------------------- 1 | # pkg used in prod env should be added to requirements_prod.txt also 2 | 3 | Django==1.8.11 4 | requests==2.21.0 5 | jinja2==2.8 6 | sqlalchemy==1.0.12 7 | pymysql==0.6.7 8 | redis==2.10.5 9 | thrift==0.10.0 10 | gevent==1.1.2 11 | pytz==2016.6.1 12 | 13 | # encrypt 14 | pycrypto==2.6.1 15 | 16 | markdown==2.6.6 17 | gunicorn==19.9.0 18 | uWSGI==2.0.13.1 19 | PyYAML==5.1 20 | 21 | # for fta 22 | arrow==0.10.0 23 | 24 | # for apidoc 25 | Pygments==2.1.3 26 | -------------------------------------------------------------------------------- /paas-ce/paas/examples/README.md: -------------------------------------------------------------------------------- 1 | # examples 说明 2 | 3 | 4 | ``` 5 | ├── nginx_paas.conf paas nginx配置示例, 用于配置统一接入层 6 | ├── settings 项目配置示例, 用于配置4个项目模块 7 | │   ├── appengine 8 | │   │   └── settings.py 9 | │   ├── esb 10 | │   │   └── default.py 11 | │   ├── login 12 | │   │   └── settings_production.py 13 | │   └── paas 14 | │   └── settings_production.py 15 | └── supervisord.conf supervisord.conf配置文件, 用于supervisor托管所有进程 16 | ``` 17 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- 1 | // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. 2 | 3 | package language 4 | 5 | // This file contains code common to the maketables.go and the package code. 6 | 7 | // langAliasType is the type of an alias in langAliasMap. 8 | type langAliasType int8 9 | 10 | const ( 11 | langDeprecated langAliasType = iota 12 | langMacro 13 | langLegacy 14 | 15 | langAliasTypeUnknown langAliasType = -1 16 | ) 17 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/mattn/go-colorable/colorable_others.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package colorable 4 | 5 | import ( 6 | "io" 7 | "os" 8 | ) 9 | 10 | func NewColorable(file *os.File) io.Writer { 11 | if file == nil { 12 | panic("nil passed instead of *os.File to NewColorable()") 13 | } 14 | 15 | return file 16 | } 17 | 18 | func NewColorableStdout() io.Writer { 19 | return os.Stdout 20 | } 21 | 22 | func NewColorableStderr() io.Writer { 23 | return os.Stderr 24 | } 25 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go: -------------------------------------------------------------------------------- 1 | // +build linux,386 linux,arm linux,mips linux,mipsle 2 | 3 | // Copyright 2014 The Go Authors. All rights reserved. 4 | // Use of this source code is governed by a BSD-style 5 | // license that can be found in the LICENSE file. 6 | 7 | package unix 8 | 9 | func init() { 10 | // On 32-bit Linux systems, the fcntl syscall that matches Go's 11 | // Flock_t type is SYS_FCNTL64, not SYS_FCNTL. 12 | fcntl64Syscall = SYS_FCNTL64 13 | } 14 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/moul/http2curl/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.7.3 5 | - tip 6 | 7 | env: 8 | - GO15VENDOREXPERIMENT=1 9 | 10 | matrix: 11 | allow_failures: 12 | - go: tip 13 | 14 | before_install: 15 | - go get -u github.com/axw/gocov/gocov 16 | - go get -u github.com/mattn/goveralls 17 | - go get golang.org/x/tools/cmd/cover 18 | 19 | script: 20 | - make build 21 | - make test 22 | - make cover 23 | - goveralls -service=travis-ci -v -covermode=count -coverprofile=profile.out 24 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/doc/api_project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "apidoc", 3 | "version": "1.0.0", 4 | "description": "", 5 | "title": "ESB文档|蓝鲸智云社区版", 6 | "url": "", 7 | "sampleUrl": false, 8 | "template": { 9 | "withCompare": true, 10 | "withGenerator": true 11 | }, 12 | "defaultVersion": "0.0.0", 13 | "apidoc": "0.3.0", 14 | "generator": { 15 | "name": "apidoc", 16 | "time": "2018-04-02T04:28:37.090Z", 17 | "url": "http://apidocjs.com", 18 | "version": "0.17.6" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/doc/api_project.js: -------------------------------------------------------------------------------- 1 | define({ 2 | "name": "apidoc", 3 | "version": "1.0.0", 4 | "description": "", 5 | "title": "ESB文档|蓝鲸智云社区版", 6 | "url": "", 7 | "sampleUrl": false, 8 | "template": { 9 | "withCompare": true, 10 | "withGenerator": true 11 | }, 12 | "defaultVersion": "0.0.0", 13 | "apidoc": "0.3.0", 14 | "generator": { 15 | "name": "apidoc", 16 | "time": "2018-04-02T04:28:37.090Z", 17 | "url": "http://apidocjs.com", 18 | "version": "0.17.6" 19 | } 20 | }); 21 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/mattn/go-isatty/isatty_linux.go: -------------------------------------------------------------------------------- 1 | // +build linux 2 | // +build !appengine 3 | 4 | package isatty 5 | 6 | import ( 7 | "syscall" 8 | "unsafe" 9 | ) 10 | 11 | const ioctlReadTermios = syscall.TCGETS 12 | 13 | // IsTerminal return true if the file descriptor is terminal. 14 | func IsTerminal(fd uintptr) bool { 15 | var termios syscall.Termios 16 | _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, fd, ioctlReadTermios, uintptr(unsafe.Pointer(&termios)), 0, 0, 0) 17 | return err == 0 18 | } 19 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright 2013 The Go Authors. All rights reserved. 2 | # Use of this source code is governed by a BSD-style 3 | # license that can be found in the LICENSE file. 4 | 5 | CLEANFILES+=maketables 6 | 7 | maketables: maketables.go 8 | go build $^ 9 | 10 | tables: maketables 11 | ./maketables > tables.go 12 | gofmt -w -s tables.go 13 | 14 | # Build (but do not run) maketables during testing, 15 | # just to make sure it still compiles. 16 | testshort: maketables 17 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/mattn/go-isatty/isatty_solaris.go: -------------------------------------------------------------------------------- 1 | // +build solaris 2 | // +build !appengine 3 | 4 | package isatty 5 | 6 | import ( 7 | "golang.org/x/sys/unix" 8 | ) 9 | 10 | // IsTerminal returns true if the given file descriptor is a terminal. 11 | // see: http://src.illumos.org/source/xref/illumos-gate/usr/src/lib/libbc/libc/gen/common/isatty.c 12 | func IsTerminal(fd uintptr) bool { 13 | var termio unix.Termio 14 | err := unix.IoctlSetTermio(int(fd), unix.TCGETA, &termio) 15 | return err == nil 16 | } 17 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/apps/manager/templates/manager/mdfiles/en/index.md: -------------------------------------------------------------------------------- 1 |        2 | The BlueKing API Gateway is an API hosting service of BlueKing system. 3 | It can help developers create, publish, maintain, and protect APIs to open system data or services quickly, inexpensively, and with low risk. 4 | The API gateway supports component coding and online self-service, and provides a unified **User Authentication**, 5 | **BlueKing Application Authentication**, **Request Forwarding**, **Logging** and other functions. 6 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !gccgo 6 | 7 | #include "textflag.h" 8 | 9 | // 10 | // System calls for ppc64, AIX are implemented in runtime/syscall_aix.go 11 | // 12 | 13 | TEXT ·syscall6(SB),NOSPLIT,$0-88 14 | JMP syscall·syscall6(SB) 15 | 16 | TEXT ·rawSyscall6(SB),NOSPLIT,$0-88 17 | JMP syscall·rawSyscall6(SB) 18 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !gccgo 6 | 7 | #include "textflag.h" 8 | 9 | // 10 | // System calls for amd64, Solaris are implemented in runtime/syscall_solaris.go 11 | // 12 | 13 | TEXT ·sysvicall6(SB),NOSPLIT,$0-88 14 | JMP syscall·sysvicall6(SB) 15 | 16 | TEXT ·rawSysvicall6(SB),NOSPLIT,$0-88 17 | JMP syscall·rawSysvicall6(SB) 18 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/mattn/go-isatty/isatty_bsd.go: -------------------------------------------------------------------------------- 1 | // +build darwin freebsd openbsd netbsd dragonfly 2 | // +build !appengine 3 | 4 | package isatty 5 | 6 | import ( 7 | "syscall" 8 | "unsafe" 9 | ) 10 | 11 | const ioctlReadTermios = syscall.TIOCGETA 12 | 13 | // IsTerminal return true if the file descriptor is terminal. 14 | func IsTerminal(fd uintptr) bool { 15 | var termios syscall.Termios 16 | _, _, err := syscall.Syscall6(syscall.SYS_IOCTL, fd, ioctlReadTermios, uintptr(unsafe.Pointer(&termios)), 0, 0, 0) 17 | return err == 0 18 | } 19 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/apps/bootstrapform/templates/bootstrapform/form.html: -------------------------------------------------------------------------------- 1 | {% if form.non_field_errors %} 2 |
3 | × 4 | {% for non_field_error in form.non_field_errors %} 5 | {{ non_field_error }} 6 | {% endfor %} 7 |
8 | {% endif %} 9 | 10 | {% for field in form.hidden_fields %} 11 | {{ field }} 12 | {% endfor %} 13 | 14 | {% for field in form.visible_fields %} 15 | {% include 'bootstrapform/field.html' %} 16 | {% endfor %} 17 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- 1 | // Package hcl decodes HCL into usable Go structures. 2 | // 3 | // hcl input can come in either pure HCL format or JSON format. 4 | // It can be parsed into an AST, and then decoded into a structure, 5 | // or it can be decoded directly from a string into a structure. 6 | // 7 | // If you choose to parse HCL into a raw AST, the benefit is that you 8 | // can write custom visitor implementations to implement custom 9 | // semantic checks. By default, HCL does not perform any semantic 10 | // checks. 11 | package hcl 12 | -------------------------------------------------------------------------------- /docs/overview/architecture.md: -------------------------------------------------------------------------------- 1 | # 蓝鲸智云PaaS平台社区版架构设计 2 | 3 | ## 蓝鲸智云体系架构 4 | 5 | 蓝鲸智云体系由八大平台组成,即管控平台、配置平台、作业平台、数据平台、容器管理平台、AI平台、PaaS平台和移动平台,为各种云(公有云、私有云、混合云)的用户提供不同场景、不同需求的一站式技术运营解决方案。 6 | 7 | ![](../../docs/resource/img/allView.png) 8 | 9 | ## 蓝鲸智云 PaaS 平台(社区版)架构 10 | 11 | 蓝鲸智云PaaS平台是一个开放的开发平台,让开发者可以简单、快速地创建、部署和管理应用,他提供了完善的前后台开发框架、API网关、调度引擎、公共组件等模块,帮助用户快速、低成本、免运维地构建支撑工具和运营系统(SaaS应用)。PaaS平台为一个SaaS应用从创建到部署,再到后续的维护管理提供了完善的自助化和自动化服务,从而使开发者可以将全部精力投入到SaaS应用的逻辑开发之中。PaaS平台的主要功能有:完善的开发框架/样例、免运维托管、API网关、前端服务(MagicBox)等。 12 | 13 | ![](../../docs/resource/img/paas.png) 14 | 15 | 16 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/admin/base_site.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/base.html" %} 2 | {% load i18n %} 3 | 4 | {% block title %}{{ title }} | 管理{% endblock %} 5 | 6 | {% block branding %} 7 |

蓝鲸智云后台管理

8 | {% endblock %} 9 | 10 | {% block userlinks %} 11 | {% if site_url %} 12 | 蓝鲸智云平台 / 13 | {% endif %} 14 | {% if user.has_usable_password %} 15 | 修改密码 / 16 | {% endif %} 17 | 注销 18 | {% endblock %} 19 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/cast/go.sum: -------------------------------------------------------------------------------- 1 | github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= 2 | github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= 3 | github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= 4 | github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= 5 | github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w= 6 | github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= 7 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/viper/.travis.yml: -------------------------------------------------------------------------------- 1 | go_import_path: github.com/spf13/viper 2 | 3 | language: go 4 | go: 5 | - 1.10.x 6 | - 1.11.x 7 | - tip 8 | 9 | os: 10 | - linux 11 | - osx 12 | 13 | matrix: 14 | allow_failures: 15 | - go: tip 16 | fast_finish: true 17 | 18 | script: 19 | - go install ./... 20 | - diff -u <(echo -n) <(gofmt -d .) 21 | - go test -v ./... 22 | 23 | after_success: 24 | - go get -u -d github.com/spf13/hugo 25 | - cd $GOPATH/src/github.com/spf13/hugo && make && ./hugo -s docs && cd - 26 | 27 | sudo: false 28 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build gccgo,linux,amd64 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | //extern gettimeofday 12 | func realGettimeofday(*Timeval, *byte) int32 13 | 14 | func gettimeofday(tv *Timeval) (err syscall.Errno) { 15 | r := realGettimeofday(tv, nil) 16 | if r < 0 { 17 | return syscall.GetErrno() 18 | } 19 | return 0 20 | } 21 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/mattn/go-isatty/isatty_windows.go: -------------------------------------------------------------------------------- 1 | // +build windows 2 | // +build !appengine 3 | 4 | package isatty 5 | 6 | import ( 7 | "syscall" 8 | "unsafe" 9 | ) 10 | 11 | var kernel32 = syscall.NewLazyDLL("kernel32.dll") 12 | var procGetConsoleMode = kernel32.NewProc("GetConsoleMode") 13 | 14 | // IsTerminal return true if the file descriptor is terminal. 15 | func IsTerminal(fd uintptr) bool { 16 | var st uint32 17 | r, _, e := syscall.Syscall(procGetConsoleMode.Addr(), 2, fd, uintptr(unsafe.Pointer(&st)), 0) 18 | return r != 0 && e == 0 19 | } 20 | -------------------------------------------------------------------------------- /docs/overview/project_codes.md: -------------------------------------------------------------------------------- 1 | # 蓝鲸智云PaaS平台社区版代码结构 2 | 3 | 4 | 目前, 蓝鲸智云PaaS平台社区版源码组成如下: 5 | 6 | ``` 7 | paas-ce 8 | ├── paas 9 | │   ├── appengine 蓝鲸应用引擎 10 | │   ├── esb 蓝鲸API网关 11 | │   ├── login 蓝鲸统一登录服务 12 | │   └── paas 蓝鲸开发者中心&web工作台 13 | └── paasagent 蓝鲸应用引擎Agent 14 | ``` 15 | 16 | - login: 蓝鲸统一登录服务, 蓝鲸智云下的所有服务依赖的统一登录服务, 包括作业平台/配置平台/PaaS平台/SaaS等 17 | - paas: 蓝鲸开发者中心, 包含应用的访问入口管理, 应用开发/部署/维护等入口 18 | - esb: 蓝鲸API网关, 企业级服务总线, 蓝鲸体系中的底层原子平台和第三方的运营系统提供API, 统一以组件的形式对接到API网关 19 | - appengine: 蓝鲸应用引擎, 负责应用发布/下架、状态监测、资源申请及分配等管理 20 | - paasagent: 蓝鲸应用引擎Agent, 负责应用进程在物理机上的生命周期管理 -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/app/list_tip.part: -------------------------------------------------------------------------------- 1 |
2 |
3 |

您还没有应用,立即创建

4 |
5 |
6 |

流程介绍:

7 |
8 |
9 |
10 | 1 创建应用
11 | 填写应用信息,创建应用 12 |
13 |
14 | 2 应用部署
15 | 支持部署到测试、正式两个环境
16 | 支持应用下架 17 |
18 |
19 |
20 | -------------------------------------------------------------------------------- /paas-ce/paasagent/etc/build/packages/requirements.txt: -------------------------------------------------------------------------------- 1 | Django==1.8.11 2 | PyMySQL==0.6.7 3 | requests==2.21.0 4 | celery==3.1.18 5 | kombu==3.0.35 6 | django-celery==3.2.1 7 | redis==2.10.5 8 | httplib2==0.9.1 9 | xlrd==1.0.0 10 | xlwt==1.1.2 11 | Mako==1.0.4 12 | Jinja2==2.8 13 | MarkupSafe==0.23 14 | meld3==1.0.2 15 | pbr==1.10.0 16 | pycrypto==2.6.1 17 | pytz==2016.6.1 18 | gunicorn==19.6.0 19 | six==1.10.0 20 | SQLAlchemy==1.0.12 21 | stevedore==1.17.1 22 | suds==0.4 23 | urllib3==1.24.1 24 | amqp==1.4.9 25 | anyjson==0.3.3 26 | billiard==3.3.0.23 27 | pytest-runner==2.8 28 | setuptools_scm==1.11.1 29 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/fsnotify/fsnotify/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | 4 | go: 5 | - 1.8.x 6 | - 1.9.x 7 | - tip 8 | 9 | matrix: 10 | allow_failures: 11 | - go: tip 12 | fast_finish: true 13 | 14 | before_script: 15 | - go get -u github.com/golang/lint/golint 16 | 17 | script: 18 | - go test -v --race ./... 19 | 20 | after_script: 21 | - test -z "$(gofmt -s -l -w . | tee /dev/stderr)" 22 | - test -z "$(golint ./... | tee /dev/stderr)" 23 | - go vet ./... 24 | 25 | os: 26 | - linux 27 | - osx 28 | 29 | notifications: 30 | email: false 31 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/mattn/go-isatty/README.md: -------------------------------------------------------------------------------- 1 | # go-isatty 2 | 3 | isatty for golang 4 | 5 | ## Usage 6 | 7 | ```go 8 | package main 9 | 10 | import ( 11 | "fmt" 12 | "github.com/mattn/go-isatty" 13 | "os" 14 | ) 15 | 16 | func main() { 17 | if isatty.IsTerminal(os.Stdout.Fd()) { 18 | fmt.Println("Is Terminal") 19 | } else { 20 | fmt.Println("Is Not Terminal") 21 | } 22 | } 23 | ``` 24 | 25 | ## Installation 26 | 27 | ``` 28 | $ go get github.com/mattn/go-isatty 29 | ``` 30 | 31 | # License 32 | 33 | MIT 34 | 35 | # Author 36 | 37 | Yasuhiro Matsumoto (a.k.a mattn) 38 | -------------------------------------------------------------------------------- /paas-ce/paasagent/etc/paas_agent_config.yaml: -------------------------------------------------------------------------------- 1 | auth: 2 | sid: bdb209f0-747a-4011-9c8b-9e10b2aceace # agent sid 3 | token: 41ea9d39-8c01-46e4-b7cd-62651fb5b018 # agent token 4 | settings: 5 | CONTROLLER_SERVER_URL: 'http://www.bking.com' # App Engine地址 6 | BASE_PATH: 'TPL_AGENT_ROOT' # eg. /data/paas 7 | BASE_APP_PATH: 'TPL_AGENT_ROOT/paas_agent' 8 | USE_PYPI: 'true' 9 | AGENT_LOG_PATH: 'TPL_AGENT_ROOT/logs/agent.log' 10 | TEMPLATE_PATH: 'etc/templates' 11 | BUILD_PATH: 'etc/build' 12 | EXECUTE_TIME_LIMIT: 300 13 | PYTHON_PIP: 'http://pypi.douban.com/simple/' 14 | port: 4245 15 | ip: '' 16 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/css/dashboard.css: -------------------------------------------------------------------------------- 1 | /* DASHBOARD */ 2 | 3 | .dashboard .module table th { 4 | width: 100%; 5 | } 6 | 7 | .dashboard .module table td { 8 | white-space: nowrap; 9 | } 10 | 11 | .dashboard .module table td a { 12 | display: block; 13 | padding-right: .6em; 14 | } 15 | 16 | /* RECENT ACTIONS MODULE */ 17 | 18 | .module ul.actionlist { 19 | margin-left: 0; 20 | } 21 | 22 | ul.actionlist li { 23 | list-style-type: none; 24 | } 25 | 26 | ul.actionlist li { 27 | overflow: hidden; 28 | text-overflow: ellipsis; 29 | -o-text-overflow: ellipsis; 30 | } 31 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/spf13/viper/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/spf13/viper 2 | 3 | require ( 4 | github.com/fsnotify/fsnotify v1.4.7 5 | github.com/hashicorp/hcl v1.0.0 6 | github.com/magiconair/properties v1.8.0 7 | github.com/mitchellh/mapstructure v1.0.0 8 | github.com/pelletier/go-toml v1.2.0 9 | github.com/spf13/afero v1.1.2 10 | github.com/spf13/cast v1.2.0 11 | github.com/spf13/jwalterweatherman v1.0.0 12 | github.com/spf13/pflag v1.0.2 13 | golang.org/x/sys v0.0.0-20180906133057-8cf3aee42992 // indirect 14 | golang.org/x/text v0.3.0 // indirect 15 | gopkg.in/yaml.v2 v2.2.1 16 | ) 17 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/syscall_linux_gc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build linux,!gccgo 6 | 7 | package unix 8 | 9 | // SyscallNoError may be used instead of Syscall for syscalls that don't fail. 10 | func SyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) 11 | 12 | // RawSyscallNoError may be used instead of RawSyscall for syscalls that don't 13 | // fail. 14 | func RawSyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) 15 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/text/language/gen_common.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build ignore 6 | 7 | package main 8 | 9 | // This file contains code common to the maketables.go and the package code. 10 | 11 | // langAliasType is the type of an alias in langAliasMap. 12 | type langAliasType int8 13 | 14 | const ( 15 | langDeprecated langAliasType = iota 16 | langMacro 17 | langLegacy 18 | 19 | langAliasTypeUnknown langAliasType = -1 20 | ) 21 | -------------------------------------------------------------------------------- /paas-ce/paas/login/Makefile: -------------------------------------------------------------------------------- 1 | i18n_all: i18n_tpl i18n_js i18n_mo 2 | 3 | # make messages of python file and django template file to django.po 4 | i18n_tpl: 5 | django-admin.py makemessages -d django -l en -e html,part -e py 6 | django-admin.py makemessages -d django -l zh_Hans -e html,part -e py 7 | 8 | # make messages of javascript file and django template file to djangojs.po 9 | i18n_js: 10 | django-admin.py makemessages -d djangojs -l en 11 | django-admin.py makemessages -d djangojs -l zh_Hans 12 | 13 | # compile django.po and djangojs.po to django.mo and djangojs.mo 14 | i18n_mo: 15 | django-admin.py compilemessages 16 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/README.md: -------------------------------------------------------------------------------- 1 | # 蓝鲸智云 PaaS 平台社区版之开发者中心&web工作台 2 | 3 | ## 简介 4 | 5 | paas目录是蓝鲸智云PaaS平台社区版中的开发者中心及web工作台部分的源码目录 6 | 7 | 主要作用: 8 | - 为SaaS应用使用者提供访问SaaS应用入口 9 | - 为SaaS应用开发者提供开发及管理SaaS应用的功能 10 | - 为平台管理员提供用户管理入口 11 | 12 | 由web工作台和开发者中心两部分组成: 13 | 14 | - web工作台: 已发布SaaS的应用列表, 作为统一的入口, 并且包含一系列常用链接等, 同时管理员可以进行用户管理 15 | - 开发者中心: 包含SaaS应用创建/部署/下架等功能入口, 同时可以对服务器信息/第三方服务信息等进行管理, 同时包含SaaS开发必须的文档及资源下载入口 16 | 17 | ## 技术栈 18 | 19 | - framework: Django 1.8.11 20 | - template: mako 21 | - database: mysql 22 | 23 | ## 依赖说明 24 | 25 | - mysql: 平台数据库 26 | - appengine: 需要调用appengine接口, 进行应用部署、下架等操作 27 | - login: 调用统一登录服务接口, 判定用户登录态 28 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/labstack/echo/.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig coding styles definitions. For more information about the 2 | # properties used in this file, please see the EditorConfig documentation: 3 | # http://editorconfig.org/ 4 | 5 | # indicate this is the root of the project 6 | root = true 7 | 8 | [*] 9 | charset = utf-8 10 | 11 | end_of_line = LF 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | 15 | indent_style = space 16 | indent_size = 4 17 | 18 | [Makefile] 19 | indent_style = tab 20 | 21 | [*.md] 22 | trim_trailing_whitespace = false 23 | 24 | [*.go] 25 | indent_style = tab 26 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/delete_object.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 删除模型 4 | 5 | ### 请求参数 6 | 7 | {{ common_args_desc }} 8 | 9 | #### 接口参数 10 | 11 | | 字段 | 类型 | 必选 | 描述 | 12 | |-------|-------------|--------|-----------------------| 13 | | id | int | 否 | 被删除的数据记录的ID | 14 | 15 | 16 | ### 请求参数示例 17 | 18 | ```python 19 | 20 | { 21 | "delete":{ 22 | "id" : 0 23 | } 24 | } 25 | ``` 26 | 27 | 28 | ### 返回结果示例 29 | 30 | ```python 31 | 32 | { 33 | "result": true, 34 | "code": 0, 35 | "message": "", 36 | "data": "success" 37 | } 38 | ``` 39 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- 1 | Copyright 2011-2016 Canonical Ltd. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/delete_object_attribute.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 删除对象模型属性 4 | 5 | ### 请求参数 6 | 7 | {{ common_args_desc }} 8 | 9 | #### 接口参数 10 | 11 | | 字段 | 类型 | 必选 | 描述 | 12 | |-------|-------------|--------|-------------------------------| 13 | | id | int | 否 | 被删除的数据记录的唯一标识ID | 14 | 15 | 16 | ### 请求参数示例 17 | 18 | ```python 19 | 20 | { 21 | "delete":{ 22 | "id" : 0 23 | } 24 | } 25 | ``` 26 | 27 | 28 | ### 返回结果示例 29 | 30 | ```python 31 | 32 | { 33 | "result": true, 34 | "code": 0, 35 | "message": "", 36 | "data": "success" 37 | } 38 | ``` 39 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/pelletier/go-toml/fuzz.go: -------------------------------------------------------------------------------- 1 | // +build gofuzz 2 | 3 | package toml 4 | 5 | func Fuzz(data []byte) int { 6 | tree, err := LoadBytes(data) 7 | if err != nil { 8 | if tree != nil { 9 | panic("tree must be nil if there is an error") 10 | } 11 | return 0 12 | } 13 | 14 | str, err := tree.ToTomlString() 15 | if err != nil { 16 | if str != "" { 17 | panic(`str must be "" if there is an error`) 18 | } 19 | panic(err) 20 | } 21 | 22 | tree, err = Load(str) 23 | if err != nil { 24 | if tree != nil { 25 | panic("tree must be nil if there is an error") 26 | } 27 | return 0 28 | } 29 | 30 | return 1 31 | } 32 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build aix darwin,!race linux,!race freebsd,!race netbsd openbsd solaris dragonfly 6 | 7 | package unix 8 | 9 | import ( 10 | "unsafe" 11 | ) 12 | 13 | const raceenabled = false 14 | 15 | func raceAcquire(addr unsafe.Pointer) { 16 | } 17 | 18 | func raceReleaseMerge(addr unsafe.Pointer) { 19 | } 20 | 21 | func raceReadRange(addr unsafe.Pointer, len int) { 22 | } 23 | 24 | func raceWriteRange(addr unsafe.Pointer, len int) { 25 | } 26 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2009 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build amd64,solaris 6 | 7 | package unix 8 | 9 | func setTimespec(sec, nsec int64) Timespec { 10 | return Timespec{Sec: sec, Nsec: nsec} 11 | } 12 | 13 | func setTimeval(sec, usec int64) Timeval { 14 | return Timeval{Sec: sec, Usec: usec} 15 | } 16 | 17 | func (iov *Iovec) SetLen(length int) { 18 | iov.Len = uint64(length) 19 | } 20 | 21 | func (cmsg *Cmsghdr) SetLen(length int) { 22 | cmsg.Len = uint32(length) 23 | } 24 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/delete_classification.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 删除模型分类 4 | 5 | ### 请求参数 6 | 7 | {{ common_args_desc }} 8 | 9 | #### 接口参数 10 | 11 | | 字段 | 类型 | 必选 | 描述 | 12 | |-------|-------------|--------|----------------------------------| 13 | |id | int | 是 | 分类数据记录ID | 14 | 15 | 16 | ### 请求参数示例 17 | 18 | ```python 19 | 20 | { 21 | "delete":{ 22 | "id" : 0 23 | } 24 | } 25 | ``` 26 | 27 | 28 | ### 返回结果示例 29 | 30 | ```python 31 | 32 | { 33 | "result": true, 34 | "code": 0, 35 | "message": "", 36 | "data": "success" 37 | } 38 | ``` 39 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/batch_delete_set.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 批量删除集群 4 | 5 | ### 请求参数 6 | 7 | {{ common_args_desc }} 8 | 9 | #### 接口参数 10 | 11 | | 字段 | 类型 | 必选 | 描述 | 12 | |-----------|------------|--------|------------| 13 | | bk_biz_id | int | 是 | 业务ID | 14 | | inst_ids | int array | 是 | 集群ID集合 | 15 | 16 | ### 请求参数示例 17 | 18 | ```python 19 | { 20 | "bk_biz_id":0, 21 | "delete": { 22 | "inst_ids": [123] 23 | } 24 | } 25 | ``` 26 | 27 | ### 返回结果示例 28 | 29 | ```python 30 | 31 | { 32 | "result": true, 33 | "code": 0, 34 | "message": "", 35 | "data": "success" 36 | } 37 | ``` 38 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/admin/js/collapse.min.js: -------------------------------------------------------------------------------- 1 | (function(a){a(document).ready(function(){a("fieldset.collapse").each(function(c,b){a(b).find("div.errors").length==0&&a(b).addClass("collapsed").find("h2").first().append(' ('+gettext("Show")+")")});a("fieldset.collapse a.collapse-toggle").click(function(){a(this).closest("fieldset").hasClass("collapsed")?a(this).text(gettext("Hide")).closest("fieldset").removeClass("collapsed").trigger("show.fieldset",[a(this).attr("id")]):a(this).text(gettext("Show")).closest("fieldset").addClass("collapsed").trigger("hide.fieldset", 2 | [a(this).attr("id")]);return false})})})(django.jQuery); 3 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/unsubcribe_event.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 退订事件 4 | 5 | ### 请求参数 6 | 7 | {{ common_args_desc }} 8 | 9 | #### 接口参数 10 | 11 | | 字段 | 类型 | 必选 | 描述 | 12 | |--------------------|------------|--------|------------| 13 | |bk_supplier_account | string | 是 | 开发商账号 | 14 | |subscription_id | int | 是 | 订阅ID | 15 | 16 | ### 请求参数示例 17 | 18 | ```python 19 | { 20 | "bk_supplier_account":"0", 21 | "subscription_id":1 22 | } 23 | ``` 24 | 25 | ### 返回结果示例 26 | 27 | ```python 28 | 29 | { 30 | "result": true, 31 | "code": 0, 32 | "message": "", 33 | "data":"success" 34 | } 35 | ``` 36 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/static/doc/vendor/prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build linux,!gccgo,386 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | // Underlying system call writes to newoffset via pointer. 12 | // Implemented in assembly to avoid allocation. 13 | func seek(fd int, offset int64, whence int) (newoffset int64, err syscall.Errno) 14 | 15 | func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err syscall.Errno) 16 | func rawsocketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err syscall.Errno) 17 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/403.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 您没有访问权限(403页) 6 | 7 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |

您没有访问权限,请联系系统管理员添加

20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- 1 | package hcl 2 | 3 | import ( 4 | "unicode" 5 | "unicode/utf8" 6 | ) 7 | 8 | type lexModeValue byte 9 | 10 | const ( 11 | lexModeUnknown lexModeValue = iota 12 | lexModeHcl 13 | lexModeJson 14 | ) 15 | 16 | // lexMode returns whether we're going to be parsing in JSON 17 | // mode or HCL mode. 18 | func lexMode(v []byte) lexModeValue { 19 | var ( 20 | r rune 21 | w int 22 | offset int 23 | ) 24 | 25 | for { 26 | r, w = utf8.DecodeRune(v[offset:]) 27 | offset += w 28 | if unicode.IsSpace(r) { 29 | continue 30 | } 31 | if r == '{' { 32 | return lexModeJson 33 | } 34 | break 35 | } 36 | 37 | return lexModeHcl 38 | } 39 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/user_center/weixin_bind_error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 绑定失败 6 | 7 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |

{{error_message}}

20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/500.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 系统异常(500页) 6 | 7 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |

系统出现异常

20 |

努力恢复中,请稍后再试......

21 |
22 | 23 | 24 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/add_host_lock.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 新加主机锁,如果主机已经加过锁,同样提示加锁成功 4 | 5 | ### 请求参数 6 | 7 | {{ common_args_desc }} 8 | 9 | #### 接口参数 10 | 11 | | 字段 | 类型 | 必选 | 描述 | 12 | |---------------------|-------------|--------|----------------------------------| 13 | |ip_list| string array| 是|无| 主机内网IP| 14 | | bk_cloud_id| int| 否| 0|云区域ID 15 | 16 | 17 | ### 请求参数示例 18 | 19 | ```python 20 | { 21 | "ip_list":["127.0.0.1"], 22 | "bk_cloud_id":0 23 | } 24 | ``` 25 | 26 | ### 返回结果示例 27 | 28 | ```python 29 | 30 | { 31 | "result": true, 32 | "bk_error_code": 0, 33 | "bk_error_msg": "success", 34 | "data": null 35 | } 36 | ``` 37 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/bind_process_module.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 绑定进程到模块 4 | ### 请求参数 5 | 6 | {{ common_args_desc }} 7 | 8 | #### 接口参数 9 | 10 | | 字段 | 类型 | 必选 | 描述 | 11 | |------------|----------|--------|---------------| 12 | | bk_supplier_account | string | 是 | 开发商ID | 13 | | bk_biz_id | int | 是 | 业务ID | 14 | | bk_process_id | int | 是 | 进程ID | 15 | | bk_module_name | string | 是 | 模块名 | 16 | 17 | 18 | 19 | 20 | ### 请求参数示例 21 | 22 | ```python 23 | 24 | ``` 25 | 26 | 27 | ### 返回结果示例 28 | 29 | ```python 30 | 31 | { 32 | "result":true, 33 | "bk_error_code":0, 34 | "bk_error_msg":"", 35 | "data":"success" 36 | } 37 | ``` 38 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/delete_process_module_bind.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 解绑进程模块 4 | 5 | ### 请求参数 6 | 7 | {{ common_args_desc }} 8 | 9 | #### 接口参数 10 | 11 | | 字段 | 类型 | 必选 | 描述 | 12 | |-------|-------------|--------|-----------------------| 13 | | bk_supplier_account | string | 是 | 开发商ID | 14 | | bk_biz_id | int | 是 | 业务ID | 15 | | bk_process_id | int | 是 | 进程ID | 16 | | bk_module_name | string | 是 | 模块名 | 17 | 18 | 19 | ### 请求参数示例 20 | 21 | ```python 22 | 23 | ``` 24 | 25 | 26 | ### 返回结果示例 27 | 28 | ```python 29 | 30 | { 31 | "result": true, 32 | "code": 0, 33 | "message": "", 34 | "data": "success" 35 | } 36 | ``` 37 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go: -------------------------------------------------------------------------------- 1 | // Copyright 2018 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build linux,gccgo,arm 6 | 7 | package unix 8 | 9 | import ( 10 | "syscall" 11 | "unsafe" 12 | ) 13 | 14 | func seek(fd int, offset int64, whence int) (int64, syscall.Errno) { 15 | var newoffset int64 16 | offsetLow := uint32(offset & 0xffffffff) 17 | offsetHigh := uint32((offset >> 32) & 0xffffffff) 18 | _, _, err := Syscall6(SYS__LLSEEK, uintptr(fd), uintptr(offsetHigh), uintptr(offsetLow), uintptr(unsafe.Pointer(&newoffset)), uintptr(whence), 0) 19 | return newoffset, err 20 | } 21 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris 6 | // +build !gccgo,!ppc64le,!ppc64 7 | 8 | package unix 9 | 10 | import "syscall" 11 | 12 | func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) 13 | func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno) 14 | func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) 15 | func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno) 16 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/delete_host_lock.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 新加主机锁,如果主机已经加过锁,同样提示加锁成功 4 | 5 | ### 请求参数 6 | 7 | {{ common_args_desc }} 8 | 9 | #### 接口参数 10 | 11 | | 字段 | 类型 | 必选 | 描述 | 12 | |---------------------|-------------|--------|----------------------------------| 13 | |ip_list| string array| 是|无| 主机内网IP| 14 | | bk_cloud_id| int| 否| 0|云区域ID 15 | 16 | 17 | ### 请求参数示例 18 | 19 | ```python 20 | { 21 | "ip_list":["127.0.0.1"], 22 | "bk_cloud_id":0 23 | } 24 | ``` 25 | 26 | ### 返回结果示例 27 | 28 | ```python 29 | 30 | { 31 | "result": true, 32 | "bk_error_code": 0, 33 | "bk_error_msg": "success", 34 | "data": null 35 | } 36 | ``` 37 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 页面找不到(404页) 6 | 7 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |

页面找不到了

20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/50x.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 服务故障,努力修复中... 6 | 7 | 13 | 14 | 15 | 16 |
17 | 18 |

服务故障,努力修复中...

19 |

服务出现故障,我们正在紧急修复,给您带来不便,敬请谅解。

20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/labstack/echo/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.6 4 | - 1.7 5 | - tip 6 | before_install: 7 | - go get github.com/modocache/gover 8 | - go get github.com/mattn/goveralls 9 | - go get golang.org/x/tools/cmd/cover 10 | script: 11 | - go test -coverprofile=echo.coverprofile 12 | - go test -coverprofile=middleware.coverprofile ./middleware 13 | - go test -coverprofile=engine_standatd.coverprofile ./engine/standard 14 | - go test -coverprofile=engine_fasthttp.coverprofile ./engine/fasthttp 15 | - $HOME/gopath/bin/gover 16 | - $HOME/gopath/bin/goveralls -coverprofile=gover.coverprofile -service=travis-ci 17 | matrix: 18 | allow_failures: 19 | - go: tip 20 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- 1 | // Copyright 2009 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build aix darwin dragonfly freebsd linux nacl netbsd openbsd solaris 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | // ParseDirent parses up to max directory entries in buf, 12 | // appending the names to names. It returns the number of 13 | // bytes consumed from buf, the number of entries added 14 | // to names, and the new names slice. 15 | func ParseDirent(buf []byte, max int, names []string) (consumed int, count int, newnames []string) { 16 | return syscall.ParseDirent(buf, max, names) 17 | } 18 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/apps/manager/templates/manager/buffet_comp/base.html: -------------------------------------------------------------------------------- 1 | {% extends "manager/base.html" %} 2 | {% load i18n %} 3 | 4 | {% block container %} 5 | 10 | 11 |
12 |
13 | {% trans "自助接入" %} 14 | 15 | 16 | 17 |
18 | 19 | {% block main %} 20 | {% endblock %} 21 | 22 |
23 | 24 | {% endblock %} 25 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/en/delete_object.md: -------------------------------------------------------------------------------- 1 | ### Functional description 2 | 3 | delete object 4 | 5 | ### Request Parameters 6 | 7 | {{ common_args_desc }} 8 | 9 | #### General Parameters 10 | 11 | | Field | Type | Required | Description | 12 | |-------|-------------|--------|-----------------------| 13 | | id | int | No | ID of the deleted data record | 14 | 15 | 16 | ### Request Parameters Example 17 | 18 | ```python 19 | 20 | { 21 | "delete":{ 22 | "id" : 0 23 | } 24 | } 25 | ``` 26 | 27 | ### Return Result Example 28 | 29 | ```python 30 | 31 | { 32 | "result": true, 33 | "code": 0, 34 | "message": "", 35 | "data": "success" 36 | } 37 | ``` 38 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/testing_connection.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 测试推送(只测试连通性) 4 | 5 | ### 请求参数 6 | 7 | {{ common_args_desc }} 8 | 9 | #### 接口参数 10 | 11 | | 字段 | 类型 | 必选 | 描述 | 12 | |---------------------|------------|----------|--------------------------------------| 13 | | callback_url | string | 回调方法 | The callback URL | 14 | 15 | ### 请求参数示例 16 | 17 | ```python 18 | { 19 | "callback_url":"127.0.0.1:8080/callback", 20 | "data":{ 21 | 22 | } 23 | } 24 | ``` 25 | 26 | ### 返回结果示例 27 | 28 | ```python 29 | 30 | { 31 | "result": true, 32 | "code": 0, 33 | "message": "", 34 | "data": "success" 35 | } 36 | ``` 37 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/delete_user_group.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 删除用户分组 4 | 5 | ### 请求参数 6 | 7 | {{ common_args_desc }} 8 | 9 | #### 接口参数 10 | 11 | | 字段 | 类型 | 必选 | 描述 | 12 | |---------------------|-------------|--------|-------------| 13 | | bk_supplier_account | string | 是 | 开发商账号 | 14 | | group_id | string | 是 | 分组ID | 15 | 16 | 17 | ### 请求参数示例 18 | 19 | ```python 20 | 21 | { 22 | "bk_supplier_account": "0", 23 | "delete":{ 24 | "group_id": "test" 25 | } 26 | } 27 | ``` 28 | 29 | 30 | ### 返回结果示例 31 | 32 | ```python 33 | 34 | { 35 | "result": true, 36 | "code": 0, 37 | "message": "", 38 | "data":"" 39 | } 40 | ``` 41 | -------------------------------------------------------------------------------- /paas-ce/paas/login/templates/403.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | 3 | 4 | 5 | 6 | {% trans '您没有访问权限(403页)' %} 7 | 8 | 14 | 15 | 16 | 17 | 18 |
19 | 20 |

{% trans '您没有访问权限,请联系系统管理员添加' %}

21 |
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/delete_instance_association.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 删除模型实例之间的关联关系。 4 | 5 | ### 请求参数 6 | 7 | {{ common_args_desc }} 8 | 9 | #### 接口参数 10 | | 字段 | 类型 | 必填 | 描述 | 11 | |----------------------|------------|--------|-----------------------------| 12 | | id | int64 | Yes | 模型实例关联关系的唯一身份id | 13 | 14 | ### 请求参数示例 15 | 16 | ``` json 17 | 18 | ``` 19 | 20 | ### 返回结果示例 21 | 22 | ```json 23 | { 24 | "result": true, 25 | "code": 0, 26 | "message": "", 27 | "data": "success" 28 | } 29 | 30 | ``` 31 | 32 | ### 返回结果参数说明 33 | 34 | #### data 35 | 36 | | 字段 | 类型 | 描述 | 37 | |------------|----------|--------------| 38 | 39 | 40 | -------------------------------------------------------------------------------- /paas-ce/paas/examples/build/LICENSE_JSCSS_HEADER: -------------------------------------------------------------------------------- 1 | /** 2 | * Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 3 | * Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 4 | * Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 5 | * http://opensource.org/licenses/MIT 6 | * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 7 | */ 8 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/pelletier/go-toml/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: go 3 | go: 4 | - 1.8.x 5 | - 1.9.x 6 | - 1.10.x 7 | - tip 8 | matrix: 9 | allow_failures: 10 | - go: tip 11 | fast_finish: true 12 | script: 13 | - if [ -n "$(go fmt ./...)" ]; then exit 1; fi 14 | - ./test.sh 15 | - ./benchmark.sh $TRAVIS_BRANCH https://github.com/$TRAVIS_REPO_SLUG.git 16 | before_install: 17 | - go get github.com/axw/gocov/gocov 18 | - go get github.com/mattn/goveralls 19 | - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi 20 | branches: 21 | only: [master] 22 | after_success: 23 | - $HOME/gopath/bin/goveralls -service=travis-ci -coverprofile=coverage.out -repotoken $COVERALLS_TOKEN 24 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/confapis/cc/apidocs/zh_hans/transfer_sethost_to_idle_module.md: -------------------------------------------------------------------------------- 1 | ### 功能描述 2 | 3 | 上交主机到业务的空闲机模块 4 | 5 | ### 请求参数 6 | 7 | {{ common_args_desc }} 8 | 9 | #### 接口参数 10 | 11 | | 字段 | 类型 | 必选 | 描述 | 12 | |---------------|------------|----------|----------| 13 | | bk_biz_id | int | 是 | 业务id | 14 | | bk_set_id | int | 是 | 集群id | 15 | | bk_module_id | int | 是 | 模块id | 16 | 17 | 18 | ### 请求参数示例 19 | 20 | ```python 21 | { 22 | "bk_biz_id":10, 23 | "bk_module_id":58, 24 | "bk_set_id":1 25 | } 26 | ``` 27 | 28 | ### 返回结果示例 29 | 30 | ```python 31 | 32 | { 33 | "result": true, 34 | "code": 0, 35 | "message": "", 36 | "data": "sucess" 37 | } 38 | ``` 39 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/lib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/login/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/mainsite/templates/mainsite/footer.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | 13 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/github.com/mitchellh/mapstructure/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.1.2 2 | 3 | * Fix error when decode hook decodes interface implementation into interface 4 | type. [GH-140] 5 | 6 | ## 1.1.1 7 | 8 | * Fix panic that can happen in `decodePtr` 9 | 10 | ## 1.1.0 11 | 12 | * Added `StringToIPHookFunc` to convert `string` to `net.IP` and `net.IPNet` [GH-133] 13 | * Support struct to struct decoding [GH-137] 14 | * If source map value is nil, then destination map value is nil (instead of empty) 15 | * If source slice value is nil, then destination slice value is nil (instead of empty) 16 | * If source pointer is nil, then destination pointer is set to nil (instead of 17 | allocated zero value of type) 18 | 19 | ## 1.0.0 20 | 21 | * Initial tagged stable release. 22 | -------------------------------------------------------------------------------- /paas-ce/paasagent/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- 1 | // Copyright 2009 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build aix darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | package unix 8 | 9 | func itoa(val int) string { // do it here rather than with fmt to avoid dependency 10 | if val < 0 { 11 | return "-" + uitoa(uint(-val)) 12 | } 13 | return uitoa(uint(val)) 14 | } 15 | 16 | func uitoa(val uint) string { 17 | var buf [32]byte // big enough for int64 18 | i := len(buf) - 1 19 | for val >= 10 { 20 | buf[i] = byte(val%10 + '0') 21 | i-- 22 | val /= 10 23 | } 24 | buf[i] = byte(val + '0') 25 | return string(buf[i:]) 26 | } 27 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/apps/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/common/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/configs/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/esb/exdb/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/healthz/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/login/common/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/login/conf/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/login/templates/404.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | 3 | 4 | 5 | 6 | {% trans '页面找不到(404页)' %} 7 | 8 | 14 | 15 | 16 | 17 | 18 |
19 | 20 |

{% trans '页面找不到了' %}

21 |
22 | 23 | 24 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/account/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/api/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/app_env/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/bk_app/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/common/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/conf/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/engine/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/esb/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/guide/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/guide/models.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/healthz/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/home/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/release/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/saas/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/templates/401.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 未登录蓝鲸智云平台(401页) 6 | 7 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |

您需要登录蓝鲸智云

20 | 立即登录 21 |
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /paas-ce/paas/appengine/api/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/appengine/common/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/components/bk/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/esb/bkapp/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/esb/bkauth/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/esb/bkcore/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/esb/bkperm/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/esb/compperm/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/esb/esb/ratelimit/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/login/bkaccount/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/login/ee_login/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/login/healthz/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | -------------------------------------------------------------------------------- /paas-ce/paas/login/templates/500.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | 3 | 4 | 5 | 6 | {% trans '系统异常(500页)' %} 7 | 8 | 14 | 15 | 16 | 17 | 18 |
19 | 20 |

{% trans '系统出现异常' %}

21 |

{% trans '努力恢复中,请稍后再试......' %}

22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /paas-ce/paas/paas/common/views/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | Tencent is pleased to support the open source community by making 蓝鲸智云PaaS平台社区版 (BlueKing PaaS Community Edition) available. 4 | Copyright (C) 2017-2018 THL A29 Limited, a Tencent company. All rights reserved. 5 | Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at 6 | http://opensource.org/licenses/MIT 7 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 8 | """ # noqa 9 | --------------------------------------------------------------------------------