├── .htaccess ├── 150105104814.sql ├── README.md ├── admin ├── .htaccess ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── article.php │ ├── category.php │ ├── index.html │ ├── login.php │ ├── system.php │ ├── upload.php │ └── user.php ├── core │ ├── N5_Loader.php │ ├── index.html │ └── n5_Controller.php ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── index.html │ └── n5_fn_helper.php ├── hooks │ └── index.html ├── index.html ├── index.php ├── language │ └── english │ │ └── index.html ├── libraries │ ├── Category.php │ └── index.html ├── models │ ├── Admin_m.php │ ├── Article_m.php │ ├── Category_m.php │ ├── System_m.php │ └── index.html ├── third_party │ └── index.html └── tpl │ ├── default │ ├── admin_footer.php │ ├── admin_header.php │ ├── article_add.php │ ├── article_addUE.php │ ├── article_ediUEtor.php │ ├── article_editor.php │ ├── article_list.php │ ├── calendar.html │ ├── cate_add.php │ ├── cate_editor.php │ ├── cate_list.php │ ├── chart-showcase.html │ ├── code-editor.html │ ├── css │ │ ├── bootstrap │ │ │ ├── bootstrap-overrides.css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── compiled │ │ │ ├── calendar.css │ │ │ ├── chart-showcase.css │ │ │ ├── code-editor.css │ │ │ ├── datatables.css │ │ │ ├── elements.css │ │ │ ├── form-showcase.css │ │ │ ├── form-wizard.css │ │ │ ├── gallery.css │ │ │ ├── grids.css │ │ │ ├── icons.css │ │ │ ├── index.css │ │ │ ├── layout.css │ │ │ ├── new-user.css │ │ │ ├── personal-info.css │ │ │ ├── signin.css │ │ │ ├── signup.css │ │ │ ├── tables.css │ │ │ ├── ui-elements.css │ │ │ ├── user-list.css │ │ │ ├── user-profile.css │ │ │ └── web-app-icons.css │ │ └── lib │ │ │ ├── bootstrap-wysihtml5.css │ │ │ ├── bootstrap.datepicker.css │ │ │ ├── code-editor.css │ │ │ ├── font-awesome.css │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.print.css │ │ │ ├── jquery-ui-1.10.2.custom.css │ │ │ ├── jquery.dataTables.css │ │ │ ├── morris.css │ │ │ ├── select2.css │ │ │ └── uniform.default.css │ ├── datatables.html │ ├── font │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── form-wizard.html │ ├── formTips.php │ ├── gallery.html │ ├── grids.html │ ├── icons.html │ ├── img │ │ ├── bgs │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── 9.jpg │ │ │ ├── blueish.jpg │ │ │ └── landscape.jpg │ │ ├── btn-attach.png │ │ ├── btn-setting.png │ │ ├── btn-shuffle.png │ │ ├── btn-tool.png │ │ ├── contact-img.png │ │ ├── contact-img2.png │ │ ├── contact-profile.png │ │ ├── gallery1.jpg │ │ ├── gallery2.jpg │ │ ├── gallery3.jpg │ │ ├── ico-arrow-black.png │ │ ├── ico-gallery-edit.png │ │ ├── ico-gallery-trash.png │ │ ├── ico-mail.png │ │ ├── ico-phone.png │ │ ├── ico-table-delete.png │ │ ├── ico-table-edit.png │ │ ├── ico-table-new.png │ │ ├── jquery-ui │ │ │ ├── slider-handler.png │ │ │ └── slider-handler2.png │ │ ├── lens.png │ │ ├── logo-white.png │ │ ├── logo.png │ │ ├── new-gallery-img.png │ │ ├── no-img-gallery.png │ │ ├── personal-info.png │ │ ├── select-bg.png │ │ ├── skin-nav-bullets.png │ │ ├── table-img.png │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── js │ │ ├── ace.js │ │ ├── bootstrap.datepicker.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── fuelux.wizard.js │ │ ├── fullcalendar.min.js │ │ ├── html5shiv.js │ │ ├── jqu64e20974.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-ui-1.10.2.custom.min.js │ │ ├── jquery.dataTables.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.knob.js │ │ ├── jquery.uniform.min.js │ │ ├── mode-javascript.js │ │ ├── morris.min.js │ │ ├── png.js │ │ ├── select2.min.js │ │ ├── theme.js │ │ └── wysihtml5-0.3.0.js │ ├── login.php │ ├── personal-info.html │ ├── signup.php │ ├── sys_frame.php │ ├── sys_home.php │ ├── sys_siteInfo.php │ ├── tables.html │ ├── ui-elements.html │ ├── upload_form.php │ ├── upload_success.php │ ├── user_creat.php │ ├── user_editor.php │ ├── user_list.php │ └── user_profile.php │ ├── index.html │ └── welcome_message.php ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── config1.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── N5Font_comon_Controller.php │ ├── api.php │ ├── apiCategory.php │ ├── article.php │ ├── category.php │ ├── home.php │ ├── index.html │ └── page.php ├── core │ ├── N5Font_Loader.php │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── N5Font_comon_helper.php │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ └── english │ │ └── index.html ├── libraries │ └── index.html ├── logs │ └── index.html ├── models │ ├── Article_m.php │ ├── Category_m.php │ ├── System_m.php │ └── index.html ├── third_party │ └── index.html └── views │ ├── _header.php │ ├── footer.php │ ├── header.php │ ├── home.php │ ├── homebak.php │ ├── index.html │ ├── list_image.php │ ├── list_news.php │ └── show_news.php ├── index.php ├── shared ├── .htaccess ├── config │ └── constant.php ├── duoshuo │ ├── Abstract.php │ ├── Client.php │ ├── DuoshuoClient.php │ ├── Exception.php │ ├── LocalServer.php │ ├── WordPress.php │ ├── api.php │ ├── bind.php │ ├── comments-seo.php │ ├── comments.php │ ├── common-script.html │ ├── compat-json.php │ ├── config.php │ ├── duoshuo.php │ ├── images │ │ ├── head-icon.gif │ │ ├── icon.gif │ │ ├── menu-icon.png │ │ ├── service_icons_32x32.png │ │ └── waiting.gif │ ├── index.php │ ├── manage.php │ ├── nanoSha2.php │ ├── oauth-proxy.php │ ├── preferences.php │ ├── profile.php │ ├── readme.txt │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ ├── screenshot-4.png │ ├── screenshot-5.png │ ├── screenshot-6.jpg │ ├── settings.php │ ├── statistics.php │ ├── styles.css │ ├── sync.php │ ├── themes.php │ └── widgets.php ├── index.html ├── kindeditor │ ├── dialog │ │ ├── kindeditor_manager.php │ │ └── kindeditor_post.php │ ├── inc │ │ └── inc_fun_funAdmin.php │ ├── kindeditor-all-min.js │ ├── kindeditor-all.js │ ├── kindeditor-min.js │ ├── kindeditor.js │ ├── lang │ │ ├── ar.js │ │ ├── en.js │ │ ├── ko.js │ │ ├── zh_CN.js │ │ └── zh_TW.js │ ├── license.txt │ ├── php │ │ ├── .htaccess │ │ ├── JSON.php │ │ ├── demo.php │ │ ├── file_manager_json.php │ │ └── upload_json.php │ ├── plugins │ │ ├── anchor │ │ │ └── anchor.js │ │ ├── autoheight │ │ │ └── autoheight.js │ │ ├── baidumap │ │ │ ├── baidumap.js │ │ │ ├── index.html │ │ │ └── map.html │ │ ├── clearhtml │ │ │ └── clearhtml.js │ │ ├── code │ │ │ ├── code.js │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ ├── emoticons │ │ │ ├── emoticons.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 100.gif │ │ │ │ ├── 101.gif │ │ │ │ ├── 102.gif │ │ │ │ ├── 103.gif │ │ │ │ ├── 104.gif │ │ │ │ ├── 105.gif │ │ │ │ ├── 106.gif │ │ │ │ ├── 107.gif │ │ │ │ ├── 108.gif │ │ │ │ ├── 109.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 110.gif │ │ │ │ ├── 111.gif │ │ │ │ ├── 112.gif │ │ │ │ ├── 113.gif │ │ │ │ ├── 114.gif │ │ │ │ ├── 115.gif │ │ │ │ ├── 116.gif │ │ │ │ ├── 117.gif │ │ │ │ ├── 118.gif │ │ │ │ ├── 119.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 120.gif │ │ │ │ ├── 121.gif │ │ │ │ ├── 122.gif │ │ │ │ ├── 123.gif │ │ │ │ ├── 124.gif │ │ │ │ ├── 125.gif │ │ │ │ ├── 126.gif │ │ │ │ ├── 127.gif │ │ │ │ ├── 128.gif │ │ │ │ ├── 129.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 130.gif │ │ │ │ ├── 131.gif │ │ │ │ ├── 132.gif │ │ │ │ ├── 133.gif │ │ │ │ ├── 134.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 72.gif │ │ │ │ ├── 73.gif │ │ │ │ ├── 74.gif │ │ │ │ ├── 75.gif │ │ │ │ ├── 76.gif │ │ │ │ ├── 77.gif │ │ │ │ ├── 78.gif │ │ │ │ ├── 79.gif │ │ │ │ ├── 8.gif │ │ │ │ ├── 80.gif │ │ │ │ ├── 81.gif │ │ │ │ ├── 82.gif │ │ │ │ ├── 83.gif │ │ │ │ ├── 84.gif │ │ │ │ ├── 85.gif │ │ │ │ ├── 86.gif │ │ │ │ ├── 87.gif │ │ │ │ ├── 88.gif │ │ │ │ ├── 89.gif │ │ │ │ ├── 9.gif │ │ │ │ ├── 90.gif │ │ │ │ ├── 91.gif │ │ │ │ ├── 92.gif │ │ │ │ ├── 93.gif │ │ │ │ ├── 94.gif │ │ │ │ ├── 95.gif │ │ │ │ ├── 96.gif │ │ │ │ ├── 97.gif │ │ │ │ ├── 98.gif │ │ │ │ ├── 99.gif │ │ │ │ └── static.gif │ │ ├── filemanager │ │ │ ├── filemanager.js │ │ │ └── images │ │ │ │ ├── file-16.gif │ │ │ │ ├── file-64.gif │ │ │ │ ├── folder-16.gif │ │ │ │ ├── folder-64.gif │ │ │ │ └── go-up.gif │ │ ├── flash │ │ │ └── flash.js │ │ ├── image │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── align_left.gif │ │ │ │ ├── align_right.gif │ │ │ │ ├── align_top.gif │ │ │ │ └── refresh.png │ │ ├── insertfile │ │ │ └── insertfile.js │ │ ├── lineheight │ │ │ └── lineheight.js │ │ ├── link │ │ │ └── link.js │ │ ├── map │ │ │ ├── map.html │ │ │ └── map.js │ │ ├── media │ │ │ └── media.js │ │ ├── multiimage │ │ │ ├── images │ │ │ │ ├── image.png │ │ │ │ ├── select-files-en.png │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ └── swfupload.swf │ │ │ └── multiimage.js │ │ ├── pagebreak │ │ │ └── pagebreak.js │ │ ├── plainpaste │ │ │ └── plainpaste.js │ │ ├── preview │ │ │ └── preview.js │ │ ├── quickformat │ │ │ └── quickformat.js │ │ ├── runCode │ │ │ ├── btn_bg.gif │ │ │ ├── runCode.css │ │ │ ├── runCode.js │ │ │ └── zztuku_runCode.js │ │ ├── table │ │ │ └── table.js │ │ ├── template │ │ │ ├── html │ │ │ │ ├── 1.html │ │ │ │ ├── 2.html │ │ │ │ └── 3.html │ │ │ └── template.js │ │ └── wordpaste │ │ │ └── wordpaste.js │ └── themes │ │ ├── common │ │ ├── anchor.gif │ │ ├── blank.gif │ │ ├── flash.gif │ │ ├── loading.gif │ │ ├── media.gif │ │ └── rm.gif │ │ ├── default │ │ ├── background.png │ │ ├── default.css │ │ └── default.png │ │ ├── qq │ │ ├── editor.gif │ │ └── qq.css │ │ └── simple │ │ └── simple.css └── ue │ ├── dialogs │ ├── anchor │ │ └── anchor.html │ ├── attachment │ │ ├── attachment.css │ │ ├── attachment.html │ │ ├── attachment.js │ │ ├── fileTypeImages │ │ │ ├── icon_chm.gif │ │ │ ├── icon_default.png │ │ │ ├── icon_doc.gif │ │ │ ├── icon_exe.gif │ │ │ ├── icon_jpg.gif │ │ │ ├── icon_mp3.gif │ │ │ ├── icon_mv.gif │ │ │ ├── icon_pdf.gif │ │ │ ├── icon_ppt.gif │ │ │ ├── icon_psd.gif │ │ │ ├── icon_rar.gif │ │ │ ├── icon_txt.gif │ │ │ └── icon_xls.gif │ │ └── images │ │ │ ├── alignicon.gif │ │ │ ├── alignicon.png │ │ │ ├── bg.png │ │ │ ├── file-icons.gif │ │ │ ├── file-icons.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── progress.png │ │ │ ├── success.gif │ │ │ └── success.png │ ├── background │ │ ├── background.css │ │ ├── background.html │ │ ├── background.js │ │ └── images │ │ │ ├── bg.png │ │ │ └── success.png │ ├── charts │ │ ├── chart.config.js │ │ ├── charts.css │ │ ├── charts.html │ │ ├── charts.js │ │ └── images │ │ │ ├── charts0.png │ │ │ ├── charts1.png │ │ │ ├── charts2.png │ │ │ ├── charts3.png │ │ │ ├── charts4.png │ │ │ └── charts5.png │ ├── emotion │ │ ├── emotion.css │ │ ├── emotion.html │ │ ├── emotion.js │ │ └── images │ │ │ ├── 0.gif │ │ │ ├── bface.gif │ │ │ ├── cface.gif │ │ │ ├── fface.gif │ │ │ ├── jxface2.gif │ │ │ ├── neweditor-tab-bg.png │ │ │ ├── tface.gif │ │ │ ├── wface.gif │ │ │ └── yface.gif │ ├── gmap │ │ └── gmap.html │ ├── help │ │ ├── help.css │ │ ├── help.html │ │ └── help.js │ ├── image │ │ ├── image.css │ │ ├── image.html │ │ ├── image.js │ │ └── images │ │ │ ├── alignicon.jpg │ │ │ ├── bg.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── progress.png │ │ │ ├── success.gif │ │ │ └── success.png │ ├── insertframe │ │ └── insertframe.html │ ├── internal.js │ ├── link │ │ └── link.html │ ├── map │ │ ├── map.html │ │ └── show.html │ ├── music │ │ ├── music.css │ │ ├── music.html │ │ └── music.js │ ├── preview │ │ └── preview.html │ ├── scrawl │ │ ├── images │ │ │ ├── addimg.png │ │ │ ├── brush.png │ │ │ ├── delimg.png │ │ │ ├── delimgH.png │ │ │ ├── empty.png │ │ │ ├── emptyH.png │ │ │ ├── eraser.png │ │ │ ├── redo.png │ │ │ ├── redoH.png │ │ │ ├── scale.png │ │ │ ├── scaleH.png │ │ │ ├── size.png │ │ │ ├── undo.png │ │ │ └── undoH.png │ │ ├── scrawl.css │ │ ├── scrawl.html │ │ └── scrawl.js │ ├── searchreplace │ │ ├── searchreplace.html │ │ └── searchreplace.js │ ├── snapscreen │ │ └── snapscreen.html │ ├── spechars │ │ ├── spechars.html │ │ └── spechars.js │ ├── table │ │ ├── dragicon.png │ │ ├── edittable.css │ │ ├── edittable.html │ │ ├── edittable.js │ │ ├── edittd.html │ │ └── edittip.html │ ├── template │ │ ├── config.js │ │ ├── images │ │ │ ├── bg.gif │ │ │ ├── pre0.png │ │ │ ├── pre1.png │ │ │ ├── pre2.png │ │ │ ├── pre3.png │ │ │ └── pre4.png │ │ ├── template.css │ │ ├── template.html │ │ └── template.js │ ├── video │ │ ├── images │ │ │ ├── bg.png │ │ │ ├── center_focus.jpg │ │ │ ├── file-icons.gif │ │ │ ├── file-icons.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── left_focus.jpg │ │ │ ├── none_focus.jpg │ │ │ ├── progress.png │ │ │ ├── right_focus.jpg │ │ │ ├── success.gif │ │ │ └── success.png │ │ ├── video.css │ │ ├── video.html │ │ └── video.js │ ├── webapp │ │ └── webapp.html │ └── wordimage │ │ ├── fClipboard_ueditor.swf │ │ ├── imageUploader.swf │ │ ├── tangram.js │ │ ├── wordimage.html │ │ └── wordimage.js │ ├── index.html │ ├── lang │ ├── en │ │ ├── en.js │ │ └── images │ │ │ ├── addimage.png │ │ │ ├── alldeletebtnhoverskin.png │ │ │ ├── alldeletebtnupskin.png │ │ │ ├── background.png │ │ │ ├── button.png │ │ │ ├── copy.png │ │ │ ├── deletedisable.png │ │ │ ├── deleteenable.png │ │ │ ├── listbackground.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ ├── rotateleftdisable.png │ │ │ ├── rotateleftenable.png │ │ │ ├── rotaterightdisable.png │ │ │ ├── rotaterightenable.png │ │ │ └── upload.png │ └── zh-cn │ │ ├── images │ │ ├── copy.png │ │ ├── localimage.png │ │ ├── music.png │ │ └── upload.png │ │ └── zh-cn.js │ ├── php │ ├── Uploader.class.php │ ├── action_crawler.php │ ├── action_list.php │ ├── action_upload.php │ ├── config.json │ └── controller.php │ ├── themes │ ├── default │ │ ├── css │ │ │ ├── ueditor.css │ │ │ └── ueditor.min.css │ │ ├── dialogbase.css │ │ └── images │ │ │ ├── anchor.gif │ │ │ ├── arrow.png │ │ │ ├── arrow_down.png │ │ │ ├── arrow_up.png │ │ │ ├── button-bg.gif │ │ │ ├── cancelbutton.gif │ │ │ ├── charts.png │ │ │ ├── cursor_h.gif │ │ │ ├── cursor_h.png │ │ │ ├── cursor_v.gif │ │ │ ├── cursor_v.png │ │ │ ├── dialog-title-bg.png │ │ │ ├── filescan.png │ │ │ ├── highlighted.gif │ │ │ ├── icons-all.gif │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── loaderror.png │ │ │ ├── loading.gif │ │ │ ├── lock.gif │ │ │ ├── neweditor-tab-bg.png │ │ │ ├── pagebreak.gif │ │ │ ├── scale.png │ │ │ ├── sortable.png │ │ │ ├── spacer.gif │ │ │ ├── sparator_v.png │ │ │ ├── table-cell-align.png │ │ │ ├── tangram-colorpicker.png │ │ │ ├── toolbar_bg.png │ │ │ ├── unhighlighted.gif │ │ │ ├── upload.png │ │ │ ├── videologo.gif │ │ │ ├── word.gif │ │ │ └── wordpaste.png │ └── iframe.css │ ├── third-party │ ├── SyntaxHighlighter │ │ ├── shCore.js │ │ └── shCoreDefault.css │ ├── codemirror │ │ ├── codemirror.css │ │ └── codemirror.js │ ├── highcharts │ │ ├── adapters │ │ │ ├── mootools-adapter.js │ │ │ ├── mootools-adapter.src.js │ │ │ ├── prototype-adapter.js │ │ │ ├── prototype-adapter.src.js │ │ │ ├── standalone-framework.js │ │ │ └── standalone-framework.src.js │ │ ├── highcharts-more.js │ │ ├── highcharts-more.src.js │ │ ├── highcharts.js │ │ ├── highcharts.src.js │ │ ├── modules │ │ │ ├── annotations.js │ │ │ ├── annotations.src.js │ │ │ ├── canvas-tools.js │ │ │ ├── canvas-tools.src.js │ │ │ ├── data.js │ │ │ ├── data.src.js │ │ │ ├── drilldown.js │ │ │ ├── drilldown.src.js │ │ │ ├── exporting.js │ │ │ ├── exporting.src.js │ │ │ ├── funnel.js │ │ │ ├── funnel.src.js │ │ │ ├── heatmap.js │ │ │ ├── heatmap.src.js │ │ │ ├── map.js │ │ │ ├── map.src.js │ │ │ ├── no-data-to-display.js │ │ │ └── no-data-to-display.src.js │ │ └── themes │ │ │ ├── dark-blue.js │ │ │ ├── dark-green.js │ │ │ ├── gray.js │ │ │ ├── grid.js │ │ │ └── skies.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── runcode │ │ └── addCustomizeRunCode.js │ ├── snapscreen │ │ └── UEditorSnapscreen.exe │ ├── video-js │ │ ├── font │ │ │ ├── vjs.eot │ │ │ ├── vjs.svg │ │ │ ├── vjs.ttf │ │ │ └── vjs.woff │ │ ├── video-js.css │ │ ├── video-js.min.css │ │ ├── video-js.swf │ │ ├── video.dev.js │ │ └── video.js │ ├── webuploader │ │ ├── Uploader.swf │ │ ├── webuploader.css │ │ ├── webuploader.custom.js │ │ ├── webuploader.custom.min.js │ │ ├── webuploader.flashonly.js │ │ ├── webuploader.flashonly.min.js │ │ ├── webuploader.html5only.js │ │ ├── webuploader.html5only.min.js │ │ ├── webuploader.js │ │ ├── webuploader.min.js │ │ ├── webuploader.withoutimage.js │ │ └── webuploader.withoutimage.min.js │ ├── zeroclipboard │ │ ├── ZeroClipboard.js │ │ ├── ZeroClipboard.min.js │ │ └── ZeroClipboard.swf │ └── 插件备注.txt │ ├── ueditor.all.js │ ├── ueditor.all.min.js │ ├── ueditor.config.js │ ├── ueditor.parse.js │ └── ueditor.parse.min.js ├── static ├── css │ ├── bug.css │ ├── common.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── global.css │ ├── ie.css │ ├── img │ │ ├── .picasa.ini │ │ ├── arrow_large_left.png │ │ ├── arrow_large_right.png │ │ ├── arrow_left2.png │ │ ├── arrow_right2.png │ │ ├── bannerBg_0.jpg │ │ ├── bg_direction_nav.png │ │ ├── btIco_0.png │ │ ├── bullet.png │ │ ├── bx_loader.gif │ │ ├── controIco_0.png │ │ ├── controIco_1.png │ │ ├── controIco_2.png │ │ ├── ico_reorder_0.png │ │ ├── large_left.png │ │ ├── large_left_bk.png │ │ ├── large_right.png │ │ ├── large_right_bk.png │ │ ├── later_btn.png │ │ ├── left-hover.png │ │ ├── left.png │ │ ├── liIco_3.gif │ │ ├── loader.gif │ │ ├── loader2.gif │ │ ├── loading.gif │ │ ├── navLiIco_0.png │ │ ├── navLiIco_1.png │ │ ├── navLiIco_2.png │ │ ├── next.png │ │ ├── opcityBg_0.png │ │ ├── prev.png │ │ ├── repeatBg_0.png │ │ ├── right-hover.png │ │ ├── right.png │ │ ├── searchbtn.png │ │ ├── serachIco_0.png │ │ ├── sprite_control_0.png │ │ ├── squarespinner_2x.gif │ │ ├── tipsIco_0.png │ │ ├── tipsIco_1.png │ │ ├── xiaoyun-20131225.gif │ │ └── yym_returnTop.png │ ├── jc.jpg │ ├── prettify.css │ ├── responsiveStyle.css │ ├── shCoreDefault.css │ ├── style.css │ └── ueRunCode.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── images │ ├── bannerBg_1.png │ ├── ico_flux_0.png │ ├── ico_search_0.png │ ├── ico_talk_0.png │ ├── loading.gif │ ├── loading1.gif │ ├── logo.png │ ├── logo2.png │ ├── noPic_0.jpg │ ├── repeatBg_0.png │ ├── smallCode_2.png │ ├── sweepCode.jpg │ └── test_0.jpg └── js │ ├── JQPT.js │ ├── SyntaxHighlighter │ ├── shCore.js │ └── shCoreDefault.css │ ├── css3-mediaqueries.js │ ├── flvplayer.swf │ ├── html5.js │ ├── jquery-1.7.1.min.js │ ├── jquery.LoadImage.js │ ├── jquery.easing.1.3.js │ ├── jquery.lazyload.js │ ├── jquery.masonry.min.js │ ├── jquery.scaleImage.js │ ├── lib │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── html5.js │ ├── html5shiv.min.js │ ├── jquery-1.11.1.min.js │ ├── jquery-1.7.1.js │ ├── mootools1.5.js │ ├── png.js │ ├── respond.min.js │ └── sea.js │ ├── n5.js │ ├── n5RunCode.js │ ├── plugs │ ├── jquery-tm.js │ ├── jquery.easing.1.3.js │ ├── jquery.lazyload.js │ └── switchable.js │ ├── png.js │ ├── respond.min.js │ ├── shCore.js │ ├── swfobject.js │ ├── ueRunCode.js │ └── vcastr2.swf └── system ├── .htaccess ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php └── index.html ├── database ├── DB.php ├── DB_active_rec.php ├── DB_cache.php ├── DB_driver.php ├── DB_forge.php ├── DB_result.php ├── DB_utility.php ├── drivers │ ├── cubrid │ │ ├── cubrid_driver.php │ │ ├── cubrid_forge.php │ │ ├── cubrid_result.php │ │ ├── cubrid_utility.php │ │ └── index.html │ ├── index.html │ ├── mssql │ │ ├── index.html │ │ ├── mssql_driver.php │ │ ├── mssql_forge.php │ │ ├── mssql_result.php │ │ └── mssql_utility.php │ ├── mysql │ │ ├── index.html │ │ ├── mysql_driver.php │ │ ├── mysql_forge.php │ │ ├── mysql_result.php │ │ └── mysql_utility.php │ ├── mysqli │ │ ├── index.html │ │ ├── mysqli_driver.php │ │ ├── mysqli_forge.php │ │ ├── mysqli_result.php │ │ └── mysqli_utility.php │ ├── oci8 │ │ ├── index.html │ │ ├── oci8_driver.php │ │ ├── oci8_forge.php │ │ ├── oci8_result.php │ │ └── oci8_utility.php │ ├── odbc │ │ ├── index.html │ │ ├── odbc_driver.php │ │ ├── odbc_forge.php │ │ ├── odbc_result.php │ │ └── odbc_utility.php │ ├── pdo │ │ ├── index.html │ │ ├── pdo_driver.php │ │ ├── pdo_forge.php │ │ ├── pdo_result.php │ │ └── pdo_utility.php │ ├── postgre │ │ ├── index.html │ │ ├── postgre_driver.php │ │ ├── postgre_forge.php │ │ ├── postgre_result.php │ │ └── postgre_utility.php │ ├── sqlite │ │ ├── index.html │ │ ├── sqlite_driver.php │ │ ├── sqlite_forge.php │ │ ├── sqlite_result.php │ │ └── sqlite_utility.php │ └── sqlsrv │ │ ├── index.html │ │ ├── sqlsrv_driver.php │ │ ├── sqlsrv_forge.php │ │ ├── sqlsrv_result.php │ │ └── sqlsrv_utility.php └── index.html ├── fonts ├── index.html └── texb.ttf ├── helpers ├── array_helper.php ├── captcha_helper.php ├── cookie_helper.php ├── date_helper.php ├── directory_helper.php ├── download_helper.php ├── email_helper.php ├── file_helper.php ├── form_helper.php ├── html_helper.php ├── index.html ├── inflector_helper.php ├── language_helper.php ├── number_helper.php ├── path_helper.php ├── security_helper.php ├── smiley_helper.php ├── string_helper.php ├── text_helper.php ├── typography_helper.php ├── url_helper.php └── xml_helper.php ├── index.html ├── language ├── english │ ├── calendar_lang.php │ ├── date_lang.php │ ├── db_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── ftp_lang.php │ ├── imglib_lang.php │ ├── index.html │ ├── migration_lang.php │ ├── number_lang.php │ ├── profiler_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php └── index.html └── libraries ├── Cache ├── Cache.php └── drivers │ ├── Cache_apc.php │ ├── Cache_dummy.php │ ├── Cache_file.php │ └── Cache_memcached.php ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Log.php ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session.php ├── Sha1.php ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php ├── index.html └── javascript └── Jquery.php /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteCond $1 !^(index\\.php|admin|uploadfiles|static|images|js|ue|css|webApp|robots\\.txt) 3 | RewriteRule ^(.*)$ index.php?/$1 [L] 4 | 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # n5admin 2 | 入门学习CI博客前后台代码,演示站点:http://www.note520.com 3 | -------------------------------------------------------------------------------- /admin/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteCond $1 !^(index\\.php|tpl|view|images|js|css|robots\\.txt) 3 | RewriteRule ^(.*)$ index.php?/$1 [L] 4 | 5 | -------------------------------------------------------------------------------- /admin/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /admin/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/controllers/upload.php: -------------------------------------------------------------------------------- 1 | load->switch_theme(ADMIN_THEME); 10 | $this->load->helper(array('form', 'url')); 11 | } 12 | 13 | function index() 14 | { 15 | $this->load->view('upload_form', array('error' => ' ' )); 16 | } 17 | 18 | function do_upload() 19 | { 20 | $config['upload_path'] = '../uploads/'; 21 | $config['allowed_types'] = 'gif|jpg|png'; 22 | $config['max_size'] = '100'; 23 | $config['max_width'] = '1024'; 24 | $config['max_height'] = '768'; 25 | 26 | $this->load->library('upload', $config); 27 | 28 | if ( ! $this->upload->do_upload()) 29 | { 30 | $error = array('error' => $this->upload->display_errors()); 31 | 32 | $this->load->view('upload_form', $error); 33 | } 34 | else 35 | { 36 | $data = array('upload_data' => $this->upload->data()); 37 | 38 | $this->load->view('upload_success', $data); 39 | } 40 | } 41 | } 42 | ?> -------------------------------------------------------------------------------- /admin/core/N5_Loader.php: -------------------------------------------------------------------------------- 1 | _ci_view_paths = array(APPPATH .TPL_NAME.'/' . $theme . '/' => TRUE); 26 | } 27 | 28 | // ------------------------------------------------------------------------ 29 | 30 | } 31 | -------------------------------------------------------------------------------- /admin/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/errors/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /admin/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

A PHP Error was encountered

4 | 5 |

Severity:

6 |

Message:

7 |

Filename:

8 |

Line Number:

9 | 10 |
-------------------------------------------------------------------------------- /admin/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/helpers/n5_fn_helper.php: -------------------------------------------------------------------------------- 1 | Category_m->get_one_data($cid); 21 | return $noeData['cname']; 22 | } 23 | ?> 24 | -------------------------------------------------------------------------------- /admin/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/models/System_m.php: -------------------------------------------------------------------------------- 1 | tableName = (isset($arr['tableName'])) ? $arr['tableName'] : 'my_site_config'; 8 | } 9 | //查询正个表所有信息 10 | public function get_id_siteInfo($siteId){ 11 | $query = $this->db->get_where($this->tableName,array('siteId' => $siteId)); 12 | return $query->row_array(); 13 | } 14 | //更新站点信息 15 | public function updata_siteInfo($siteId,$arr){ 16 | $this->db->where('siteId',$siteId); 17 | $this->db->update($this->tableName,$arr); 18 | return $this->db->affected_rows(); 19 | } 20 | 21 | } -------------------------------------------------------------------------------- /admin/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /admin/tpl/default/css/compiled/chart-showcase.css: -------------------------------------------------------------------------------- 1 | 2 | /* Stats chart */ 3 | #statsChart { 4 | width: 97%; 5 | height: 250px; 6 | margin-top: 35px; 7 | } 8 | 9 | /* specific chart styles */ 10 | .legendLabel { 11 | font-size: 12px; 12 | font-family: "Open Sans", Arial; 13 | color: #9da3a9; 14 | } 15 | 16 | #pad-wrapper .section { 17 | border-top: 1px solid #edeff1; 18 | margin-top: 70px; 19 | padding-top: 45px; 20 | box-shadow: inset 0px 3px 4px -1px #fafafa; 21 | } 22 | #pad-wrapper h4.title { 23 | margin-bottom: 45px; 24 | } 25 | #pad-wrapper .section .chart h5 { 26 | margin-bottom: 10px; 27 | } 28 | 29 | /*Responsive*/ 30 | -------------------------------------------------------------------------------- /admin/tpl/default/css/compiled/code-editor.css: -------------------------------------------------------------------------------- 1 | .editor-header { 2 | margin-top: -10px; 3 | } 4 | 5 | #editor { 6 | height: 525px; 7 | width: 100%; 8 | border: 1px solid #DDD; 9 | border-radius: 4px; 10 | border-bottom-right-radius: 0px; 11 | margin-bottom: 100px; 12 | margin-top: 25px; 13 | } 14 | -------------------------------------------------------------------------------- /admin/tpl/default/css/compiled/datatables.css: -------------------------------------------------------------------------------- 1 | .datatables-page { 2 | margin-bottom: 25px; 3 | } 4 | -------------------------------------------------------------------------------- /admin/tpl/default/css/compiled/grids.css: -------------------------------------------------------------------------------- 1 | .grid-wrapper { 2 | margin-bottom: 60px; 3 | } 4 | .grid-wrapper .head { 5 | margin-bottom: 30px; 6 | } 7 | 8 | .show-grid { 9 | margin-top: 10px; 10 | margin-bottom: 20px; 11 | } 12 | .show-grid [class*="col-"] { 13 | background-color: #eee; 14 | text-align: center; 15 | -webkit-border-radius: 3px; 16 | -moz-border-radius: 3px; 17 | border-radius: 3px; 18 | min-height: 40px; 19 | line-height: 40px; 20 | border: 1px solid rgba(86, 61, 124, 0.2); 21 | } 22 | -------------------------------------------------------------------------------- /admin/tpl/default/css/compiled/web-app-icons.css: -------------------------------------------------------------------------------- 1 | .icons-wrapper { 2 | margin-bottom: 60px; 3 | } 4 | .icons-wrapper h4 { 5 | margin-bottom: 40px !important; 6 | } 7 | .icons-wrapper ul { 8 | list-style: none; 9 | margin: 0; 10 | } 11 | .icons-wrapper ul li { 12 | font-size: 13px; 13 | line-height: 32px; 14 | margin-right: 10px; 15 | } 16 | .icons-wrapper ul i { 17 | width: 32px; 18 | font-size: 16px; 19 | margin-right: 13px; 20 | } 21 | 22 | .icons-wrapper-border { 23 | border-top: 1px solid #edeff1; 24 | padding-top: 60px; 25 | box-shadow: 0px 4px 7px -5px rgba(68, 68, 68, 0.14) inset; 26 | } 27 | -------------------------------------------------------------------------------- /admin/tpl/default/css/lib/bootstrap-wysihtml5.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | 404 Not Found 4 | 5 |

Not Found

6 |

The requested URL /css/lib/bootstrap-wysihtml5.css was not found on this server.

7 | 8 | -------------------------------------------------------------------------------- /admin/tpl/default/css/lib/code-editor.css: -------------------------------------------------------------------------------- 1 | .editor-header { 2 | margin-top: -10px; 3 | } 4 | 5 | #editor { 6 | height: 525px; 7 | width: 100%; 8 | border: 1px solid #DDD; 9 | border-radius: 4px; 10 | border-bottom-right-radius: 0px; 11 | margin-bottom: 100px; 12 | margin-top: 25px; 13 | } 14 | -------------------------------------------------------------------------------- /admin/tpl/default/css/lib/fullcalendar.print.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * FullCalendar v1.6.1 Print Stylesheet 3 | * Docs & License: http://arshaw.com/fullcalendar/ 4 | * (c) 2013 Adam Shaw 5 | */ 6 | 7 | /* 8 | * Include this stylesheet on your page to get a more printer-friendly calendar. 9 | * When including this stylesheet, use the media='print' attribute of the tag. 10 | * Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css. 11 | */ 12 | 13 | 14 | /* Events 15 | -----------------------------------------------------*/ 16 | 17 | .fc-event { 18 | background: #fff !important; 19 | color: #000 !important; 20 | } 21 | 22 | /* for vertical events */ 23 | 24 | .fc-event-bg { 25 | display: none !important; 26 | } 27 | 28 | .fc-event .ui-resizable-handle { 29 | display: none !important; 30 | } 31 | 32 | 33 | -------------------------------------------------------------------------------- /admin/tpl/default/css/lib/morris.css: -------------------------------------------------------------------------------- 1 | 2 | .morris-hover{position:absolute;z-index:1000;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255, 255, 255, 0.8);border:solid 2px rgba(230, 230, 230, 0.8);font-family:sans-serif;font-size:12px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;} 3 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;} 4 | -------------------------------------------------------------------------------- /admin/tpl/default/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/font/FontAwesome.otf -------------------------------------------------------------------------------- /admin/tpl/default/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /admin/tpl/default/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /admin/tpl/default/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /admin/tpl/default/formTips.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | <?php echo $title;?> 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 |

19 |

秒后系统将自动跳转

20 |
21 | 22 | -------------------------------------------------------------------------------- /admin/tpl/default/img/bgs/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/bgs/10.jpg -------------------------------------------------------------------------------- /admin/tpl/default/img/bgs/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/bgs/11.jpg -------------------------------------------------------------------------------- /admin/tpl/default/img/bgs/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/bgs/7.jpg -------------------------------------------------------------------------------- /admin/tpl/default/img/bgs/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/bgs/8.jpg -------------------------------------------------------------------------------- /admin/tpl/default/img/bgs/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/bgs/9.jpg -------------------------------------------------------------------------------- /admin/tpl/default/img/bgs/blueish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/bgs/blueish.jpg -------------------------------------------------------------------------------- /admin/tpl/default/img/bgs/landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/bgs/landscape.jpg -------------------------------------------------------------------------------- /admin/tpl/default/img/btn-attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/btn-attach.png -------------------------------------------------------------------------------- /admin/tpl/default/img/btn-setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/btn-setting.png -------------------------------------------------------------------------------- /admin/tpl/default/img/btn-shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/btn-shuffle.png -------------------------------------------------------------------------------- /admin/tpl/default/img/btn-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/btn-tool.png -------------------------------------------------------------------------------- /admin/tpl/default/img/contact-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/contact-img.png -------------------------------------------------------------------------------- /admin/tpl/default/img/contact-img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/contact-img2.png -------------------------------------------------------------------------------- /admin/tpl/default/img/contact-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/contact-profile.png -------------------------------------------------------------------------------- /admin/tpl/default/img/gallery1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/gallery1.jpg -------------------------------------------------------------------------------- /admin/tpl/default/img/gallery2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/gallery2.jpg -------------------------------------------------------------------------------- /admin/tpl/default/img/gallery3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/gallery3.jpg -------------------------------------------------------------------------------- /admin/tpl/default/img/ico-arrow-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ico-arrow-black.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ico-gallery-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ico-gallery-edit.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ico-gallery-trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ico-gallery-trash.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ico-mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ico-mail.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ico-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ico-phone.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ico-table-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ico-table-delete.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ico-table-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ico-table-edit.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ico-table-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ico-table-new.png -------------------------------------------------------------------------------- /admin/tpl/default/img/jquery-ui/slider-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/jquery-ui/slider-handler.png -------------------------------------------------------------------------------- /admin/tpl/default/img/jquery-ui/slider-handler2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/jquery-ui/slider-handler2.png -------------------------------------------------------------------------------- /admin/tpl/default/img/lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/lens.png -------------------------------------------------------------------------------- /admin/tpl/default/img/logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/logo-white.png -------------------------------------------------------------------------------- /admin/tpl/default/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/logo.png -------------------------------------------------------------------------------- /admin/tpl/default/img/new-gallery-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/new-gallery-img.png -------------------------------------------------------------------------------- /admin/tpl/default/img/no-img-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/no-img-gallery.png -------------------------------------------------------------------------------- /admin/tpl/default/img/personal-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/personal-info.png -------------------------------------------------------------------------------- /admin/tpl/default/img/select-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/select-bg.png -------------------------------------------------------------------------------- /admin/tpl/default/img/skin-nav-bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/skin-nav-bullets.png -------------------------------------------------------------------------------- /admin/tpl/default/img/table-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/table-img.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /admin/tpl/default/img/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/admin/tpl/default/img/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /admin/tpl/default/sys_home.php: -------------------------------------------------------------------------------- 1 | 6 |
7 | 19 |
-------------------------------------------------------------------------------- /admin/tpl/default/upload_form.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Upload Form 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |

14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /admin/tpl/default/upload_success.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Upload Form 4 | 5 | 6 | 7 |

Your file was successfully uploaded!

8 | 9 | 14 | 15 |

16 | 17 | 18 | -------------------------------------------------------------------------------- /admin/tpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteRule ^(.*)$ index.php?/$1 [L] 3 | 4 | -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- 1 | output->set_header('Content-Type: application/json; charset=utf-8'); 9 | } 10 | 11 | public function api_article_list($cid){ 12 | $data=$this->subNav($cid); 13 | $result=$this->JSON(200,"返回成功",$data); 14 | //print_r($result); 15 | $this->output->set_output(htmlspecialchars_decode($result)); 16 | } 17 | 18 | public function api_test(){ 19 | $data=array("name"=>"rico","sex"=>"boy","age"=>27); 20 | $result=$this->JSON(200,"返回成功",$data); 21 | $this->output->set_output(htmlspecialchars_decode($result)); 22 | } 23 | 24 | } 25 | ?> -------------------------------------------------------------------------------- /application/controllers/article.php: -------------------------------------------------------------------------------- 1 | siteInfo(); 11 | $data["navListArr"]=$this->navListArr(); 12 | $data["article_info"]=$this->get_Article_info(); 13 | $cid=$data["article_info"]['cid']; 14 | $header=$this->cartInfo($cid); 15 | if(!empty($header)){ 16 | $data['comon_cart_info']=$header; 17 | } 18 | //当前栏目处理 19 | $topSortId=$this->handlSortParent($cid); 20 | if($topSortId!=0){ 21 | $topSortId=$topSortId; 22 | }else{ 23 | $topSortId=$cid; 24 | }; 25 | $data["subNav_list"]=$this->subNav($topSortId); 26 | $this->load->view('show_news',$data); 27 | $this->load->view('footer',$data); 28 | } 29 | protected function get_Article_info(){ 30 | $showId=$this->uri->segment(3); 31 | $showArr=$this->Article_m->get_id_article($showId); 32 | return $showArr; 33 | } 34 | //当前类别的子菜单 35 | protected function subNav($pid){ 36 | $arr=array(); 37 | $arr=$this->Category_m->get_all_cate($pid,false,1); 38 | return $arr; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/controllers/page.php: -------------------------------------------------------------------------------- 1 | 18 | * @see http://codeigniter.com/user_guide/general/urls.html 19 | */ 20 | public function index() 21 | { 22 | $this->load->view('welcome_message'); 23 | } 24 | } 25 | 26 | /* End of file welcome.php */ 27 | /* Location: ./application/controllers/welcome.php */ -------------------------------------------------------------------------------- /application/core/N5Font_Loader.php: -------------------------------------------------------------------------------- 1 | _ci_model_paths); 26 | } 27 | 28 | // ------------------------------------------------------------------------ 29 | 30 | } 31 | -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

A PHP Error was encountered

4 | 5 |

Severity:

6 |

Message:

7 |

Filename:

8 |

Line Number:

9 | 10 |
-------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/System_m.php: -------------------------------------------------------------------------------- 1 | tableName = (isset($arr['tableName'])) ? $arr['tableName'] : 'my_site_config'; 8 | } 9 | //查询正个表所有信息 10 | public function get_id_siteInfo($siteId){ 11 | $query = $this->db->get_where($this->tableName,array('siteId' => $siteId)); 12 | return $query->row_array(); 13 | } 14 | //更新站点信息 15 | public function updata_siteInfo($siteId,$arr){ 16 | $this->db->where('siteId',$siteId); 17 | $this->db->update($this->tableName,$arr); 18 | return $this->db->affected_rows(); 19 | } 20 | 21 | } -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/footer.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /shared/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteCond $1 !^(index\\.php|ue|kindeditor|robots\\.txt) 3 | RewriteRule ^(.*)$ index.php?/$1 [L] 4 | 5 | -------------------------------------------------------------------------------- /shared/config/constant.php: -------------------------------------------------------------------------------- 1 | array('autor'=>'978873550@qq.com','doc_name'=>'default','version'=>'1.0')); 9 | ?> -------------------------------------------------------------------------------- /shared/duoshuo/Exception.php: -------------------------------------------------------------------------------- 1 | 30, 23 | 'errorMessage' => 'Duoshuo plugin hasn\'t been activated.' 24 | ); 25 | echo json_encode($response); 26 | exit; 27 | } 28 | 29 | require DUOSHUO_PLUGIN_PATH . '/LocalServer.php'; 30 | 31 | $plugin = Duoshuo_WordPress::getInstance(); 32 | 33 | try{ 34 | if ($_SERVER['REQUEST_METHOD'] == 'POST'){ 35 | $input = $_POST; 36 | if (isset($input['spam_confirmed'])) //D-Z Theme 会给POST设置这个参数 37 | unset($input['spam_confirmed']); 38 | 39 | $server = new Duoshuo_LocalServer($plugin); 40 | $server->dispatch($input); 41 | } 42 | } 43 | catch (Exception $e){ 44 | $plugin->sendException($e); 45 | } 46 | -------------------------------------------------------------------------------- /shared/duoshuo/config.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |

注册站点

4 | packageOptions() + array( 7 | 'system' => 'wordpress', 8 | 'callback' => admin_url('admin.php?page=duoshuo'), 9 | 'user_key' => $user->ID, 10 | 'user_name' => $user->display_name, 11 | 'sync_log' => 1, 12 | ); 13 | ?> 14 | 15 |
16 | -------------------------------------------------------------------------------- /shared/duoshuo/images/head-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/duoshuo/images/head-icon.gif -------------------------------------------------------------------------------- /shared/duoshuo/images/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/duoshuo/images/icon.gif -------------------------------------------------------------------------------- /shared/duoshuo/images/menu-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/duoshuo/images/menu-icon.png -------------------------------------------------------------------------------- /shared/duoshuo/images/service_icons_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/duoshuo/images/service_icons_32x32.png -------------------------------------------------------------------------------- /shared/duoshuo/images/waiting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/duoshuo/images/waiting.gif -------------------------------------------------------------------------------- /shared/duoshuo/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared/duoshuo/manage.php: -------------------------------------------------------------------------------- 1 | 2 | $this->jwt(), 5 | ); 6 | $adminUrl = 'http://' . $this->shortName . '.' . self::DOMAIN.'/admin/?' . http_build_query($params, null, '&'); 7 | ?> 8 |
9 | 10 |

多说评论管理 11 | 在新窗口中打开 12 |

13 | 14 |
15 | 16 | 27 | -------------------------------------------------------------------------------- /shared/duoshuo/oauth-proxy.php: -------------------------------------------------------------------------------- 1 | pluginDirUrl; ?>styles.css" type="text/css" /> 2 | $this->jwt(), 5 | ); 6 | $adminUrl = 'http://' . $this->shortName . '.' . self::DOMAIN . '/admin/settings/?' . http_build_query($params, null, '&'); 7 | ?> 8 |
9 | 10 |

多说评论框设置 11 | 在新窗口中打开

12 | 13 |
14 | 15 | 26 | -------------------------------------------------------------------------------- /shared/duoshuo/profile.php: -------------------------------------------------------------------------------- 1 | $this->jwt(), 4 | ); 5 | $settingsUrl = 'http://' . self::DOMAIN . '/settings/?' . http_build_query($params, null, '&'); 6 | ?> 7 | 8 | 9 |
10 | 11 |

我的多说帐号 12 | 在新窗口中打开 13 |

14 | 15 |
16 | -------------------------------------------------------------------------------- /shared/duoshuo/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/duoshuo/screenshot-1.png -------------------------------------------------------------------------------- /shared/duoshuo/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/duoshuo/screenshot-2.png -------------------------------------------------------------------------------- /shared/duoshuo/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/duoshuo/screenshot-3.png -------------------------------------------------------------------------------- /shared/duoshuo/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/duoshuo/screenshot-4.png -------------------------------------------------------------------------------- /shared/duoshuo/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/duoshuo/screenshot-5.png -------------------------------------------------------------------------------- /shared/duoshuo/screenshot-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/duoshuo/screenshot-6.jpg -------------------------------------------------------------------------------- /shared/duoshuo/statistics.php: -------------------------------------------------------------------------------- 1 | 2 | $this->jwt(), 5 | ); 6 | $adminUrl = 'http://' . $this->shortName . '.' . self::DOMAIN . '/admin/statistics/?' . http_build_query($params, null, '&'); 7 | ?> 8 |
9 | 10 |

数据统计 11 | 在新窗口中打开

12 | 13 |
14 | -------------------------------------------------------------------------------- /shared/duoshuo/sync.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |

数据同步

4 |
5 |

安装成功了!只要一键将您的用户、文章和评论信息同步到多说,多说就可以开始为您服务了!开始同步

6 |

7 |

同步完成,现在你可以设置管理

8 |
9 | 10 |
11 | -------------------------------------------------------------------------------- /shared/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /shared/kindeditor/php/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /shared/kindeditor/plugins/autoheight/autoheight.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * KindEditor - WYSIWYG HTML Editor for Internet 3 | * Copyright (C) 2006-2011 kindsoft.net 4 | * 5 | * @author Roddy 6 | * @site http://www.kindsoft.net/ 7 | * @licence http://www.kindsoft.net/license.php 8 | *******************************************************************************/ 9 | 10 | KindEditor.plugin('autoheight', function(K) { 11 | var self = this; 12 | 13 | if (!self.autoHeightMode) { 14 | return; 15 | } 16 | 17 | var edit = self.edit; 18 | var body = edit.doc.body; 19 | var minHeight = K.removeUnit(self.height); 20 | 21 | edit.iframe[0].scroll = 'no'; 22 | body.style.overflowY = 'hidden'; 23 | 24 | edit.afterChange(function() { 25 | self.resize(null, Math.max((K.IE ? body.scrollHeight : body.offsetHeight) + 62, minHeight)); 26 | }); 27 | }); 28 | -------------------------------------------------------------------------------- /shared/kindeditor/plugins/baidumap/map.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Baidu Maps 6 | 10 | 11 | 39 | 40 | 41 |
42 | 43 | 44 | -------------------------------------------------------------------------------- /shared/kindeditor/plugins/clearhtml/clearhtml.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * KindEditor - WYSIWYG HTML Editor for Internet 3 | * Copyright (C) 2006-2011 kindsoft.net 4 | * 5 | * @author Roddy 6 | * @site http://www.kindsoft.net/ 7 | * @licence http://www.kindsoft.net/license.php 8 | *******************************************************************************/ 9 | 10 | KindEditor.plugin('clearhtml', function(K) { 11 | var self = this, name = 'clearhtml'; 12 | self.clickToolbar(name, function() { 13 | self.focus(); 14 | var html = self.html(); 15 | html = html.replace(/(]*>)([\s\S]*?)(<\/script>)/ig, ''); 16 | html = html.replace(/(]*>)([\s\S]*?)(<\/style>)/ig, ''); 17 | html = K.formatHtml(html, { 18 | a : ['href', 'target'], 19 | embed : ['src', 'width', 'height', 'type', 'loop', 'autostart', 'quality', '.width', '.height', 'align', 'allowscriptaccess'], 20 | img : ['src', 'width', 'height', 'border', 'alt', 'title', '.width', '.height'], 21 | table : ['border'], 22 | 'td,th' : ['rowspan', 'colspan'], 23 | 'div,hr,br,tbody,tr,p,ol,ul,li,blockquote,h1,h2,h3,h4,h5,h6' : [] 24 | }); 25 | self.html(html); 26 | self.cmd.selection(true); 27 | self.addBookmark(); 28 | }); 29 | }); 30 | -------------------------------------------------------------------------------- /shared/kindeditor/plugins/code/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} 2 | 3 | pre.prettyprint { 4 | border: 0; 5 | border-left: 3px solid rgb(204, 204, 204); 6 | margin-left: 2em; 7 | padding: 0.5em; 8 | font-size: 110%; 9 | display: block; 10 | font-family: "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace; 11 | margin: 1em 0px; 12 | white-space: pre; 13 | } 14 | -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/0.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/1.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/10.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/100.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/101.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/102.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/103.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/104.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/105.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/106.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/107.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/108.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/109.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/11.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/110.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/111.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/112.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/113.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/114.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/115.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/116.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/117.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/118.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/119.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/120.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/121.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/122.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/123.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/124.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/125.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/126.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/127.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/128.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/129.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/130.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/131.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/132.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/133.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/134.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/46.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/47.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/48.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/49.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/5.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/50.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/51.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/52.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/53.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/54.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/55.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/56.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/57.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/58.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/59.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/6.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/60.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/61.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/62.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/63.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/64.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/65.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/66.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/67.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/68.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/69.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/7.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/70.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/71.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/72.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/73.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/74.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/75.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/76.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/77.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/78.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/79.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/8.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/80.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/81.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/82.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/83.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/84.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/85.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/86.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/87.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/88.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/89.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/9.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/90.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/91.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/92.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/93.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/94.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/95.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/96.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/97.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/98.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/99.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/emoticons/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/emoticons/images/static.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/filemanager/images/folder-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/filemanager/images/folder-16.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/filemanager/images/folder-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/filemanager/images/folder-64.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/filemanager/images/go-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/filemanager/images/go-up.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/image/images/align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/image/images/align_left.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/image/images/align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/image/images/align_right.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/image/images/align_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/image/images/align_top.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/image/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/image/images/refresh.png -------------------------------------------------------------------------------- /shared/kindeditor/plugins/lineheight/lineheight.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * KindEditor - WYSIWYG HTML Editor for Internet 3 | * Copyright (C) 2006-2011 kindsoft.net 4 | * 5 | * @author Roddy 6 | * @site http://www.kindsoft.net/ 7 | * @licence http://www.kindsoft.net/license.php 8 | *******************************************************************************/ 9 | 10 | KindEditor.plugin('lineheight', function(K) { 11 | var self = this, name = 'lineheight', lang = self.lang(name + '.'); 12 | self.clickToolbar(name, function() { 13 | var curVal = '', commonNode = self.cmd.commonNode({'*' : '.line-height'}); 14 | if (commonNode) { 15 | curVal = commonNode.css('line-height'); 16 | } 17 | var menu = self.createMenu({ 18 | name : name, 19 | width : 150 20 | }); 21 | K.each(lang.lineHeight, function(i, row) { 22 | K.each(row, function(key, val) { 23 | menu.addItem({ 24 | title : val, 25 | checked : curVal === key, 26 | click : function() { 27 | self.cmd.toggle('', { 28 | span : '.line-height=' + key 29 | }); 30 | self.updateState(); 31 | self.addBookmark(); 32 | self.hideMenu(); 33 | } 34 | }); 35 | }); 36 | }); 37 | }); 38 | }); 39 | -------------------------------------------------------------------------------- /shared/kindeditor/plugins/multiimage/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/multiimage/images/image.png -------------------------------------------------------------------------------- /shared/kindeditor/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /shared/kindeditor/plugins/multiimage/images/select-files-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/multiimage/images/select-files-zh_CN.png -------------------------------------------------------------------------------- /shared/kindeditor/plugins/multiimage/images/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/multiimage/images/swfupload.swf -------------------------------------------------------------------------------- /shared/kindeditor/plugins/pagebreak/pagebreak.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * KindEditor - WYSIWYG HTML Editor for Internet 3 | * Copyright (C) 2006-2011 kindsoft.net 4 | * 5 | * @author Roddy 6 | * @site http://www.kindsoft.net/ 7 | * @licence http://www.kindsoft.net/license.php 8 | *******************************************************************************/ 9 | 10 | KindEditor.plugin('pagebreak', function(K) { 11 | var self = this; 12 | var name = 'pagebreak'; 13 | var pagebreakHtml = K.undef(self.pagebreakHtml, '
'); 14 | 15 | self.clickToolbar(name, function() { 16 | var cmd = self.cmd, range = cmd.range; 17 | self.focus(); 18 | range.enlarge(true); 19 | cmd.split(true); 20 | var tail = self.newlineTag == 'br' || K.WEBKIT ? '' : '

'; 21 | self.insertHtml(pagebreakHtml + tail); 22 | if (tail !== '') { 23 | var p = K('#__kindeditor_tail_tag__', self.edit.doc); 24 | range.selectNodeContents(p[0]); 25 | p.removeAttr('id'); 26 | cmd.select(); 27 | } 28 | }); 29 | }); 30 | -------------------------------------------------------------------------------- /shared/kindeditor/plugins/preview/preview.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * KindEditor - WYSIWYG HTML Editor for Internet 3 | * Copyright (C) 2006-2011 kindsoft.net 4 | * 5 | * @author Roddy 6 | * @site http://www.kindsoft.net/ 7 | * @licence http://www.kindsoft.net/license.php 8 | *******************************************************************************/ 9 | 10 | KindEditor.plugin('preview', function(K) { 11 | var self = this, name = 'preview', undefined; 12 | self.clickToolbar(name, function() { 13 | var lang = self.lang(name + '.'), 14 | html = '
' + 15 | '' + 16 | '
', 17 | dialog = self.createDialog({ 18 | name : name, 19 | width : 750, 20 | title : self.lang(name), 21 | body : html 22 | }), 23 | iframe = K('iframe', dialog.div), 24 | doc = K.iframeDoc(iframe); 25 | doc.open(); 26 | doc.write(self.fullHtml()); 27 | doc.close(); 28 | K(doc.body).css('background-color', '#FFF'); 29 | iframe[0].contentWindow.focus(); 30 | }); 31 | }); 32 | -------------------------------------------------------------------------------- /shared/kindeditor/plugins/runCode/btn_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/plugins/runCode/btn_bg.gif -------------------------------------------------------------------------------- /shared/kindeditor/plugins/runCode/runCode.css: -------------------------------------------------------------------------------- 1 | .btn02 {width:60px; height:24px; border:1px solid #87a3c1; background:url(btn_bg.gif); color:#555; font-size:12px; line-height:180%; cursor:pointer;} 2 | .btn04 {width:60px; height:24px; border:1px solid #a2904d; background:url(btn_bg.gif) 0 -66px; color:#630; font-size:12px; cursor:pointer; line-height:180%;} -------------------------------------------------------------------------------- /shared/kindeditor/plugins/runCode/zztuku_runCode.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * KindEditor - WYSIWYG HTML Editor for Internet 3 | * Copyright (C) 2006-2011 kindsoft.net 4 | * 5 | * 站长图库 - http://www.zztuku.com 6 | * 7 | * @author Roddy 8 | * @site http://www.kindsoft.net/ 9 | * @licence http://www.kindsoft.net/license.php 10 | *******************************************************************************/ 11 | 12 | 13 | 14 | 15 | function runCode(obj) { 16 | var winname = window.open('', "_blank", ''); 17 | winname.document.open('text/html', 'replace'); 18 | winname.opener = null // 防止代码对论谈页面修改 19 | winname.document.write(obj.value); 20 | winname.document.close(); 21 | } 22 | function saveCode(obj) { 23 | var winname = window.open('', '_blank', 'top=10000'); 24 | winname.document.open('text/html', 'replace'); 25 | winname.document.write(obj.value); 26 | winname.document.execCommand('saveas','','code.htm'); 27 | winname.close(); 28 | } 29 | function copycode(obj) { 30 | if(obj.style.display != 'none') { 31 | var rng = document.body.createTextRange(); 32 | rng.moveToElementText(obj); 33 | rng.scrollIntoView(); 34 | rng.select(); 35 | rng.execCommand("Copy"); 36 | rng.collapse(false); 37 | alert('代码已复制到剪切板'); 38 | } 39 | } -------------------------------------------------------------------------------- /shared/kindeditor/plugins/template/html/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入标题 9 |

10 |

11 | 在此处输入内容 12 |

13 | 14 | -------------------------------------------------------------------------------- /shared/kindeditor/plugins/template/html/2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 标题 9 |

10 | 11 | 12 | 13 | 16 | 19 | 20 | 21 | 24 | 27 | 28 | 29 | 32 | 35 | 36 | 37 |
14 |

标题1

15 |
17 |

标题1

18 |
22 | 内容1 23 | 25 | 内容2 26 |
30 | 内容3 31 | 33 | 内容4 34 |
38 |

39 | 表格说明 40 |

41 | 42 | -------------------------------------------------------------------------------- /shared/kindeditor/plugins/template/html/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入内容 9 |

10 |
    11 |
  1. 12 | 描述1 13 |
  2. 14 |
  3. 15 | 描述2 16 |
  4. 17 |
  5. 18 | 描述3 19 |
  6. 20 |
21 |

22 | 在此处输入内容 23 |

24 |
    25 |
  • 26 | 描述1 27 |
  • 28 |
  • 29 | 描述2 30 |
  • 31 |
  • 32 | 描述3 33 |
  • 34 |
35 | 36 | -------------------------------------------------------------------------------- /shared/kindeditor/themes/common/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/themes/common/anchor.gif -------------------------------------------------------------------------------- /shared/kindeditor/themes/common/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/themes/common/blank.gif -------------------------------------------------------------------------------- /shared/kindeditor/themes/common/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/themes/common/flash.gif -------------------------------------------------------------------------------- /shared/kindeditor/themes/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/themes/common/loading.gif -------------------------------------------------------------------------------- /shared/kindeditor/themes/common/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/themes/common/media.gif -------------------------------------------------------------------------------- /shared/kindeditor/themes/common/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/themes/common/rm.gif -------------------------------------------------------------------------------- /shared/kindeditor/themes/default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/themes/default/background.png -------------------------------------------------------------------------------- /shared/kindeditor/themes/default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/themes/default/default.png -------------------------------------------------------------------------------- /shared/kindeditor/themes/qq/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/kindeditor/themes/qq/editor.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /shared/ue/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /shared/ue/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/background/images/success.png -------------------------------------------------------------------------------- /shared/ue/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /shared/ue/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /shared/ue/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /shared/ue/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /shared/ue/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /shared/ue/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /shared/ue/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /shared/ue/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /shared/ue/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /shared/ue/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /shared/ue/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /shared/ue/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/image/images/image.png -------------------------------------------------------------------------------- /shared/ue/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /shared/ue/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/image/images/success.png -------------------------------------------------------------------------------- /shared/ue/dialogs/music/music.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 插入音乐 6 | 7 | 8 | 9 | 10 |
11 | 15 |
16 | 17 |
18 |
19 |
20 |
21 | 22 | 31 | 32 | -------------------------------------------------------------------------------- /shared/ue/dialogs/preview/preview.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 | 40 | -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /shared/ue/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /shared/ue/dialogs/spechars/spechars.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 |
17 |
18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /shared/ue/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /shared/ue/dialogs/table/edittip.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 表格删除提示 5 | 6 | 17 | 18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 |
26 |
27 | 32 | 33 | -------------------------------------------------------------------------------- /shared/ue/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /shared/ue/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /shared/ue/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /shared/ue/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /shared/ue/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /shared/ue/dialogs/template/template.css: -------------------------------------------------------------------------------- 1 | .wrap{ padding: 5px;font-size: 14px;} 2 | .left{width:425px;float: left;} 3 | .right{width:160px;border: 1px solid #ccc;float: right;padding: 5px;margin-right: 5px;} 4 | .right .pre{height: 332px;overflow-y: auto;} 5 | .right .preitem{border: white 1px solid;margin: 5px 0;padding: 2px 0;} 6 | .right .preitem:hover{background-color: lemonChiffon;cursor: pointer;border: #ccc 1px solid;} 7 | .right .preitem img{display: block;margin: 0 auto;width:100px;} 8 | .clear{clear: both;} 9 | .top{height:26px;line-height: 26px;padding: 5px;} 10 | .bottom{height:320px;width:100%;margin: 0 auto;} 11 | .transparent{ background: url("images/bg.gif") repeat;} 12 | .bottom table tr td{border:1px dashed #ccc;} 13 | #colorPicker{width: 17px;height: 17px;border: 1px solid #CCC;display: inline-block;border-radius: 3px;box-shadow: 2px 2px 5px #D3D6DA;} 14 | .border_style1{padding:2px;border: 1px solid #ccc;border-radius: 5px;box-shadow:2px 2px 5px #d3d6da;} 15 | p{margin: 5px 0} 16 | table{clear:both;margin-bottom:10px;border-collapse:collapse;word-break:break-all;} 17 | li{clear:both} 18 | ol{padding-left:40px; } -------------------------------------------------------------------------------- /shared/ue/dialogs/template/template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 |
13 | 14 |
15 |
16 |
17 |
18 | 19 |
20 |
21 |
22 |
23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/image.png -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /shared/ue/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/video/images/success.png -------------------------------------------------------------------------------- /shared/ue/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /shared/ue/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /shared/ue/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/addimage.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/background.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/button.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/copy.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/localimage.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/music.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /shared/ue/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/en/images/upload.png -------------------------------------------------------------------------------- /shared/ue/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /shared/ue/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /shared/ue/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /shared/ue/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /shared/ue/php/action_crawler.php: -------------------------------------------------------------------------------- 1 | $CONFIG['catcherPathFormat'], 14 | "maxSize" => $CONFIG['catcherMaxSize'], 15 | "allowFiles" => $CONFIG['catcherAllowFiles'], 16 | "oriName" => "remote.png" 17 | ); 18 | $fieldName = $CONFIG['catcherFieldName']; 19 | 20 | /* 抓取远程图片 */ 21 | $list = array(); 22 | if (isset($_POST[$fieldName])) { 23 | $source = $_POST[$fieldName]; 24 | } else { 25 | $source = $_GET[$fieldName]; 26 | } 27 | foreach ($source as $imgUrl) { 28 | $item = new Uploader($imgUrl, $config, "remote"); 29 | $info = $item->getFileInfo(); 30 | array_push($list, array( 31 | "state" => $info["state"], 32 | "url" => $info["url"], 33 | "size" => $info["size"], 34 | "title" => htmlspecialchars($info["title"]), 35 | "original" => htmlspecialchars($info["original"]), 36 | "source" => htmlspecialchars($imgUrl) 37 | )); 38 | } 39 | 40 | /* 返回抓取数据 */ 41 | return json_encode(array( 42 | 'state'=> count($list) ? 'SUCCESS':'ERROR', 43 | 'list'=> $list 44 | )); -------------------------------------------------------------------------------- /shared/ue/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/arrow.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/charts.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/filescan.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/icons.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/icons.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/loading.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/lock.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/scale.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/sortable.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/upload.png -------------------------------------------------------------------------------- /shared/ue/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/word.gif -------------------------------------------------------------------------------- /shared/ue/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /shared/ue/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /shared/ue/third-party/highcharts/modules/heatmap.js: -------------------------------------------------------------------------------- 1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:d dataMax) { 39 | dataMax = value; 40 | } else if (value < dataMin) { 41 | dataMin = value; 42 | } 43 | } 44 | }); 45 | 46 | series.translateColors(dataMin, dataMax); 47 | }, 48 | 49 | getBox: function () {} 50 | 51 | }); 52 | 53 | }(Highcharts)); 54 | -------------------------------------------------------------------------------- /shared/ue/third-party/highcharts/modules/no-data-to-display.js: -------------------------------------------------------------------------------- 1 | /* 2 | Highcharts JS v3.0.6 (2013-10-04) 3 | Plugin for displaying a message when there is no data visible in chart. 4 | 5 | (c) 2010-2013 Highsoft AS 6 | Author: Øystein Moseng 7 | 8 | License: www.highcharts.com/license 9 | */ 10 | (function(c){function f(){return!!this.points.length}function g(){this.hasData()?this.hideNoData():this.showNoData()}var d=c.seriesTypes,e=c.Chart.prototype,h=c.getOptions(),i=c.extend;i(h.lang,{noData:"No data to display"});h.noData={position:{x:0,y:0,align:"center",verticalAlign:"middle"},attr:{},style:{fontWeight:"bold",fontSize:"12px",color:"#60606a"}};d.pie.prototype.hasData=f;if(d.gauge)d.gauge.prototype.hasData=f;if(d.waterfall)d.waterfall.prototype.hasData=f;c.Series.prototype.hasData=function(){return this.dataMax!== 11 | void 0&&this.dataMin!==void 0};e.showNoData=function(a){var b=this.options,a=a||b.lang.noData,b=b.noData;if(!this.noDataLabel)this.noDataLabel=this.renderer.label(a,0,0,null,null,null,null,null,"no-data").attr(b.attr).css(b.style).add(),this.noDataLabel.align(i(this.noDataLabel.getBBox(),b.position),!1,"plotBox")};e.hideNoData=function(){if(this.noDataLabel)this.noDataLabel=this.noDataLabel.destroy()};e.hasData=function(){for(var a=this.series,b=a.length;b--;)if(a[b].hasData()&&!a[b].options.isInternal)return!0; 12 | return!1};e.callbacks.push(function(a){c.addEvent(a,"load",g);c.addEvent(a,"redraw",g)})})(Highcharts); 13 | -------------------------------------------------------------------------------- /shared/ue/third-party/runcode/addCustomizeRunCode.js: -------------------------------------------------------------------------------- 1 | UE.registerUI('runCode',function(editor,uiName){ 2 | //注册按钮执行时的command命令,使用命令默认就会带有回退操作 3 | editor.registerCommand(uiName,{ 4 | execCommand:function(){ 5 | //alert('execCommand:' + uiName) 6 | } 7 | }); 8 | 9 | //创建一个button 10 | var btn = new UE.ui.Button({ 11 | //按钮的名字 12 | name:uiName, 13 | //提示 14 | title:uiName, 15 | //需要添加的额外样式,指定icon图标,这里默认使用一个重复的icon 16 | cssRules :'background-position: -440px -40px;', 17 | //点击时执行的命令 18 | onclick:function () { 19 | //这里可以不用执行命令,做你自己的操作也可 20 | editor.execCommand("inserthtml","
");
21 |         }
22 |     });
23 | 
24 |     //当点到编辑内容上时,按钮要做的状态反射
25 |     editor.addListener('selectionchange', function () {
26 |         var state = editor.queryCommandState(uiName);
27 |         if (state == -1) {
28 |             btn.setDisabled(true);
29 |             btn.setChecked(false);
30 |         } else {
31 |             btn.setDisabled(false);
32 |             btn.setChecked(state);
33 |         }
34 |     });
35 | 
36 |     //因为你是添加button,所以需要返回这个button
37 |     return btn;
38 | }/*index 指定添加到工具栏上的那个位置,默认时追加到最后,editorId 指定这个UI是那个编辑器实例上的,默认是页面上所有的编辑器都会添加这个按钮*/);


--------------------------------------------------------------------------------
/shared/ue/third-party/snapscreen/UEditorSnapscreen.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/third-party/snapscreen/UEditorSnapscreen.exe


--------------------------------------------------------------------------------
/shared/ue/third-party/video-js/font/vjs.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/third-party/video-js/font/vjs.eot


--------------------------------------------------------------------------------
/shared/ue/third-party/video-js/font/vjs.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/third-party/video-js/font/vjs.ttf


--------------------------------------------------------------------------------
/shared/ue/third-party/video-js/font/vjs.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/third-party/video-js/font/vjs.woff


--------------------------------------------------------------------------------
/shared/ue/third-party/video-js/video-js.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/third-party/video-js/video-js.swf


--------------------------------------------------------------------------------
/shared/ue/third-party/webuploader/Uploader.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/third-party/webuploader/Uploader.swf


--------------------------------------------------------------------------------
/shared/ue/third-party/webuploader/webuploader.css:
--------------------------------------------------------------------------------
 1 | .webuploader-container {
 2 | 	position: relative;
 3 | }
 4 | .webuploader-element-invisible {
 5 | 	position: absolute !important;
 6 | 	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
 7 |     clip: rect(1px,1px,1px,1px);
 8 | }
 9 | .webuploader-pick {
10 | 	position: relative;
11 | 	display: inline-block;
12 | 	cursor: pointer;
13 | 	background: #00b7ee;
14 | 	padding: 10px 15px;
15 | 	color: #fff;
16 | 	text-align: center;
17 | 	border-radius: 3px;
18 | 	overflow: hidden;
19 | }
20 | .webuploader-pick-hover {
21 | 	background: #00a2d4;
22 | }
23 | 
24 | .webuploader-pick-disable {
25 | 	opacity: 0.6;
26 | 	pointer-events:none;
27 | }
28 | 
29 | 


--------------------------------------------------------------------------------
/shared/ue/third-party/zeroclipboard/ZeroClipboard.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/third-party/zeroclipboard/ZeroClipboard.swf


--------------------------------------------------------------------------------
/shared/ue/third-party/插件备注.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/shared/ue/third-party/插件备注.txt


--------------------------------------------------------------------------------
/static/css/bug.css:
--------------------------------------------------------------------------------
1 | /*ie6*/
2 | .info-mod ul li .img-txt-attach-mod{_width:235px;}
3 | .info-mod ul li{_margin:2% 1%;}
4 | .content-show{_width: 76%;}
5 | .content-attach{_width:18%;}


--------------------------------------------------------------------------------
/static/css/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/fonts/FontAwesome.otf


--------------------------------------------------------------------------------
/static/css/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/fonts/fontawesome-webfont.eot


--------------------------------------------------------------------------------
/static/css/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/fonts/fontawesome-webfont.ttf


--------------------------------------------------------------------------------
/static/css/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/fonts/fontawesome-webfont.woff


--------------------------------------------------------------------------------
/static/css/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/fonts/glyphicons-halflings-regular.eot


--------------------------------------------------------------------------------
/static/css/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/fonts/glyphicons-halflings-regular.ttf


--------------------------------------------------------------------------------
/static/css/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/fonts/glyphicons-halflings-regular.woff


--------------------------------------------------------------------------------
/static/css/img/.picasa.ini:
--------------------------------------------------------------------------------
1 | [navLiIco_2.png]
2 | rotate=rotate(2)
3 | 


--------------------------------------------------------------------------------
/static/css/img/arrow_large_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/arrow_large_left.png


--------------------------------------------------------------------------------
/static/css/img/arrow_large_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/arrow_large_right.png


--------------------------------------------------------------------------------
/static/css/img/arrow_left2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/arrow_left2.png


--------------------------------------------------------------------------------
/static/css/img/arrow_right2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/arrow_right2.png


--------------------------------------------------------------------------------
/static/css/img/bannerBg_0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/bannerBg_0.jpg


--------------------------------------------------------------------------------
/static/css/img/bg_direction_nav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/bg_direction_nav.png


--------------------------------------------------------------------------------
/static/css/img/btIco_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/btIco_0.png


--------------------------------------------------------------------------------
/static/css/img/bullet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/bullet.png


--------------------------------------------------------------------------------
/static/css/img/bx_loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/bx_loader.gif


--------------------------------------------------------------------------------
/static/css/img/controIco_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/controIco_0.png


--------------------------------------------------------------------------------
/static/css/img/controIco_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/controIco_1.png


--------------------------------------------------------------------------------
/static/css/img/controIco_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/controIco_2.png


--------------------------------------------------------------------------------
/static/css/img/ico_reorder_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/ico_reorder_0.png


--------------------------------------------------------------------------------
/static/css/img/large_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/large_left.png


--------------------------------------------------------------------------------
/static/css/img/large_left_bk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/large_left_bk.png


--------------------------------------------------------------------------------
/static/css/img/large_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/large_right.png


--------------------------------------------------------------------------------
/static/css/img/large_right_bk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/large_right_bk.png


--------------------------------------------------------------------------------
/static/css/img/later_btn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/later_btn.png


--------------------------------------------------------------------------------
/static/css/img/left-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/left-hover.png


--------------------------------------------------------------------------------
/static/css/img/left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/left.png


--------------------------------------------------------------------------------
/static/css/img/liIco_3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/liIco_3.gif


--------------------------------------------------------------------------------
/static/css/img/loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/loader.gif


--------------------------------------------------------------------------------
/static/css/img/loader2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/loader2.gif


--------------------------------------------------------------------------------
/static/css/img/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/loading.gif


--------------------------------------------------------------------------------
/static/css/img/navLiIco_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/navLiIco_0.png


--------------------------------------------------------------------------------
/static/css/img/navLiIco_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/navLiIco_1.png


--------------------------------------------------------------------------------
/static/css/img/navLiIco_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/navLiIco_2.png


--------------------------------------------------------------------------------
/static/css/img/next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/next.png


--------------------------------------------------------------------------------
/static/css/img/opcityBg_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/opcityBg_0.png


--------------------------------------------------------------------------------
/static/css/img/prev.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/prev.png


--------------------------------------------------------------------------------
/static/css/img/repeatBg_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/repeatBg_0.png


--------------------------------------------------------------------------------
/static/css/img/right-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/right-hover.png


--------------------------------------------------------------------------------
/static/css/img/right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/right.png


--------------------------------------------------------------------------------
/static/css/img/searchbtn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/searchbtn.png


--------------------------------------------------------------------------------
/static/css/img/serachIco_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/serachIco_0.png


--------------------------------------------------------------------------------
/static/css/img/sprite_control_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/sprite_control_0.png


--------------------------------------------------------------------------------
/static/css/img/squarespinner_2x.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/squarespinner_2x.gif


--------------------------------------------------------------------------------
/static/css/img/tipsIco_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/tipsIco_0.png


--------------------------------------------------------------------------------
/static/css/img/tipsIco_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/tipsIco_1.png


--------------------------------------------------------------------------------
/static/css/img/xiaoyun-20131225.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/xiaoyun-20131225.gif


--------------------------------------------------------------------------------
/static/css/img/yym_returnTop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/img/yym_returnTop.png


--------------------------------------------------------------------------------
/static/css/jc.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/css/jc.jpg


--------------------------------------------------------------------------------
/static/css/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}
 2 | 
 3 | pre.prettyprint {
 4 | 	border: 0;
 5 | 	border-left: 3px solid #ccc;
 6 | 	margin-left: 2em;
 7 | 	padding: 0.5em;
 8 | 	font-size: 110%;
 9 | 	display: block;
10 | 	font-family: "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
11 | 	margin: 1em 0px;
12 | 	white-space: pre;
13 | 	background:#f2f2f2;
14 | }
15 | 


--------------------------------------------------------------------------------
/static/css/ueRunCode.css:
--------------------------------------------------------------------------------
1 | pre{margin: 0;}
2 | .run-code-mod{border: 1px solid #ccc;margin: 10px 0;overflow: hidden;background:#f2f2f2;}
3 | .run-code-textArea{background:#fff;box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;overflow: hidden;padding:5px;margin: 0;}
4 | .run-code-textArea textarea{width: 100%;border:none;min-height: 100px;margin: 0;}
5 | .run-code-btn{background: #597ab2;color:#fff;margin:5px;padding:5px;text-align: center;text-decoration: none;width: 80px;border: none;cursor: pointer;}


--------------------------------------------------------------------------------
/static/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/fonts/FontAwesome.otf


--------------------------------------------------------------------------------
/static/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/fonts/fontawesome-webfont.eot


--------------------------------------------------------------------------------
/static/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/fonts/fontawesome-webfont.ttf


--------------------------------------------------------------------------------
/static/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/fonts/fontawesome-webfont.woff


--------------------------------------------------------------------------------
/static/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/fonts/glyphicons-halflings-regular.eot


--------------------------------------------------------------------------------
/static/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/fonts/glyphicons-halflings-regular.ttf


--------------------------------------------------------------------------------
/static/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/fonts/glyphicons-halflings-regular.woff


--------------------------------------------------------------------------------
/static/images/bannerBg_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/bannerBg_1.png


--------------------------------------------------------------------------------
/static/images/ico_flux_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/ico_flux_0.png


--------------------------------------------------------------------------------
/static/images/ico_search_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/ico_search_0.png


--------------------------------------------------------------------------------
/static/images/ico_talk_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/ico_talk_0.png


--------------------------------------------------------------------------------
/static/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/loading.gif


--------------------------------------------------------------------------------
/static/images/loading1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/loading1.gif


--------------------------------------------------------------------------------
/static/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/logo.png


--------------------------------------------------------------------------------
/static/images/logo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/logo2.png


--------------------------------------------------------------------------------
/static/images/noPic_0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/noPic_0.jpg


--------------------------------------------------------------------------------
/static/images/repeatBg_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/repeatBg_0.png


--------------------------------------------------------------------------------
/static/images/smallCode_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/smallCode_2.png


--------------------------------------------------------------------------------
/static/images/sweepCode.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/sweepCode.jpg


--------------------------------------------------------------------------------
/static/images/test_0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/images/test_0.jpg


--------------------------------------------------------------------------------
/static/js/flvplayer.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/js/flvplayer.swf


--------------------------------------------------------------------------------
/static/js/jquery.easing.1.3.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/js/jquery.easing.1.3.js


--------------------------------------------------------------------------------
/static/js/vcastr2.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/static/js/vcastr2.swf


--------------------------------------------------------------------------------
/system/.htaccess:
--------------------------------------------------------------------------------
1 | Deny from all


--------------------------------------------------------------------------------
/system/core/index.html:
--------------------------------------------------------------------------------
 1 | 
 2 | 
 3 | 	403 Forbidden
 4 | 
 5 | 
 6 | 
 7 | 

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/note520/n5admin/c38ad5c5f60f44d3b559324e4c38bd360060afc2/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | --------------------------------------------------------------------------------