├── common ├── __init__.py ├── util │ ├── __init__.py │ ├── json_date_encoder.py │ ├── view_url_path.py │ ├── ip_tool.py │ └── decorator_tool.py └── model_choices_field_value │ ├── __init__.py │ ├── field_dbmp_inception_database.py │ ├── field_dbmp_inception_business_detail.py │ ├── field_dbmp_inception_business.py │ ├── field_dbmp_mysql_instance.py │ ├── field_dbmp_inception_record.py │ ├── field_dbmp_mysql_backup_instance.py │ └── field_dbmp_mysql_backup_info.py ├── dbmp ├── __init__.py ├── models │ ├── __init__.py │ ├── dbmp_mysql_ha_group.py │ ├── dbmp_mysql_business.py │ ├── dbmp_mysql_business_detail.py │ ├── dbmp_mysql_database.py │ ├── dbmp_inception_instance.py │ ├── dbmp_mysql_ha_group_detail.py │ ├── dbmp_mysql_backup_remote.py │ ├── dbmp_mysql_instance_info.py │ ├── cmdb_os.py │ ├── dbmp_inception_record.py │ ├── dbmp_inception_database.py │ ├── dbmp_inception_business.py │ ├── dbmp_mysql_instance.py │ ├── dbmp_inception_business_detail.py │ ├── dbmp_mysql_backup_instance.py │ └── dbmp_mysql_backup_info.py ├── views │ ├── __init__.py │ ├── forms │ │ ├── __init__.py │ │ ├── form_dbmp_mysql_business.py │ │ └── form_dbmp_mysql_instance.py │ ├── sql_handler │ │ ├── __init__.py │ │ ├── s_dbmp_mysql_business_detail.py │ │ └── s_dbmp_inception_business.py │ └── v_dbmp_inception_instance.py ├── migrations │ └── __init__.py ├── templatetags │ ├── __init__.py │ ├── ip_filters.py │ ├── filters_dbmp_mysql_instance.py │ ├── filters_dbmp_inception_database.py │ ├── filters_dbmp_inception_business.py │ ├── filters_dbmp_inception_business_detail.py │ ├── filters_dbmp_inception_record.py │ └── filters_dbmp_mysql_backup_instance.py ├── admin.py ├── tests.py └── templates │ ├── dbmp_mysql_business │ └── view.html │ └── dbmp_mysql_business_detail │ └── view.html ├── logs └── default.log ├── archer_dbmp ├── __init__.py ├── wsgi.py └── urls.py ├── static ├── README.md ├── favicon.ico ├── img │ ├── a1.jpg │ ├── a2.jpg │ ├── a3.jpg │ ├── a4.jpg │ ├── a5.jpg │ ├── a6.jpg │ ├── a7.jpg │ ├── a8.jpg │ ├── a9.jpg │ ├── bg.png │ ├── p1.jpg │ ├── p2.jpg │ ├── p3.jpg │ ├── pay.png │ ├── user.png │ ├── icons.png │ ├── index.jpg │ ├── locked.png │ ├── p_big1.jpg │ ├── p_big2.jpg │ ├── p_big3.jpg │ ├── index_4.jpg │ ├── loading.gif │ ├── profile.jpg │ ├── progress.png │ ├── qr_code.png │ ├── success.png │ ├── profile_big.jpg │ ├── wenku_logo.png │ ├── iconfont-logo.png │ ├── loading-upload.gif │ ├── profile_small.jpg │ └── login-background.jpg ├── css │ ├── patterns │ │ ├── shattered.png │ │ ├── header-profile.png │ │ ├── header-profile-skin-1.png │ │ └── header-profile-skin-3.png │ ├── plugins │ │ ├── iCheck │ │ │ ├── green.png │ │ │ ├── green@2x.png │ │ │ └── custom.css │ │ ├── images │ │ │ ├── sort_asc.png │ │ │ ├── sort_desc.png │ │ │ ├── spritemap.png │ │ │ ├── spritemap@2x.png │ │ │ └── sprite-skin-flat.png │ │ ├── blueimp │ │ │ └── img │ │ │ │ ├── error.png │ │ │ │ ├── loading.gif │ │ │ │ ├── play-pause.png │ │ │ │ ├── video-play.png │ │ │ │ ├── video-play.svg │ │ │ │ ├── error.svg │ │ │ │ └── play-pause.svg │ │ ├── chosen │ │ │ ├── chosen-sprite.png │ │ │ └── chosen-sprite@2x.png │ │ ├── footable │ │ │ └── fonts │ │ │ │ ├── footable.eot │ │ │ │ ├── footable.ttf │ │ │ │ ├── footable.woff │ │ │ │ └── footabled41d.eot │ │ ├── colorpicker │ │ │ ├── img │ │ │ │ └── bootstrap-colorpicker │ │ │ │ │ ├── hue.png │ │ │ │ │ ├── alpha.png │ │ │ │ │ ├── saturation.png │ │ │ │ │ ├── hue-horizontal.png │ │ │ │ │ └── alpha-horizontal.png │ │ │ └── css │ │ │ │ └── bootstrap-colorpicker.min.css │ │ ├── morris │ │ │ └── morris-0.4.3.min.css │ │ ├── webuploader │ │ │ └── webuploader.css │ │ ├── bootstrapvalidator │ │ │ └── bootstrapValidator.min.css │ │ ├── switchery │ │ │ └── switchery.css │ │ ├── fullcalendar │ │ │ └── fullcalendar.print.css │ │ ├── treeview │ │ │ └── bootstrap-treeview.css │ │ ├── ionRangeSlider │ │ │ └── ion.rangeSlider.skinFlat.css │ │ ├── markdown │ │ │ └── bootstrap-markdown.min.css │ │ └── cropper │ │ │ └── cropper.min.css │ ├── login.min.css │ └── bootstrap-duallistbox.css ├── js │ ├── plugins │ │ ├── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancybox_sprite.png │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_overlay.png │ │ │ ├── fancybox_sprite@2x.png │ │ │ └── fancybox_loading@2x.gif │ │ ├── layer │ │ │ ├── layim │ │ │ │ └── loading.gif │ │ │ ├── laydate-v1.1 │ │ │ │ ├── 更新日志.txt │ │ │ │ ├── laydate │ │ │ │ │ └── skins │ │ │ │ │ │ ├── molv │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── laydate.css │ │ │ │ │ │ ├── dahong │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── laydate.css │ │ │ │ │ │ └── default │ │ │ │ │ │ └── icon.png │ │ │ │ ├── layDate官网.url │ │ │ │ └── demo.html │ │ │ ├── skin │ │ │ │ └── default │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ └── loading-2.gif │ │ │ └── laydate │ │ │ │ └── skins │ │ │ │ ├── molv │ │ │ │ ├── icon.png │ │ │ │ └── laydate.css │ │ │ │ ├── dahong │ │ │ │ ├── icon.png │ │ │ │ └── laydate.css │ │ │ │ └── default │ │ │ │ ├── icon.png │ │ │ │ └── laydate.css │ │ ├── gritter │ │ │ ├── images │ │ │ │ ├── gritter.png │ │ │ │ ├── ie-spacer.gif │ │ │ │ └── gritter-light.png │ │ │ └── jquery.gritter.css │ │ ├── webuploader │ │ │ └── index.html │ │ ├── bootstrap-table │ │ │ ├── locale │ │ │ │ └── bootstrap-table-zh-CN.min.js │ │ │ └── bootstrap-table-mobile.min.js │ │ ├── markdown │ │ │ └── bootstrap-markdown.zh.js │ │ ├── validate │ │ │ └── messages_zh.min.js │ │ ├── prettyfile │ │ │ └── bootstrap-prettyfile.js │ │ ├── flot │ │ │ ├── jquery.flot.resize.js │ │ │ └── jquery.flot.symbol.js │ │ ├── summernote │ │ │ └── summernote-zh-CN.js │ │ ├── preetyTextDiff │ │ │ └── jquery.pretty-text-diff.min.js │ │ └── peity │ │ │ └── jquery.peity.min.js │ ├── demo │ │ ├── peity-demo.min.js │ │ ├── sparkline-demo.min.js │ │ ├── form-validate-demo.min.js │ │ ├── rickshaw-demo.min.js │ │ ├── morris-demo.min.js │ │ ├── layer-demo.min.js │ │ ├── treeview-demo.min.js │ │ └── bootstrap-table-demo.min.js │ ├── welcome.min.js │ ├── content.min.js │ └── socketclient.js ├── fonts │ ├── fontawesome-webfont93e3.eot │ ├── fontawesome-webfont93e3.ttf │ ├── fontawesome-webfont93e3.woff │ ├── fontawesome-webfontd41d.eot │ ├── fontawesome-webfont93e3.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ └── glyphicons-halflings-regulard41d.eot ├── 500.html ├── line.html ├── 404.html ├── lockscreen.html ├── login.html ├── empty_page.html ├── login_v2.html └── register.html ├── sql ├── alter_2016-08-01.sql ├── alter_2016-07-25.sql ├── alter_2016-09-28.sql ├── alter_2016-09-05.sql ├── generate.txt ├── alter_2016-08-07.sql ├── alter_2016-10-18.sql ├── alter_2016-09-18.sql ├── alter_2016-07-27.sql ├── alter_2016-10-11.sql ├── alter_2016-09-21.sql ├── alter_2016-10-08.sql └── alter_2016-10-12.sql ├── manage.py ├── templates ├── menu_header_module.html ├── menu_mysql_module.html └── app_base.html ├── .gitignore └── README.md /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbmp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/default.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archer_dbmp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbmp/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbmp/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbmp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbmp/views/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbmp/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dbmp/views/sql_handler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/model_choices_field_value/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- 1 | ## 静态文件 2 | 域名:static.archer.xin -------------------------------------------------------------------------------- /dbmp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /dbmp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/img/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/a1.jpg -------------------------------------------------------------------------------- /static/img/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/a2.jpg -------------------------------------------------------------------------------- /static/img/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/a3.jpg -------------------------------------------------------------------------------- /static/img/a4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/a4.jpg -------------------------------------------------------------------------------- /static/img/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/a5.jpg -------------------------------------------------------------------------------- /static/img/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/a6.jpg -------------------------------------------------------------------------------- /static/img/a7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/a7.jpg -------------------------------------------------------------------------------- /static/img/a8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/a8.jpg -------------------------------------------------------------------------------- /static/img/a9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/a9.jpg -------------------------------------------------------------------------------- /static/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/bg.png -------------------------------------------------------------------------------- /static/img/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/p1.jpg -------------------------------------------------------------------------------- /static/img/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/p2.jpg -------------------------------------------------------------------------------- /static/img/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/p3.jpg -------------------------------------------------------------------------------- /static/img/pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/pay.png -------------------------------------------------------------------------------- /static/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/user.png -------------------------------------------------------------------------------- /sql/alter_2016-08-01.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE dbmp_mysql_instance_info DROP INDEX idx$mysql_instance_id; 2 | -------------------------------------------------------------------------------- /static/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/icons.png -------------------------------------------------------------------------------- /static/img/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/index.jpg -------------------------------------------------------------------------------- /static/img/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/locked.png -------------------------------------------------------------------------------- /static/img/p_big1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/p_big1.jpg -------------------------------------------------------------------------------- /static/img/p_big2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/p_big2.jpg -------------------------------------------------------------------------------- /static/img/p_big3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/p_big3.jpg -------------------------------------------------------------------------------- /static/img/index_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/index_4.jpg -------------------------------------------------------------------------------- /static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/loading.gif -------------------------------------------------------------------------------- /static/img/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/profile.jpg -------------------------------------------------------------------------------- /static/img/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/progress.png -------------------------------------------------------------------------------- /static/img/qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/qr_code.png -------------------------------------------------------------------------------- /static/img/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/success.png -------------------------------------------------------------------------------- /static/img/profile_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/profile_big.jpg -------------------------------------------------------------------------------- /static/img/wenku_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/wenku_logo.png -------------------------------------------------------------------------------- /static/img/iconfont-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/iconfont-logo.png -------------------------------------------------------------------------------- /static/img/loading-upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/loading-upload.gif -------------------------------------------------------------------------------- /static/img/profile_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/profile_small.jpg -------------------------------------------------------------------------------- /static/img/login-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/img/login-background.jpg -------------------------------------------------------------------------------- /static/css/patterns/shattered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/patterns/shattered.png -------------------------------------------------------------------------------- /static/css/plugins/iCheck/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/iCheck/green.png -------------------------------------------------------------------------------- /static/js/plugins/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/fancybox/blank.gif -------------------------------------------------------------------------------- /static/css/patterns/header-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/patterns/header-profile.png -------------------------------------------------------------------------------- /static/css/plugins/iCheck/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/iCheck/green@2x.png -------------------------------------------------------------------------------- /static/css/plugins/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/images/sort_asc.png -------------------------------------------------------------------------------- /static/css/plugins/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/images/sort_desc.png -------------------------------------------------------------------------------- /static/css/plugins/images/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/images/spritemap.png -------------------------------------------------------------------------------- /static/css/plugins/blueimp/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/blueimp/img/error.png -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont93e3.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/fonts/fontawesome-webfont93e3.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont93e3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/fonts/fontawesome-webfont93e3.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont93e3.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/fonts/fontawesome-webfont93e3.woff -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/fonts/fontawesome-webfontd41d.eot -------------------------------------------------------------------------------- /static/js/plugins/layer/layim/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/layim/loading.gif -------------------------------------------------------------------------------- /static/css/plugins/blueimp/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/blueimp/img/loading.gif -------------------------------------------------------------------------------- /static/css/plugins/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /static/css/plugins/images/spritemap@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/images/spritemap@2x.png -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont93e3.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/fonts/fontawesome-webfont93e3.woff2 -------------------------------------------------------------------------------- /static/js/plugins/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/gritter/images/gritter.png -------------------------------------------------------------------------------- /static/css/patterns/header-profile-skin-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/patterns/header-profile-skin-1.png -------------------------------------------------------------------------------- /static/css/patterns/header-profile-skin-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/patterns/header-profile-skin-3.png -------------------------------------------------------------------------------- /static/css/plugins/blueimp/img/play-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/blueimp/img/play-pause.png -------------------------------------------------------------------------------- /static/css/plugins/blueimp/img/video-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/blueimp/img/video-play.png -------------------------------------------------------------------------------- /static/css/plugins/chosen/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/chosen/chosen-sprite@2x.png -------------------------------------------------------------------------------- /static/css/plugins/footable/fonts/footable.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/footable/fonts/footable.eot -------------------------------------------------------------------------------- /static/css/plugins/footable/fonts/footable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/footable/fonts/footable.ttf -------------------------------------------------------------------------------- /static/css/plugins/images/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/images/sprite-skin-flat.png -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/js/plugins/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /static/js/plugins/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /static/js/plugins/layer/laydate-v1.1/更新日志.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/laydate-v1.1/更新日志.txt -------------------------------------------------------------------------------- /static/js/plugins/layer/skin/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/skin/default/icon.png -------------------------------------------------------------------------------- /static/css/plugins/footable/fonts/footable.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/footable/fonts/footable.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regulard41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/fonts/glyphicons-halflings-regulard41d.eot -------------------------------------------------------------------------------- /static/js/plugins/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /static/js/plugins/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /static/js/plugins/fancybox/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/fancybox/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /static/js/plugins/layer/skin/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/skin/default/icon-ext.png -------------------------------------------------------------------------------- /static/css/plugins/footable/fonts/footabled41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/footable/fonts/footabled41d.eot -------------------------------------------------------------------------------- /static/js/plugins/fancybox/fancybox_loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/fancybox/fancybox_loading@2x.gif -------------------------------------------------------------------------------- /static/js/plugins/gritter/images/gritter-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/gritter/images/gritter-light.png -------------------------------------------------------------------------------- /static/js/plugins/layer/laydate/skins/molv/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/laydate/skins/molv/icon.png -------------------------------------------------------------------------------- /static/js/plugins/layer/skin/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/skin/default/loading-0.gif -------------------------------------------------------------------------------- /static/js/plugins/layer/skin/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/skin/default/loading-1.gif -------------------------------------------------------------------------------- /static/js/plugins/layer/skin/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/skin/default/loading-2.gif -------------------------------------------------------------------------------- /static/js/plugins/layer/laydate/skins/dahong/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/laydate/skins/dahong/icon.png -------------------------------------------------------------------------------- /static/js/plugins/layer/laydate/skins/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/laydate/skins/default/icon.png -------------------------------------------------------------------------------- /sql/alter_2016-07-25.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE dbmp_mysql_instance 2 | ADD run_status TINYINT NOT NULL DEFAULT 1 3 | COMMENT 'MySQL运行状态:1、停止,2、运行中,3、未知' AFTER password; 4 | -------------------------------------------------------------------------------- /static/css/plugins/colorpicker/img/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/colorpicker/img/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /static/js/plugins/layer/laydate-v1.1/laydate/skins/molv/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/laydate-v1.1/laydate/skins/molv/icon.png -------------------------------------------------------------------------------- /static/css/plugins/colorpicker/img/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/colorpicker/img/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /static/js/plugins/layer/laydate-v1.1/laydate/skins/dahong/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/laydate-v1.1/laydate/skins/dahong/icon.png -------------------------------------------------------------------------------- /static/js/plugins/layer/laydate-v1.1/laydate/skins/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/js/plugins/layer/laydate-v1.1/laydate/skins/default/icon.png -------------------------------------------------------------------------------- /static/css/plugins/colorpicker/img/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/colorpicker/img/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /static/js/plugins/layer/laydate-v1.1/layDate官网.url: -------------------------------------------------------------------------------- 1 | [{000214A0-0000-0000-C000-000000000046}] 2 | Prop3=19,2 3 | [InternetShortcut] 4 | URL=http://sentsin.com/layui/laydate/ 5 | IDList= 6 | HotKey=0 7 | -------------------------------------------------------------------------------- /static/css/plugins/colorpicker/img/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/colorpicker/img/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /static/css/plugins/colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daiguadaidai/archer_dbmp/HEAD/static/css/plugins/colorpicker/img/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /sql/alter_2016-09-28.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE dbmp_mysql_business_detail 2 | ADD UNIQUE INDEX udx$mysql_business_database_id(mysql_business_id, mysql_database_id), 3 | DROP INDEX idx$mysql_business_id, 4 | DROP INDEX idx$mysql_database_id; 5 | -------------------------------------------------------------------------------- /sql/alter_2016-09-05.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE dbmp_mysql_backup_remote 2 | ADD mysql_backup_instance_id INT unsigned NOT NULL COMMENT '备份实例ID' AFTER mysql_backup_remote_id, 3 | ADD UNIQUE INDEX udx$mysql_backup_instance_id(mysql_backup_instance_id); 4 | -------------------------------------------------------------------------------- /sql/generate.txt: -------------------------------------------------------------------------------- 1 | # 更新语句 2 | mysqldump \ 3 | -h192.168.1.233 \ 4 | -P3306 \ 5 | -uHH \ 6 | -poracle \ 7 | --set-gtid-purged=OFF \ 8 | --no-data \ 9 | my_free > my_free_schema.sql 10 | 11 | python manage.py inspectdb > models.py 12 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | if __name__ == "__main__": 6 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "archer_dbmp.settings") 7 | 8 | from django.core.management import execute_from_command_line 9 | 10 | execute_from_command_line(sys.argv) 11 | -------------------------------------------------------------------------------- /sql/alter_2016-08-07.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE dbmp_mysql_instance 2 | MODIFY `run_status` tinyint(4) NOT NULL DEFAULT '1' 3 | COMMENT 'MySQL运行状态:1、停止,2、运行中,3、未知,4、正在关闭,5、正在启动'; 4 | 5 | ALTER TABLE dbmp_mysql_instance 6 | ADD possible_pid VARCHAR(100) NOT NULL DEFAULT '' 7 | COMMENT 'MySQL可能运行的PID' AFTER run_status; 8 | -------------------------------------------------------------------------------- /static/css/plugins/blueimp/img/video-play.svg: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /static/css/plugins/blueimp/img/error.svg: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /static/js/plugins/webuploader/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |You don't have permission to access /theme/hplus/js/plugins/webuploader/ 7 | on this server.
8 |
6 |
7 |
8 | Beaut-zihan
9 | 超级管理员
10 |
11 |
12 |
25 | 22 | @Name:laydate-v 日期控件说明 23 | @Author:贤心 24 | @Blog:http://sentsin.com 25 | @官网:http://sentsin.com/layui/laydate 26 | @开发版源码:http://sentsin.com/lily/lib/laydate/laydate.dev.js 27 | 28 | 【注意事项】 29 | 一、请千万勿移动laydate中的目录结构,它们具有完整的依赖体系。使用时,只需引入laydate/laydate.js即可。 30 | 二、如果您的网站的js采用合并或模块加载,您需要打开laydate.js,修改path。 31 | 三、laydate遵循LGPL开源协议,永不收费! 32 | 四、版权最终解释权:贤心。 33 |34 | 演示二: 35 |
现在,您已经看到了layDate的第一个版本了,路漫漫其修远兮,不管您的网站是否存有别的日期控件,但我相信总有一日您会对layDate情有独钟。
38 | 使用文档 39 | 皮肤库 40 | 更新日志 41 | 有问必答 42 |
37 | 您需要再次输入密码
40 | 46 |您单击了 "+o.text+"
")}}),$("#treeview12").treeview({data:t})}); 2 | -------------------------------------------------------------------------------- /static/empty_page.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |{{ dbmp_mysql_business.name }}
37 | {{ dbmp_mysql_business.remark}}
46 | {{ dbmp_mysql_business.create_time | date:"Y-m-d H:i:s" }}
55 | {{ dbmp_mysql_business.update_time | date:"Y-m-d H:i:s" }}
64 | {{ dbmp_mysql_business.name }}
37 | {{ dbmp_mysql_business.remark}}
46 | {{ dbmp_mysql_business.create_time | date:"Y-m-d H:i:s" }}
55 | {{ dbmp_mysql_business.update_time | date:"Y-m-d H:i:s" }}
64 | 创建一个H+新账户
36 | 58 |