├── README └── tp ├── admin.php ├── admin ├── Common │ └── common.php ├── Conf │ ├── config.php │ └── tags.php ├── Lang │ └── zh-cn │ │ ├── ad.php │ │ ├── admin.php │ │ ├── article.php │ │ ├── articlecate.php │ │ ├── common.php │ │ ├── flink.php │ │ ├── group.php │ │ ├── nav.php │ │ ├── node.php │ │ ├── role.php │ │ ├── sellercate.php │ │ ├── sellerlist.php │ │ ├── setting.php │ │ ├── user.php │ │ ├── wfdefination.php │ │ ├── wfnode.php │ │ └── wfprocess.php ├── Lib │ ├── Action │ │ ├── AdAction.class.php │ │ ├── AdboardAction.class.php │ │ ├── AdminAction.class.php │ │ ├── ArticleAction.class.php │ │ ├── ArticleCateAction.class.php │ │ ├── BaseAction.class.php │ │ ├── CacheAction.class.php │ │ ├── FlinkAction.class.php │ │ ├── GroupAction.class.php │ │ ├── IndexAction.class.php │ │ ├── NavAction.class.php │ │ ├── NodeAction.class.php │ │ ├── PublicAction.class.php │ │ ├── RoleAction.class.php │ │ ├── SellerCateAction.class.php │ │ ├── SellerListAction.class.php │ │ ├── SettingAction.class.php │ │ ├── UserAction.class.php │ │ ├── WFDefinationAction.class.php │ │ ├── WFNodeAction.class.php │ │ ├── WFProcessAction.class.php │ │ ├── WFProposalHandlerAction.class.php │ │ ├── WorkFlowAction.class.php │ │ └── WorkFlowServiceAction.class.php │ └── TagLib │ │ └── TagLibTpl.class.php ├── Runtime │ ├── Cache │ │ ├── 4c18d5952d0dbf1eedb8a1ec796fa788.php │ │ ├── 6e0a2ffbae5fbbcd23e7c3063df8e324.php │ │ └── f416cf810dea4d3f6272237cf732402f.php │ └── Logs │ │ └── 13_12_26.log └── Tpl │ ├── Ad │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Adboard │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Admin │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Article │ ├── add.html │ ├── edit.html │ └── index.html │ ├── ArticleCate │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Cache │ └── index.html │ ├── Flink │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Group │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Index │ └── index.html │ ├── Nav │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Node │ ├── add.html │ ├── edit.html │ └── index.html │ ├── Public │ ├── error.html │ ├── footer.html │ ├── header.html │ ├── left.html │ ├── login.html │ ├── main.html │ ├── search.html │ └── success.html │ ├── Role │ ├── add.html │ ├── auth.html │ ├── edit.html │ └── index.html │ ├── SellerCate │ ├── add.html │ ├── edit.html │ └── index.html │ ├── SellerList │ ├── add.html │ ├── collect_success.html │ ├── edit.html │ └── index.html │ ├── Setting │ ├── collect_success.html │ ├── guanzhu.html │ ├── index.html │ ├── msg.html │ └── oauth.html │ ├── User │ ├── edit.html │ ├── index.html │ └── setscore.html │ ├── WFDefination │ ├── add.html │ ├── edit.html │ └── index.html │ ├── WFNode │ ├── add.html │ ├── edit.html │ └── index.html │ ├── WFProcess │ ├── add.html │ ├── edit.html │ └── index.html │ └── WorkFlow │ ├── list_defination.html │ ├── list_my_process.html │ └── view_process.html ├── app ├── Conf │ ├── config.php │ └── tags.php ├── Lib │ ├── Action │ │ └── IndexAction.class.php │ └── Behavior │ │ └── SwitchMobileTplBehavior.class.php ├── Runtime │ ├── Cache │ │ ├── 3f6448edb80585dfae75998878cf29ba.php │ │ └── 9885ecc411f90bec36756701bd64bb4a.php │ └── Logs │ │ ├── 13_11_13.log │ │ ├── 13_11_15.log │ │ ├── 13_11_30.log │ │ ├── 13_12_11.log │ │ ├── 13_12_13.log │ │ └── 13_12_26.log └── Tpl │ ├── Index │ ├── Index.html │ ├── Index==.html │ ├── ��+� Index.html │ └── ©¦+¦ Index.html │ ├── Public │ ├── css │ │ ├── TPMlist.css │ │ └── TPMmodal.css │ └── js │ │ ├── .TPM.js.swp │ │ ├── TPM.js │ │ ├── TPMlist.js │ │ ├── TPMmodal.js │ │ ├── TPMupload.js │ │ ├── app.js │ │ ├── bootstrap.min.js │ │ ├── desktopBrowsers.js │ │ ├── jquery-1.9.1.min.js │ │ ├── jquery-2.0.0.min.js │ │ ├── modernizr.js │ │ ├── prefixfree.min.js │ │ └── touch.js │ ├── TPM-1.0.apk │ ├── build.php │ ├── index.html │ └── layout.html ├── config.inc.php ├── core ├── Common │ ├── common.php │ ├── functions.php │ └── runtime.php ├── Conf │ ├── alias.php │ ├── convention.php │ ├── debug.php │ └── tags.php ├── Extend │ ├── Action │ │ └── RestAction.class.php │ ├── Behavior │ │ ├── AgentCheckBehavior.class.php │ │ ├── BrowserCheckBehavior.class.php │ │ ├── CheckActionRouteBehavior.class.php │ │ ├── CheckLangBehavior.class.php │ │ ├── CronRunBehavior.class.php │ │ ├── FireShowPageTraceBehavior.class.php │ │ ├── RobotCheckBehavior.class.php │ │ └── UpgradeNoticeBehavior.class.php │ ├── Driver │ │ ├── Cache │ │ │ ├── CacheApachenote.class.php │ │ │ ├── CacheApc.class.php │ │ │ ├── CacheDb.class.php │ │ │ ├── CacheEaccelerator.class.php │ │ │ ├── CacheMemcache.class.php │ │ │ ├── CacheRedis.class.php │ │ │ ├── CacheShmop.class.php │ │ │ ├── CacheSqlite.class.php │ │ │ ├── CacheWincache.class.php │ │ │ └── CacheXcache.class.php │ │ ├── Db │ │ │ ├── DbIbase.class.php │ │ │ ├── DbMongo.class.php │ │ │ ├── DbMssql.class.php │ │ │ ├── DbOracle.class.php │ │ │ ├── DbPdo.class.php │ │ │ ├── DbPgsql.class.php │ │ │ ├── DbSqlite.class.php │ │ │ └── DbSqlsrv.class.php │ │ ├── Session │ │ │ └── SessionDb.class.php │ │ ├── TagLib │ │ │ └── TagLibHtml.class.php │ │ └── Template │ │ │ ├── TemplateEase.class.php │ │ │ ├── TemplateLite.class.php │ │ │ ├── TemplateMobile.class.php │ │ │ ├── TemplateSmart.class.php │ │ │ └── TemplateSmarty.class.php │ ├── Function │ │ └── extend.php │ ├── Library │ │ └── ORG │ │ │ ├── Crypt │ │ │ ├── Base64.class.php │ │ │ ├── Crypt.class.php │ │ │ ├── Des.class.php │ │ │ ├── Hmac.class.php │ │ │ ├── Rsa.class.php │ │ │ └── Xxtea.class.php │ │ │ ├── Io │ │ │ └── Dir.class.php │ │ │ ├── Net │ │ │ ├── Http.class.php │ │ │ ├── IpLocation.class.php │ │ │ └── UploadFile.class.php │ │ │ └── Util │ │ │ ├── ArrayList.class.php │ │ │ ├── Auth.class.php │ │ │ ├── CodeSwitch.class.php │ │ │ ├── Cookie.class.php │ │ │ ├── Date.class.php │ │ │ ├── Debug.class.php │ │ │ ├── HtmlExtractor.class.php │ │ │ ├── Image.class.php │ │ │ ├── Image │ │ │ ├── Driver │ │ │ │ ├── GIF.class.php │ │ │ │ ├── ImageGd.class.php │ │ │ │ └── ImageImagick.class.php │ │ │ ├── ThinkImage.class.php │ │ │ └── readme.md │ │ │ ├── Input.class.php │ │ │ ├── Page.class.php │ │ │ ├── RBAC.class.php │ │ │ ├── Session.class.php │ │ │ ├── Socket.class.php │ │ │ ├── Stack.class.php │ │ │ └── String.class.php │ ├── Mode │ │ ├── Amf │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ └── Model.class.php │ │ ├── Cli │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ ├── Log.class.php │ │ │ ├── Model.class.php │ │ │ └── functions.php │ │ ├── Lite │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ ├── Dispatcher.class.php │ │ │ ├── Model.class.php │ │ │ └── tags.php │ │ ├── Phprpc │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ ├── Model.class.php │ │ │ └── alias.php │ │ ├── Rest │ │ │ ├── Action.class.php │ │ │ ├── Behavior │ │ │ │ ├── CheckRestRouteBehavior.class.php │ │ │ │ └── CheckUrlExtBehavior.class.php │ │ │ ├── config.php │ │ │ └── tags.php │ │ ├── Thin │ │ │ ├── Action.class.php │ │ │ ├── App.class.php │ │ │ ├── Db.class.php │ │ │ └── Model.class.php │ │ ├── amf.php │ │ ├── cli.php │ │ ├── lite.php │ │ ├── phprpc.php │ │ ├── rest.php │ │ └── thin.php │ ├── Model │ │ ├── AdvModel.class.php │ │ ├── MongoModel.class.php │ │ ├── RelationModel.class.php │ │ └── ViewModel.class.php │ ├── README.txt │ ├── Tool │ │ ├── Requirements-Checker │ │ │ ├── .htaccess │ │ │ ├── assets │ │ │ │ ├── checker.phtml │ │ │ │ ├── denied │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── checker.js │ │ │ │ │ └── web.config │ │ │ │ ├── failed.gif │ │ │ │ ├── info.gif │ │ │ │ ├── logo.png │ │ │ │ ├── passed.gif │ │ │ │ ├── rewrite │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── checker.js │ │ │ │ │ └── web.config │ │ │ │ └── warning.gif │ │ │ └── checker.php │ │ ├── TPM │ │ │ ├── SwitchMobileTplBehavior.class.php │ │ │ ├── TemplateMobile.class.php │ │ │ ├── Tpl │ │ │ │ ├── Index │ │ │ │ │ └── index.html │ │ │ │ ├── Public │ │ │ │ │ ├── css │ │ │ │ │ │ ├── TPMlist.css │ │ │ │ │ │ └── TPMmodal.css │ │ │ │ │ └── js │ │ │ │ │ │ ├── .TPM.js.swp │ │ │ │ │ │ ├── TPM.js │ │ │ │ │ │ ├── TPMlist.js │ │ │ │ │ │ ├── TPMmodal.js │ │ │ │ │ │ ├── TPMupload.js │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── desktopBrowsers.js │ │ │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ │ │ ├── jquery-2.0.0.min.js │ │ │ │ │ │ ├── modernizr.js │ │ │ │ │ │ ├── prefixfree.min.js │ │ │ │ │ │ └── touch.js │ │ │ │ ├── index.html │ │ │ │ └── layout.html │ │ │ └── readme.txt │ │ ├── phpunit.php │ │ └── thinkeditor │ │ │ ├── ThinkEditor.js │ │ │ ├── jquery-1.6.2.min.js │ │ │ ├── plugins │ │ │ ├── myplugins.js │ │ │ ├── system.js │ │ │ └── upload_interface.js │ │ │ └── skins │ │ │ ├── default │ │ │ ├── config.js │ │ │ ├── dialog │ │ │ │ ├── css │ │ │ │ │ ├── base.css │ │ │ │ │ └── te_dialog.css │ │ │ │ └── dialog.html │ │ │ ├── img │ │ │ │ ├── bg_img.jpg │ │ │ │ ├── bg_img.png │ │ │ │ ├── resize_center.jpg │ │ │ │ ├── resize_leftjpg.jpg │ │ │ │ └── spacer.gif │ │ │ ├── style.css │ │ │ └── styles.css │ │ │ └── qq_face │ │ │ ├── qq_face.gif │ │ │ ├── qq_face_0.gif │ │ │ ├── qq_face_1.gif │ │ │ ├── qq_face_10.gif │ │ │ ├── qq_face_100.gif │ │ │ ├── qq_face_101.gif │ │ │ ├── qq_face_102.gif │ │ │ ├── qq_face_103.gif │ │ │ ├── qq_face_104.gif │ │ │ ├── qq_face_11.gif │ │ │ ├── qq_face_12.gif │ │ │ ├── qq_face_13.gif │ │ │ ├── qq_face_14.gif │ │ │ ├── qq_face_15.gif │ │ │ ├── qq_face_16.gif │ │ │ ├── qq_face_17.gif │ │ │ ├── qq_face_18.gif │ │ │ ├── qq_face_19.gif │ │ │ ├── qq_face_2.gif │ │ │ ├── qq_face_20.gif │ │ │ ├── qq_face_21.gif │ │ │ ├── qq_face_22.gif │ │ │ ├── qq_face_23.gif │ │ │ ├── qq_face_24.gif │ │ │ ├── qq_face_25.gif │ │ │ ├── qq_face_26.gif │ │ │ ├── qq_face_27.gif │ │ │ ├── qq_face_28.gif │ │ │ ├── qq_face_29.gif │ │ │ ├── qq_face_3.gif │ │ │ ├── qq_face_30.gif │ │ │ ├── qq_face_31.gif │ │ │ ├── qq_face_32.gif │ │ │ ├── qq_face_33.gif │ │ │ ├── qq_face_34.gif │ │ │ ├── qq_face_35.gif │ │ │ ├── qq_face_36.gif │ │ │ ├── qq_face_37.gif │ │ │ ├── qq_face_38.gif │ │ │ ├── qq_face_39.gif │ │ │ ├── qq_face_4.gif │ │ │ ├── qq_face_40.gif │ │ │ ├── qq_face_41.gif │ │ │ ├── qq_face_42.gif │ │ │ ├── qq_face_43.gif │ │ │ ├── qq_face_44.gif │ │ │ ├── qq_face_45.gif │ │ │ ├── qq_face_46.gif │ │ │ ├── qq_face_47.gif │ │ │ ├── qq_face_48.gif │ │ │ ├── qq_face_49.gif │ │ │ ├── qq_face_5.gif │ │ │ ├── qq_face_50.gif │ │ │ ├── qq_face_51.gif │ │ │ ├── qq_face_52.gif │ │ │ ├── qq_face_53.gif │ │ │ ├── qq_face_54.gif │ │ │ ├── qq_face_55.gif │ │ │ ├── qq_face_56.gif │ │ │ ├── qq_face_57.gif │ │ │ ├── qq_face_58.gif │ │ │ ├── qq_face_59.gif │ │ │ ├── qq_face_6.gif │ │ │ ├── qq_face_60.gif │ │ │ ├── qq_face_61.gif │ │ │ ├── qq_face_62.gif │ │ │ ├── qq_face_63.gif │ │ │ ├── qq_face_64.gif │ │ │ ├── qq_face_65.gif │ │ │ ├── qq_face_66.gif │ │ │ ├── qq_face_67.gif │ │ │ ├── qq_face_68.gif │ │ │ ├── qq_face_69.gif │ │ │ ├── qq_face_7.gif │ │ │ ├── qq_face_70.gif │ │ │ ├── qq_face_71.gif │ │ │ ├── qq_face_72.gif │ │ │ ├── qq_face_73.gif │ │ │ ├── qq_face_74.gif │ │ │ ├── qq_face_75.gif │ │ │ ├── qq_face_76.gif │ │ │ ├── qq_face_77.gif │ │ │ ├── qq_face_78.gif │ │ │ ├── qq_face_79.gif │ │ │ ├── qq_face_8.gif │ │ │ ├── qq_face_80.gif │ │ │ ├── qq_face_81.gif │ │ │ ├── qq_face_82.gif │ │ │ ├── qq_face_83.gif │ │ │ ├── qq_face_84.gif │ │ │ ├── qq_face_85.gif │ │ │ ├── qq_face_86.gif │ │ │ ├── qq_face_87.gif │ │ │ ├── qq_face_88.gif │ │ │ ├── qq_face_89.gif │ │ │ ├── qq_face_9.gif │ │ │ ├── qq_face_90.gif │ │ │ ├── qq_face_91.gif │ │ │ ├── qq_face_92.gif │ │ │ ├── qq_face_93.gif │ │ │ ├── qq_face_94.gif │ │ │ ├── qq_face_95.gif │ │ │ ├── qq_face_96.gif │ │ │ ├── qq_face_97.gif │ │ │ ├── qq_face_98.gif │ │ │ └── qq_face_99.gif │ └── Vendor │ │ ├── EaseTemplate │ │ ├── template.core.php │ │ └── template.ease.php │ │ ├── SmartTemplate │ │ ├── class.smarttemplate.php │ │ ├── class.smarttemplatedebugger.php │ │ └── class.smarttemplateparser.php │ │ ├── Smarty │ │ ├── Smarty.class.php │ │ ├── SmartyBC.class.php │ │ ├── debug.tpl │ │ ├── plugins │ │ │ ├── block.textformat.php │ │ │ ├── function.counter.php │ │ │ ├── function.cycle.php │ │ │ ├── function.fetch.php │ │ │ ├── function.html_checkboxes.php │ │ │ ├── function.html_image.php │ │ │ ├── function.html_options.php │ │ │ ├── function.html_radios.php │ │ │ ├── function.html_select_date.php │ │ │ ├── function.html_select_time.php │ │ │ ├── function.html_table.php │ │ │ ├── function.mailto.php │ │ │ ├── function.math.php │ │ │ ├── modifier.capitalize.php │ │ │ ├── modifier.date_format.php │ │ │ ├── modifier.debug_print_var.php │ │ │ ├── modifier.escape.php │ │ │ ├── modifier.regex_replace.php │ │ │ ├── modifier.replace.php │ │ │ ├── modifier.spacify.php │ │ │ ├── modifier.truncate.php │ │ │ ├── modifiercompiler.cat.php │ │ │ ├── modifiercompiler.count_characters.php │ │ │ ├── modifiercompiler.count_paragraphs.php │ │ │ ├── modifiercompiler.count_sentences.php │ │ │ ├── modifiercompiler.count_words.php │ │ │ ├── modifiercompiler.default.php │ │ │ ├── modifiercompiler.escape.php │ │ │ ├── modifiercompiler.from_charset.php │ │ │ ├── modifiercompiler.indent.php │ │ │ ├── modifiercompiler.lower.php │ │ │ ├── modifiercompiler.noprint.php │ │ │ ├── modifiercompiler.string_format.php │ │ │ ├── modifiercompiler.strip.php │ │ │ ├── modifiercompiler.strip_tags.php │ │ │ ├── modifiercompiler.to_charset.php │ │ │ ├── modifiercompiler.unescape.php │ │ │ ├── modifiercompiler.upper.php │ │ │ ├── modifiercompiler.wordwrap.php │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ ├── shared.escape_special_chars.php │ │ │ ├── shared.literal_compiler_param.php │ │ │ ├── shared.make_timestamp.php │ │ │ ├── shared.mb_str_replace.php │ │ │ ├── shared.mb_unicode.php │ │ │ ├── shared.mb_wordwrap.php │ │ │ └── variablefilter.htmlspecialchars.php │ │ └── sysplugins │ │ │ ├── smarty_cacheresource.php │ │ │ ├── smarty_cacheresource_custom.php │ │ │ ├── smarty_cacheresource_keyvaluestore.php │ │ │ ├── smarty_config_source.php │ │ │ ├── smarty_internal_cacheresource_file.php │ │ │ ├── smarty_internal_compile_append.php │ │ │ ├── smarty_internal_compile_assign.php │ │ │ ├── smarty_internal_compile_block.php │ │ │ ├── smarty_internal_compile_break.php │ │ │ ├── smarty_internal_compile_call.php │ │ │ ├── smarty_internal_compile_capture.php │ │ │ ├── smarty_internal_compile_config_load.php │ │ │ ├── smarty_internal_compile_continue.php │ │ │ ├── smarty_internal_compile_debug.php │ │ │ ├── smarty_internal_compile_eval.php │ │ │ ├── smarty_internal_compile_extends.php │ │ │ ├── smarty_internal_compile_for.php │ │ │ ├── smarty_internal_compile_foreach.php │ │ │ ├── smarty_internal_compile_function.php │ │ │ ├── smarty_internal_compile_if.php │ │ │ ├── smarty_internal_compile_include.php │ │ │ ├── smarty_internal_compile_include_php.php │ │ │ ├── smarty_internal_compile_insert.php │ │ │ ├── smarty_internal_compile_ldelim.php │ │ │ ├── smarty_internal_compile_nocache.php │ │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ │ ├── smarty_internal_compile_private_modifier.php │ │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ │ ├── smarty_internal_compile_private_object_function.php │ │ │ ├── smarty_internal_compile_private_print_expression.php │ │ │ ├── smarty_internal_compile_private_registered_block.php │ │ │ ├── smarty_internal_compile_private_registered_function.php │ │ │ ├── smarty_internal_compile_private_special_variable.php │ │ │ ├── smarty_internal_compile_rdelim.php │ │ │ ├── smarty_internal_compile_section.php │ │ │ ├── smarty_internal_compile_setfilter.php │ │ │ ├── smarty_internal_compile_while.php │ │ │ ├── smarty_internal_compilebase.php │ │ │ ├── smarty_internal_config.php │ │ │ ├── smarty_internal_config_file_compiler.php │ │ │ ├── smarty_internal_configfilelexer.php │ │ │ ├── smarty_internal_configfileparser.php │ │ │ ├── smarty_internal_data.php │ │ │ ├── smarty_internal_debug.php │ │ │ ├── smarty_internal_filter_handler.php │ │ │ ├── smarty_internal_function_call_handler.php │ │ │ ├── smarty_internal_get_include_path.php │ │ │ ├── smarty_internal_nocache_insert.php │ │ │ ├── smarty_internal_parsetree.php │ │ │ ├── smarty_internal_resource_eval.php │ │ │ ├── smarty_internal_resource_extends.php │ │ │ ├── smarty_internal_resource_file.php │ │ │ ├── smarty_internal_resource_php.php │ │ │ ├── smarty_internal_resource_registered.php │ │ │ ├── smarty_internal_resource_stream.php │ │ │ ├── smarty_internal_resource_string.php │ │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ │ ├── smarty_internal_template.php │ │ │ ├── smarty_internal_templatebase.php │ │ │ ├── smarty_internal_templatecompilerbase.php │ │ │ ├── smarty_internal_templatelexer.php │ │ │ ├── smarty_internal_templateparser.php │ │ │ ├── smarty_internal_utility.php │ │ │ ├── smarty_internal_write_file.php │ │ │ ├── smarty_resource.php │ │ │ ├── smarty_resource_custom.php │ │ │ ├── smarty_resource_recompiled.php │ │ │ ├── smarty_resource_uncompiled.php │ │ │ └── smarty_security.php │ │ ├── TemplateLite │ │ ├── class.compiler.php │ │ ├── class.config.php │ │ ├── class.template.php │ │ └── internal │ │ │ ├── compile.compile_config.php │ │ │ ├── compile.compile_custom_block.php │ │ │ ├── compile.compile_custom_function.php │ │ │ ├── compile.compile_if.php │ │ │ ├── compile.generate_compiler_debug_output.php │ │ │ ├── compile.include.php │ │ │ ├── compile.parse_is_expr.php │ │ │ ├── compile.section_start.php │ │ │ ├── debug.tpl │ │ │ ├── template.build_dir.php │ │ │ ├── template.config_loader.php │ │ │ ├── template.destroy_dir.php │ │ │ ├── template.fetch_compile_include.php │ │ │ └── template.generate_debug_output.php │ │ ├── Zend │ │ ├── Amf │ │ │ ├── Adobe │ │ │ │ ├── Auth.php │ │ │ │ ├── DbInspector.php │ │ │ │ └── Introspector.php │ │ │ ├── Auth │ │ │ │ └── Abstract.php │ │ │ ├── Constants.php │ │ │ ├── Exception.php │ │ │ ├── Parse │ │ │ │ ├── Amf0 │ │ │ │ │ ├── Deserializer.php │ │ │ │ │ └── Serializer.php │ │ │ │ ├── Amf3 │ │ │ │ │ ├── Deserializer.php │ │ │ │ │ └── Serializer.php │ │ │ │ ├── Deserializer.php │ │ │ │ ├── InputStream.php │ │ │ │ ├── OutputStream.php │ │ │ │ ├── Resource │ │ │ │ │ ├── MysqlResult.php │ │ │ │ │ ├── MysqliResult.php │ │ │ │ │ └── Stream.php │ │ │ │ ├── Serializer.php │ │ │ │ └── TypeLoader.php │ │ │ ├── Request.php │ │ │ ├── Request │ │ │ │ └── Http.php │ │ │ ├── Response.php │ │ │ ├── Response │ │ │ │ └── Http.php │ │ │ ├── Server.php │ │ │ ├── Server │ │ │ │ └── Exception.php │ │ │ ├── Util │ │ │ │ └── BinaryStream.php │ │ │ └── Value │ │ │ │ ├── ByteArray.php │ │ │ │ ├── MessageBody.php │ │ │ │ ├── MessageHeader.php │ │ │ │ ├── Messaging │ │ │ │ ├── AbstractMessage.php │ │ │ │ ├── AcknowledgeMessage.php │ │ │ │ ├── ArrayCollection.php │ │ │ │ ├── AsyncMessage.php │ │ │ │ ├── CommandMessage.php │ │ │ │ ├── ErrorMessage.php │ │ │ │ └── RemotingMessage.php │ │ │ │ └── TraitsInfo.php │ │ ├── Auth.php │ │ ├── Date.php │ │ ├── Date │ │ │ ├── Cities.php │ │ │ ├── DateObject.php │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Loader.php │ │ ├── Loader │ │ │ ├── Autoloader.php │ │ │ ├── Autoloader │ │ │ │ ├── Interface.php │ │ │ │ └── Resource.php │ │ │ ├── Exception.php │ │ │ ├── PluginLoader.php │ │ │ └── PluginLoader │ │ │ │ ├── Exception.php │ │ │ │ └── Interface.php │ │ ├── Server │ │ │ ├── Abstract.php │ │ │ ├── Cache.php │ │ │ ├── Definition.php │ │ │ ├── Exception.php │ │ │ ├── Interface.php │ │ │ ├── Method │ │ │ │ ├── Callback.php │ │ │ │ ├── Definition.php │ │ │ │ ├── Parameter.php │ │ │ │ └── Prototype.php │ │ │ ├── Reflection.php │ │ │ └── Reflection │ │ │ │ ├── Class.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Function.php │ │ │ │ ├── Function │ │ │ │ └── Abstract.php │ │ │ │ ├── Method.php │ │ │ │ ├── Node.php │ │ │ │ ├── Parameter.php │ │ │ │ ├── Prototype.php │ │ │ │ └── ReturnValue.php │ │ └── Version.php │ │ ├── phpRPC │ │ ├── bigint.php │ │ ├── compat.php │ │ ├── dhparams.php │ │ ├── dhparams │ │ │ ├── 1024.dhp │ │ │ ├── 128.dhp │ │ │ ├── 1536.dhp │ │ │ ├── 160.dhp │ │ │ ├── 192.dhp │ │ │ ├── 2048.dhp │ │ │ ├── 256.dhp │ │ │ ├── 3072.dhp │ │ │ ├── 4096.dhp │ │ │ ├── 512.dhp │ │ │ ├── 768.dhp │ │ │ └── 96.dhp │ │ ├── pecl │ │ │ └── xxtea │ │ │ │ ├── CREDITS │ │ │ │ ├── INSTALL │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── config.m4 │ │ │ │ ├── config.w32 │ │ │ │ ├── php_xxtea.c │ │ │ │ ├── php_xxtea.dsp │ │ │ │ ├── php_xxtea.h │ │ │ │ ├── php_xxtea.sln │ │ │ │ ├── php_xxtea.vcproj │ │ │ │ ├── test │ │ │ │ └── test.php │ │ │ │ ├── xxtea.c │ │ │ │ └── xxtea.h │ │ ├── phprpc_client.php │ │ ├── phprpc_date.php │ │ ├── phprpc_server.php │ │ └── xxtea.php │ │ └── readme.txt ├── LICENSE.txt ├── Lang │ ├── en-us.php │ └── zh-cn.php ├── Lib │ ├── Behavior │ │ ├── CheckRouteBehavior.class.php │ │ ├── ContentReplaceBehavior.class.php │ │ ├── ParseTemplateBehavior.class.php │ │ ├── ReadHtmlCacheBehavior.class.php │ │ ├── ShowPageTraceBehavior.class.php │ │ ├── ShowRuntimeBehavior.class.php │ │ ├── TokenBuildBehavior.class.php │ │ └── WriteHtmlCacheBehavior.class.php │ ├── Core │ │ ├── Action.class.php │ │ ├── App.class.php │ │ ├── Behavior.class.php │ │ ├── Cache.class.php │ │ ├── Db.class.php │ │ ├── Dispatcher.class.php │ │ ├── Log.class.php │ │ ├── Model.class.php │ │ ├── Think.class.php │ │ ├── ThinkException.class.php │ │ ├── View.class.php │ │ └── Widget.class.php │ ├── Driver │ │ ├── Cache │ │ │ └── CacheFile.class.php │ │ ├── Db │ │ │ ├── DbMysql.class.php │ │ │ └── DbMysqli.class.php │ │ └── TagLib │ │ │ └── TagLibCx.class.php │ └── Template │ │ ├── TagLib.class.php │ │ └── ThinkTemplate.class.php ├── README.txt ├── ThinkPHP.php ├── Tpl │ ├── default_index.tpl │ ├── dispatch_jump.tpl │ ├── page_trace.tpl │ └── think_exception.tpl └── logo.png ├── data ├── _fields │ ├── mobilecms.access.php │ ├── mobilecms.ad.php │ ├── mobilecms.adboard.php │ ├── mobilecms.admin.php │ ├── mobilecms.article.php │ ├── mobilecms.article_cate.php │ ├── mobilecms.flink.php │ ├── mobilecms.flink_cate.php │ ├── mobilecms.group.php │ ├── mobilecms.nav.php │ ├── mobilecms.node.php │ ├── mobilecms.role.php │ └── mobilecms.setting.php ├── adboard │ ├── banner.config.php │ ├── banner.html │ ├── focus.config.php │ └── focus.html ├── index.html ├── install.lock ├── install.temp.php └── news │ ├── 52a80c2398968.jpg │ ├── 52a80c5acdfe6.jpg │ ├── 52a80f9f22551.JPG │ ├── 52a80fb057bcf.JPG │ ├── 52a80fc01ab3f.JPG │ ├── 52a80fce3567e.JPG │ ├── 52a80fd9dd40a.JPG │ ├── 52a80fe7a037a.JPG │ ├── 52a80ff600000.JPG │ ├── 52a8100190f56.JPG │ ├── 52a81012f0537.JPG │ ├── 52a8101e03d09.JPG │ ├── 52a81035cdfe6.JPG │ ├── 52a81041487ab.JPG │ ├── 52a8104c7270e.JPG │ ├── 52a8105f3567e.JPG │ ├── 52a810727de29.JPG │ ├── 52a8108881b32.JPG │ ├── 52a810980f424.JPG │ ├── 52a810a81e848.JPG │ └── 52a8269722551.JPG ├── icon.png ├── index.php ├── request.php ├── statics ├── admin │ ├── css │ │ ├── login.css │ │ ├── main.css │ │ └── style.css │ ├── images │ │ ├── ajax_loading.gif │ │ ├── asc.gif │ │ ├── avatar-60.png │ │ ├── bnt_bg.png │ │ ├── button_bg.gif │ │ ├── color.png │ │ ├── desc.gif │ │ ├── h_bg.gif │ │ ├── hr.gif │ │ ├── icon_use.png │ │ ├── input.png │ │ ├── input_date.png │ │ ├── input_focus.png │ │ ├── left_bg.png │ │ ├── left_menu.png │ │ ├── left_menu_openClose.png │ │ ├── login.png │ │ ├── login_bg.gif │ │ ├── login_btn.gif │ │ ├── login_pass_bg.gif │ │ ├── login_user_bg.gif │ │ ├── logo.png │ │ ├── main-left-a.gif │ │ ├── msg.png │ │ ├── msg_bg.png │ │ ├── nav_bg.png │ │ ├── nopic.gif │ │ ├── oauth.png │ │ ├── pages.png │ │ ├── set_y_line.png │ │ ├── tv-collapsable.gif │ │ ├── tv-expandable.gif │ │ ├── tv-item.gif │ │ ├── uline.gif │ │ └── x_bg.png │ └── js │ │ └── admin_common.js ├── css │ ├── dialog.css │ └── formvalidator.css ├── images │ ├── dialog │ │ ├── border.png │ │ ├── btns.png │ │ ├── chrome_s.png │ │ ├── chrome_s_1.png │ │ ├── icons.png │ │ ├── loading.gif │ │ ├── loading_d.gif │ │ ├── msg.png │ │ └── msg_bg.png │ ├── end.png │ ├── loading-footer.gif │ ├── masonry_loading_1.gif │ ├── masonry_loadingí¬í¬bac.gif │ ├── masonry_loading����bac.gif │ ├── status_0.gif │ └── status_1.gif ├── index.html └── js │ ├── calendar │ ├── calendar-blue.css │ └── calendar.js │ ├── dialog.js │ ├── iColorPicker.js │ ├── jquery.masonry.min.js │ ├── jquery │ ├── jquery-1.4.2.min.js │ ├── jquery-1.7.2.min.js │ └── plugins │ │ ├── formvalidator.js │ │ ├── formvalidator.min.js │ │ ├── formvalidatorregex.js │ │ ├── iColorPicker.js │ │ ├── jquery.KinSlideshow-1.2.1.min.js │ │ ├── jquery.cookie.js │ │ ├── jquery.corner.js │ │ ├── jquery.imagePreview.js │ │ ├── jquery.infinitescroll.js │ │ ├── jquery.lazyload.js │ │ ├── jquery.masonry.js │ │ ├── jquery.masonry.min.js │ │ └── jquery.scroll.js │ ├── kindeditor │ ├── kindeditor-min.js │ ├── kindeditor.js │ ├── lang │ │ ├── ar.js │ │ ├── en.js │ │ ├── zh_CN.js │ │ └── zh_TW.js │ ├── license.txt │ ├── php │ │ ├── JSON.php │ │ ├── file_manager_json.php │ │ └── upload_json.php │ ├── plugins │ │ ├── anchor │ │ │ └── anchor.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 │ │ ├── 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 │ └── waterfall.js └── thinkphp.sql /README: -------------------------------------------------------------------------------- 1 | very good 2 | -------------------------------------------------------------------------------- /tp/admin.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tp/admin/Conf/config.php: -------------------------------------------------------------------------------- 1 | '配置值' 6 | 'URL_MODEL' => 0, 7 | //DEFAULT_LANG' => 'zh-cn', 8 | 'LANG_SWITCH_ON' => true, 9 | 'DEFAULT_LANG' => 'zh-cn', // 默认语言 10 | 'LANG_AUTO_DETECT' => true, // 自动侦测语言 11 | //'APP_AUTOLOAD_PATH'=>'@.TagLib',// 12 | 'IGNORE_PRIV_LIST'=>array( 13 | array( 14 | 'module_name'=>'Admin', 15 | 'action_list'=>array('ajaxCheckUsername') 16 | ), 17 | array( 18 | 'module_name'=>'Public', 19 | 'action_list'=>array() 20 | ), 21 | array( 22 | 'module_name'=>'Index', 23 | 'action_list'=>array('verify','index') 24 | ) 25 | ), 26 | 27 | //'URL_CASE_INSENSITIVE' =>true, 28 | 'APP_AUTOLOAD_PATH' => '@.TagLib', //自动加载项目类库 29 | 'TMPL_ACTION_ERROR' => 'Public:error', 30 | 'TMPL_ACTION_SUCCESS' => 'Public:success', 31 | ); 32 | return array_merge($config,$array); 33 | ?> -------------------------------------------------------------------------------- /tp/admin/Conf/tags.php: -------------------------------------------------------------------------------- 1 | array( //因为项目中也可能用到语言行为,最好放在项目开始的地方 14 | 'CheckLang' //检测语言 15 | ), 16 | ); -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/ad.php: -------------------------------------------------------------------------------- 1 | '广告名称', 4 | 'URL' => '广告链接', 5 | 'BOARD_ID'=>'广告位', 6 | 'TYPE'=>'广告类型', 7 | 'AD_TEXT'=>'文字内容', 8 | 'AD_CODE'=>'广告代码', 9 | 'AD_IMAGE'=>'广告图片', 10 | 'AD_FLASH'=>'广告动画', 11 | 'START_TIME'=>'开始时间', 12 | 'END_TIME'=>'结束时间', 13 | 'STATUS'=>'状态', 14 | 'ID'=>'ID', 15 | 'CLICKS'=>'点击量', 16 | 'ORDID'=>'排序', 17 | 'OPERATIONAL'=>'操作' 18 | 19 | ); 20 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/admin.php: -------------------------------------------------------------------------------- 1 | '用户名', 4 | 'PASSWORD' => '密码', 5 | 'REPASSWORD' => '确认密码', 6 | 'ROLE_ID'=>'所属分组', 7 | 'STATUS'=>'审核状态', 8 | 'ID'=>'ID', 9 | 'ADD_TIME'=>'开通时间', 10 | 'LAST_TIME'=>'上次登陆', 11 | 'STATUS'=>'状态', 12 | 'OPERATIONAL'=>'操作' 13 | ); 14 | ?> 15 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/article.php: -------------------------------------------------------------------------------- 1 | '资讯分类', 4 | 'TITLE' => '标题名称', 5 | 'SORT' => '排序', 6 | 'URL'=>'链接地址', 7 | 'CATE_ID'=>'所属分类', 8 | 'ORIG'=>'内容来源', 9 | 'IMG'=>'图片', 10 | 'ABST'=>'摘要简介', 11 | 'TIME'=>'发布时间 ', 12 | 'INFO'=>'详细内容', 13 | 'IS_HOT'=>'热门推荐', 14 | 'STATUS'=>'状态', 15 | 'ORDID'=>'排序', 16 | 'RECOMMEND'=>'推荐', 17 | 'HOT'=>'热门', 18 | ); 19 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/articlecate.php: -------------------------------------------------------------------------------- 1 | '上级分类', 4 | 'NAME' => '分类名称', 5 | 'ALIAS' => '分类别名', 6 | 'SORT_ORDER' => '排序', 7 | 'STATUS'=>'状态', 8 | 'ID'=>'分类ID', 9 | 'ARTILE_NUM'=>'资讯数', 10 | 'SORT'=>'排序值', 11 | 'STATUS'=>'审核', 12 | ); 13 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/flink.php: -------------------------------------------------------------------------------- 1 | '链接分类', 4 | 'NAME' => '链接名称', 5 | 'URL' => '链接地址', 6 | 'IMG'=>'图片', 7 | 'ORDID'=>'排序值', 8 | 'STATUS'=>'审核状态 ' 9 | ); 10 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/group.php: -------------------------------------------------------------------------------- 1 | '菜单分类名称', 4 | 'GROUP_NAME' => '分类标识', 5 | 'SORT' => '排序', 6 | 'STATE'=>'审核状态', 7 | 'GROUP_TITLE_REQUIRE'=>'菜单分类名称不能为空', 8 | 'GROUP_SORT_NUM'=>'排序必须是数字', 9 | 'GROUP_TITLE_EXIST'=>'菜单分类名称已经存在', 10 | 'NO_DELETE_GROUP'=>'请选择要删除的分类', 11 | ); 12 | ?> 13 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/nav.php: -------------------------------------------------------------------------------- 1 | '导航名称', 4 | 'ALIAS' => '导航别名', 5 | 'URL'=>'导航URL', 6 | 'TYPE'=>'导航位置', 7 | 'IS_SHOW'=>'是否显示', 8 | 'IN_SITE'=>'站内链接', 9 | 'SORT_ORDER'=>'排序值', 10 | 'AD_FLASH'=>'广告动画', 11 | 'START_TIME'=>'开始时间', 12 | 'END_TIME'=>'结束时间', 13 | 'STATUS'=>'状态', 14 | 'ID'=>'ID', 15 | 'CLICKS'=>'点击量', 16 | 'ORDID'=>'排序', 17 | 'OPERATIONAL'=>'操作' , 18 | 'CATEGORY'=>'所属分类' 19 | ); 20 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/node.php: -------------------------------------------------------------------------------- 1 | '模型 ', 4 | 'MODULE_NAME' => '模型名称', 5 | 'ACTION'=>'操作', 6 | 'ACTION_NAME'=>'操作名称', 7 | 'AUTH_TYPE'=>'节点类型', 8 | 'GROUP_ID'=>'分组', 9 | 'DATA'=>'参数', 10 | 'REMARK'=>'', 11 | 'SORT'=>'排序', 12 | 'STATUS'=>'状态', 13 | 'OPERATIONAL'=>'操作', 14 | 'ID'=>'ID', 15 | 'REMARK'=>'描述' 16 | ); 17 | ?> 18 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/role.php: -------------------------------------------------------------------------------- 1 | '管理员组名', 4 | 'REMARK' => '描述', 5 | 'ID'=>'ID', 6 | 'STATUS'=>'状态', 7 | 'OPERATIONAL'=>'操作' 8 | ); 9 | ?> 10 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/sellercate.php: -------------------------------------------------------------------------------- 1 | '分类名称', 4 | 'SORT' => '排序', 5 | 'STATE'=>'状态', 6 | ); 7 | ?> 8 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/sellerlist.php: -------------------------------------------------------------------------------- 1 | '商家名称', 4 | 'SORT' => '排序', 5 | 'LOGO'=>'LOGO', 6 | 'STATE'=>'状态', 7 | 'URL'=>'跳转URL', 8 | 'SERVICES'=>'SERVICES', 9 | 'DESCRIPTION'=>'商家描述', 10 | 'ADDB2CDATA'=>'增加B2C数据', 11 | 'SITE_LOGO'=>'本 地LOGO', 12 | 'NET_LOGO'=>'网 络LOGO', 13 | 'URL'=>'跳转URL', 14 | 'RECOMMEND'=>'是否推荐', 15 | 'SERVICES'=>'特色服务', 16 | 'CASH_BACK_RATE'=>'返现率' 17 | ); 18 | ?> 19 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/setting.php: -------------------------------------------------------------------------------- 1 | 'ID', 4 | 'SITE_NAME' => '网站名称', 5 | 'SITE_DOMAIN' => '网站域名', 6 | 'SITE_TITLE'=>'网站标题', 7 | 'SITE_KEYWORD'=>'网站关键字', 8 | 'SITE_DESCRIPTION'=>'网站描述', 9 | 'SEARCH_WORDS'=>'热门搜索', 10 | 'SEARCH_WORDS'=>'热门搜索', 11 | 'REGISTER_SEND_MAIL'=>'用户注册发送邮件', 12 | 'IS_CASHBACK'=>'是否返现', 13 | 'CASHBACK_RATE'=>'返现比例', 14 | 'LOWEST_GET_CASH'=>'最低提现金额', 15 | 'LOWEST_GET_JIFEN_CASH'=>'最低提现积分', 16 | 'INTEGRALBACK_RATE'=>'反积分比例', 17 | 'SITE_ICP'=>'ICP证书号', 18 | 'STATISTICS_CODE'=>'统计代码', 19 | 'SITE_STATUS'=>'网站状态', 20 | 'CLOSED_REASON'=>'关闭说明', 21 | 'MAIL_SMTP'=>'邮件服务器', 22 | 'MAIL_PORT'=>'服务器端口', 23 | 'MAIL_FROMNAME'=>'发件人姓名', 24 | 'MAIL_USERNAME'=>'邮箱登录用户名', 25 | 'MAIL_PASSWORD'=>'邮箱登录密码', 26 | 'SORT'=>'排序', 27 | 'RECOMMEND'=>'推荐', 28 | 'STATUS'=>'审核', 29 | 'CHECK_CODE'=>'后台验证码', 30 | 'SITE_SHARE'=>'浮动分享代码', 31 | 'SITE_LOGO'=>'网站LOGO', 32 | 'SITE_INFO'=>'网站信息', 33 | 'MAIL_INFO'=>'邮件设置', 34 | 'SITE_STATUS'=>'站点信息', 35 | 'SITE_ATTACHMENT'=>'附件设置', 36 | 'ATTACHMENT_PATH'=>'附件保存位置', 37 | 'ATTACHMENT_TYPE'=>'附件类型', 38 | 'ATTACHMENT_SIZE'=>'附件大小', 39 | 'COMMENT_TIME'=>'评论时间' 40 | ); 41 | ?> 42 | -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/user.php: -------------------------------------------------------------------------------- 1 | '会员名称', 4 | 'RELNAME'=>'真实姓名', 5 | 'ALIPAY'=>'支付宝账号', 6 | 'MONEY' => '余额', 7 | 'INTEGRAL'=>'积分', 8 | 'EMAIL'=>'会员邮箱', 9 | 'SEX'=>'性别', 10 | 'IMG'=>'会员头像', 11 | 'BLOG'=>'个人网址', 12 | 'BRITHDAY'=>'出生日期', 13 | 'ADDRESS'=>'联系地址', 14 | 'INFO'=>'会员简介', 15 | 'STATUS'=>'会员状态', 16 | 'REG_TIME'=>'注册时间', 17 | 'QQ'=>'QQ', 18 | 'LAST_TIME'=>'最后登录', 19 | 'STATUS'=>'状态', 20 | 'OPERATIONAL'=>'操作', 21 | 'ID'=>'ID', 22 | 'USER_LOGIN_SCORE'=>'每日登录送积分', 23 | 'USER_REGISTER_SCORE'=>'注册送积分', 24 | 'SHARE_GOODS_SCORE'=>'发布商品送积分', 25 | 'DELETE_SHARE_GOODS_SCORE'=>'删除商品扣积分', 26 | 27 | ); 28 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/wfdefination.php: -------------------------------------------------------------------------------- 1 | '工作流分类', 4 | 'TITLE' => '标题名称', 5 | 'SORT' => '排序', 6 | 'URL'=>'链接地址', 7 | 'CATE_ID'=>'父分类', 8 | 'ORIG'=>'内容来源', 9 | 'IMG'=>'图片', 10 | 'ABST'=>'摘要简介', 11 | 'TIME'=>'发布时间 ', 12 | 'INFO'=>'详细内容', 13 | 'IS_HOT'=>'热门推荐', 14 | 'STATUS'=>'状态', 15 | 'ORDID'=>'排序', 16 | 'RECOMMEND'=>'推荐', 17 | 'HOT'=>'热门', 18 | 'handler'=>'辅助文件', 19 | ); 20 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/wfnode.php: -------------------------------------------------------------------------------- 1 | '工作流分类', 4 | 'node_index' => '节点序号', 5 | 'SORT' => '排序', 6 | 'URL'=>'链接地址', 7 | 'CATE_ID'=>'所属工作流', 8 | 'ORIG'=>'内容来源', 9 | 'IMG'=>'图片', 10 | 'ABST'=>'摘要简介', 11 | 'TIME'=>'发布时间 ', 12 | 'INFO'=>'详细内容', 13 | 'IS_HOT'=>'热门推荐', 14 | 'STATUS'=>'状态', 15 | 'ORDID'=>'排序', 16 | 'RECOMMEND'=>'推荐', 17 | 'HOT'=>'热门', 18 | 19 | 20 | 'node_type' => '节点类型', 21 | 'init_function' => '流程初始函数', 22 | 'run_function' => '流程运行函数', 23 | 'save_function'=>'流程保存函数', 24 | 'transit_function'=>'流程运转函数', 25 | 'prev_node_index'=>'前节点序号', 26 | 'next_node_index'=>'后节点序号', 27 | 'executor'=>'执行角色,组、人', 28 | 'execute_type'=>'执行类型', 29 | 'remind'=>'提醒 ', 30 | 'field'=>'可编辑函数', 31 | 'max_day'=>'最长时间', 32 | 33 | 34 | 35 | 36 | ); 37 | ?> -------------------------------------------------------------------------------- /tp/admin/Lang/zh-cn/wfprocess.php: -------------------------------------------------------------------------------- 1 | '工作流分类', 4 | 'process_desc' => '进程描述', 5 | 6 | 7 | 'START_USER' => '发起人', 8 | 'context' => '上下文', 9 | 'current_note_index' => '当前节点', 10 | 'start_time'=>'启动时间', 11 | 'transit_function'=>'流程运转函数', 12 | 'finish_time'=>'结束时间', 13 | 14 | 15 | ); 16 | ?> -------------------------------------------------------------------------------- /tp/admin/Lib/Action/IndexAction.class.php: -------------------------------------------------------------------------------- 1 | display('index'); 16 | } 17 | /*当前位置*/ 18 | public function current_pos() 19 | { 20 | $group_id = intval($_REQUEST['tag']); 21 | $menuid = intval($_REQUEST['menuid']); 22 | 23 | $r = M('node')->field('group_id,module_name,action_name')->where('id='.$menuid)->find(); 24 | if($r) 25 | { 26 | $group_id = $r['group_id']; 27 | } 28 | $group = M('group')->field('title')->where('id='.$group_id)->find(); 29 | if($group) 30 | { 31 | echo $group['title']; 32 | } 33 | if($r) 34 | { 35 | echo '->'.$r['module_name'].'->'.$r['action_name']; 36 | } 37 | exit; 38 | } 39 | 40 | } 41 | ?> -------------------------------------------------------------------------------- /tp/admin/Runtime/Cache/f416cf810dea4d3f6272237cf732402f.php: -------------------------------------------------------------------------------- 1 | $item): $mod = ($i % 2 );++$i;?>

">

2 | 5 | -------------------------------------------------------------------------------- /tp/admin/Tpl/Public/footer.html: -------------------------------------------------------------------------------- 1 | 22 | 23 | -------------------------------------------------------------------------------- /tp/admin/Tpl/Public/left.html: -------------------------------------------------------------------------------- 1 | 2 |

{$item.name}

3 | 8 |
9 | -------------------------------------------------------------------------------- /tp/admin/Tpl/Public/search.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 | 19 | 20 | 21 |
6 |
7 | 关键字: 8 | 9 | 10 | 15 | 16 | 17 |
18 |
22 |
23 | 30 | -------------------------------------------------------------------------------- /tp/admin/Tpl/SellerList/collect_success.html: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 |
10 |
{$message}
11 | 12 | 16 | 17 |
18 | 19 | -------------------------------------------------------------------------------- /tp/admin/Tpl/Setting/collect_success.html: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 |
10 |
{$message}
11 | 12 | 16 | 17 |
18 | 19 | -------------------------------------------------------------------------------- /tp/app/Conf/config.php: -------------------------------------------------------------------------------- 1 | '配置值' 6 | 'LAYOUT_ON'=>true 7 | ); 8 | return array_merge($config,$array); 9 | ?> -------------------------------------------------------------------------------- /tp/app/Conf/tags.php: -------------------------------------------------------------------------------- 1 | array('SwitchMobileTpl') 4 | ); -------------------------------------------------------------------------------- /tp/app/Lib/Behavior/SwitchMobileTplBehavior.class.php: -------------------------------------------------------------------------------- 1 | $replace))); 17 | //判断如果是云窗调试器访问跳转访问首页到client目录 18 | if(APP_DEBUG && ''==__INFO__ && preg_match('/android|iphone/i',$_SERVER['HTTP_USER_AGENT'])){ 19 | redirect(__ROOT__.'/client'); 20 | exit(); 21 | } 22 | } 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /tp/app/Runtime/Cache/9885ecc411f90bec36756701bd64bb4a.php: -------------------------------------------------------------------------------- 1 |

:)

欢迎使用 ThinkPHP

-------------------------------------------------------------------------------- /tp/app/Runtime/Logs/13_11_30.log: -------------------------------------------------------------------------------- 1 | [ 2013-11-30T18:06:47+08:00 ] 127.0.0.1 /tp/ 2 | INFO: [ app_begin ] --START-- 3 | INFO: ReadHtmlCache Behavior ::run [ RunTime:0.000000s ] 4 | INFO: [ app_begin ] --END-- [ RunTime:0.031250s ] 5 | INFO: [ action_begin ] --START-- 6 | INFO: SwitchMobileTpl Behavior ::run [ RunTime:0.000000s ] 7 | INFO: [ action_begin ] --END-- [ RunTime:0.000000s ] 8 | SQL: SHOW COLUMNS FROM `thinkphp_data` [ RunTime:0.015625s ] 9 | SQL: SELECT * FROM `thinkphp_data` [ RunTime:0.000000s ] 10 | INFO: [ view_parse ] --START-- 11 | INFO: ParseTemplate Behavior ::run [ RunTime:0.031250s ] 12 | INFO: [ view_parse ] --END-- [ RunTime:0.031250s ] 13 | INFO: [ view_filter ] --START-- 14 | INFO: ContentReplace Behavior ::run [ RunTime:0.000000s ] 15 | INFO: TokenBuild Behavior ::run [ RunTime:0.000000s ] 16 | INFO: WriteHtmlCache Behavior ::run [ RunTime:0.000000s ] 17 | INFO: ShowRuntime Behavior ::run [ RunTime:0.000000s ] 18 | INFO: [ view_filter ] --END-- [ RunTime:0.000000s ] 19 | INFO: [ view_end ] --START-- 20 | INFO: ShowPageTrace Behavior ::run [ RunTime:0.000000s ] 21 | INFO: [ view_end ] --END-- [ RunTime:0.000000s ] 22 | 23 | -------------------------------------------------------------------------------- /tp/app/Tpl/Public/css/TPMlist.css: -------------------------------------------------------------------------------- 1 | .pullDown{ 2 | background:#fff; 3 | height:40px; 4 | line-height:40px; 5 | padding:5px 10px; 6 | border-bottom:1px solid #ccc; 7 | font-weight:bold; 8 | font-size:14px; 9 | color:#888; 10 | } 11 | .pullDown .pullDownIcon{ 12 | display:block; float:left; 13 | width:40px; height:40px; 14 | background:url(TPMlist-pull-icon-2x.png) 0 0 no-repeat; 15 | -webkit-background-size:40px 80px; background-size:40px 80px; 16 | -webkit-transition-property:-webkit-transform; 17 | -webkit-transition-duration:250ms; 18 | } 19 | .pullDown .pullDownIcon { 20 | -webkit-transform:rotate(0deg) translateZ(0); 21 | } 22 | 23 | .pullDown.flip .pullDownIcon { 24 | -webkit-transform:rotate(-180deg) translateZ(0); 25 | } 26 | 27 | 28 | .pullDown.loading .pullDownIcon { 29 | background-position:0 100%; 30 | -webkit-transform:rotate(0deg) translateZ(0); 31 | -webkit-transition-duration:0ms; 32 | 33 | -webkit-animation-name:loading; 34 | -webkit-animation-duration:2s; 35 | -webkit-animation-iteration-count:infinite; 36 | -webkit-animation-timing-function:linear; 37 | } 38 | 39 | @-webkit-keyframes loading { 40 | from { -webkit-transform:rotate(0deg) translateZ(0); } 41 | to { -webkit-transform:rotate(360deg) translateZ(0); } 42 | } 43 | -------------------------------------------------------------------------------- /tp/app/Tpl/Public/js/.TPM.js.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/app/Tpl/Public/js/.TPM.js.swp -------------------------------------------------------------------------------- /tp/app/Tpl/TPM-1.0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/app/Tpl/TPM-1.0.apk -------------------------------------------------------------------------------- /tp/app/Tpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 14 |
15 |
正在加载中...
16 | 17 | 18 | -------------------------------------------------------------------------------- /tp/app/Tpl/layout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | test 7 | 8 | 9 | {__CONTENT__} 10 | 11 | 12 | -------------------------------------------------------------------------------- /tp/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/config.inc.php -------------------------------------------------------------------------------- /tp/core/Conf/alias.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | 12 | defined('THINK_PATH') or exit(); 13 | // 系统别名定义文件 14 | return array( 15 | 'Model' => CORE_PATH.'Core/Model.class.php', 16 | 'Db' => CORE_PATH.'Core/Db.class.php', 17 | 'Log' => CORE_PATH.'Core/Log.class.php', 18 | 'ThinkTemplate' => CORE_PATH.'Template/ThinkTemplate.class.php', 19 | 'TagLib' => CORE_PATH.'Template/TagLib.class.php', 20 | 'Cache' => CORE_PATH.'Core/Cache.class.php', 21 | 'Widget' => CORE_PATH.'Core/Widget.class.php', 22 | 'TagLibCx' => CORE_PATH.'Driver/TagLib/TagLibCx.class.php', 23 | ); -------------------------------------------------------------------------------- /tp/core/Extend/Mode/Amf/Action.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | 12 | /** 13 | * ThinkPHP AMF模式Action控制器基类 14 | */ 15 | abstract class Action { 16 | 17 | /** 18 | * 魔术方法 有不存在的操作的时候执行 19 | * @access public 20 | * @param string $method 方法名 21 | * @param array $parms 参数 22 | * @return mixed 23 | */ 24 | public function __call($method,$parms) { 25 | // 如果定义了_empty操作 则调用 26 | if(method_exists($this,'_empty')) { 27 | $this->_empty($method,$parms); 28 | } 29 | } 30 | 31 | }//类定义结束 32 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Mode/Amf/App.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | 12 | /** 13 | * ThinkPHP AMF模式应用程序类 14 | */ 15 | class App { 16 | 17 | /** 18 | * 应用程序初始化 19 | * @access public 20 | * @return void 21 | */ 22 | static public function run() { 23 | 24 | //导入类库 25 | Vendor('Zend.Amf.Server'); 26 | //实例化AMF 27 | $server = new Zend_Amf_Server(); 28 | $actions = explode(',',C('APP_AMF_ACTIONS')); 29 | foreach ($actions as $action) 30 | $server -> setClass($action.'Action'); 31 | echo $server -> handle(); 32 | 33 | // 保存日志记录 34 | if(C('LOG_RECORD')) Log::save(); 35 | return ; 36 | } 37 | 38 | }; -------------------------------------------------------------------------------- /tp/core/Extend/Mode/Lite/tags.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | 12 | // 核心行为扩展列表文件 13 | return array( 14 | 'app_begin'=>array( 15 | 'CheckTemplate', // 模板检测 16 | ), 17 | 'route_check'=>array('CheckRoute', // 路由检测 18 | ), 19 | 'app_end'=>array( 20 | 'ShowPageTrace', // 页面Trace显示 21 | ), 22 | 'view_template'=>array( 23 | 'LocationTemplate', // 自动定位模板文件 24 | ), 25 | 'view_parse'=>array( 26 | 'ParseTemplate', // 模板解析 支持PHP、内置模板引擎和第三方模板引擎 27 | ), 28 | 'view_filter'=>array( 29 | 'ContentReplace', // 模板输出替换 30 | 'ShowRuntime', // 运行时间显示 31 | ), 32 | ); -------------------------------------------------------------------------------- /tp/core/Extend/Mode/Phprpc/Action.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | 12 | /** 13 | * ThinkPHP AMF模式Action控制器基类 14 | */ 15 | abstract class Action { 16 | 17 | /** 18 | * 魔术方法 有不存在的操作的时候执行 19 | * @access public 20 | * @param string $method 方法名 21 | * @param array $parms 参数 22 | * @return mixed 23 | */ 24 | public function __call($method,$parms) { 25 | // 如果定义了_empty操作 则调用 26 | if(method_exists($this,'_empty')) { 27 | $this->_empty($method,$parms); 28 | } 29 | } 30 | 31 | } -------------------------------------------------------------------------------- /tp/core/Extend/Mode/Phprpc/alias.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | 12 | // 导入别名定义 13 | alias_import(array( 14 | 'Model' => MODE_PATH.'Phprpc/Model.class.php', 15 | 'Db' => MODE_PATH.'Phprpc/Db.class.php', 16 | 'Debug' => CORE_PATH.'Util/Debug.class.php', 17 | 'Session' => CORE_PATH.'Util/Session.class.php', 18 | ) 19 | ); -------------------------------------------------------------------------------- /tp/core/Extend/Mode/Rest/Behavior/CheckUrlExtBehavior.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | 12 | /** 13 | * 行为扩展 URL资源类型检测 14 | */ 15 | class CheckUrlExtBehavior extends Behavior { 16 | 17 | /** 18 | * 检测URL地址中资源扩展 19 | * @access public 20 | * @return void 21 | */ 22 | public function run(&$params) { 23 | // 获取资源类型 24 | if(!empty($_SERVER['PATH_INFO'])) { 25 | $part = pathinfo($_SERVER['PATH_INFO']); 26 | if(isset($part['extension'])) { // 判断扩展名 27 | define('__EXT__', strtolower($part['extension'])); 28 | $_SERVER['PATH_INFO'] = preg_replace('/.'.__EXT__.'$/i','',$_SERVER['PATH_INFO']); 29 | } 30 | } 31 | } 32 | 33 | } -------------------------------------------------------------------------------- /tp/core/Extend/Mode/Rest/config.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | // $Id: config.php 2668 2012-01-26 13:07:16Z liu21st $ 12 | 13 | return array( 14 | 'REST_METHOD_LIST' => 'get,post,put,delete', // 允许的请求类型列表 15 | 'REST_DEFAULT_METHOD' => 'get', // 默认请求类型 16 | 'REST_CONTENT_TYPE_LIST' => 'html,xml,json,rss', // REST允许请求的资源类型列表 17 | 'REST_DEFAULT_TYPE' => 'html', // 默认的资源类型 18 | 'REST_OUTPUT_TYPE' => array( // REST允许输出的资源类型列表 19 | 'xml' => 'application/xml', 20 | 'json' => 'application/json', 21 | 'html' => 'text/html', 22 | ), 23 | ); -------------------------------------------------------------------------------- /tp/core/Extend/Mode/amf.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | 12 | // AMF模式定义文件 13 | return array( 14 | 'core' => array( 15 | THINK_PATH.'Common/functions.php', // 系统函数库 16 | CORE_PATH.'Core/Log.class.php',// 日志处理 17 | MODE_PATH.'Amf/App.class.php', // 应用程序类 18 | MODE_PATH.'Amf/Action.class.php',// 控制器类 19 | ), 20 | 21 | // 项目别名定义文件 [支持数组直接定义或者文件名定义] 22 | 'alias' => array( 23 | 'Model' => MODE_PATH.'Amf/Model.class.php', 24 | 'Db' => MODE_PATH.'Amf/Db.class.php', 25 | ), 26 | // 系统行为定义文件 [必须 支持数组直接定义或者文件名定义 ] 27 | 'extends' => array(), 28 | 29 | // 项目应用行为定义文件 [支持数组直接定义或者文件名定义] 30 | 'tags' => array(), 31 | ); -------------------------------------------------------------------------------- /tp/core/Extend/Mode/rest.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | 12 | // REST模式定义文件 13 | return array( 14 | 15 | 'core' => array( 16 | THINK_PATH.'Common/functions.php', // 标准模式函数库 17 | CORE_PATH.'Core/Log.class.php', // 日志处理类 18 | CORE_PATH.'Core/Dispatcher.class.php', // URL调度类 19 | CORE_PATH.'Core/App.class.php', // 应用程序类 20 | CORE_PATH.'Core/View.class.php', // 视图类 21 | MODE_PATH.'Rest/Action.class.php',// 控制器类 22 | ), 23 | 24 | // 系统行为定义文件 [必须 支持数组直接定义或者文件名定义 ] 25 | 'extends' => MODE_PATH.'Rest/tags.php', 26 | 27 | // 模式配置文件 [支持数组直接定义或者文件名定义](如有相同则覆盖项目配置文件中的配置) 28 | 'config' => MODE_PATH.'Rest/config.php', 29 | ); -------------------------------------------------------------------------------- /tp/core/Extend/README.txt: -------------------------------------------------------------------------------- 1 | 注意:下载后的扩展需要放入系统目录下面的Extend目录的相同位置。 2 | 3 | Extend目录为系统扩展目录(核心版不含任何扩展),子目录结构为: 4 | 5 | |-Action 控制器扩展 6 | |-Behavior 行为扩展 7 | |-Driver 驱动扩展 8 | | ├Driver/Cache 缓存驱动 9 | | ├Driver/Db 数据库驱动 10 | | ├Driver/Session SESSION驱动 11 | | ├Driver/TagLib 标签库驱动 12 | | ├Driver/Template 模板引擎驱动 13 | | 14 | |-Engine 引擎扩展 15 | |-Function 函数扩展 16 | |-Library 类库扩展 17 | | ├ORG ORG类库包 18 | | ├COM COM类库包 19 | | 20 | |-Mode 模式扩展 21 | |-Model 模型扩展 22 | |-Tool 其他扩展或工具 23 | |-Vendor 第三方类库目录 24 | 25 | 关于扩展的详细使用,请参考开发手册的扩展章节。 -------------------------------------------------------------------------------- /tp/core/Extend/Tool/Requirements-Checker/.htaccess: -------------------------------------------------------------------------------- 1 | php_value display_errors 'On' -------------------------------------------------------------------------------- /tp/core/Extend/Tool/Requirements-Checker/assets/denied/.htaccess: -------------------------------------------------------------------------------- 1 | Order Allow,Deny 2 | Deny from all -------------------------------------------------------------------------------- /tp/core/Extend/Tool/Requirements-Checker/assets/denied/checker.js: -------------------------------------------------------------------------------- 1 | fileProtectionChecker = true; 2 | -------------------------------------------------------------------------------- /tp/core/Extend/Tool/Requirements-Checker/assets/denied/web.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /tp/core/Extend/Tool/Requirements-Checker/assets/failed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/Requirements-Checker/assets/failed.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/Requirements-Checker/assets/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/Requirements-Checker/assets/info.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/Requirements-Checker/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/Requirements-Checker/assets/logo.png -------------------------------------------------------------------------------- /tp/core/Extend/Tool/Requirements-Checker/assets/passed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/Requirements-Checker/assets/passed.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/Requirements-Checker/assets/rewrite/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteRule .* checker.js [L] 3 | -------------------------------------------------------------------------------- /tp/core/Extend/Tool/Requirements-Checker/assets/rewrite/checker.js: -------------------------------------------------------------------------------- 1 | modRewriteChecker = true; 2 | -------------------------------------------------------------------------------- /tp/core/Extend/Tool/Requirements-Checker/assets/rewrite/web.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /tp/core/Extend/Tool/Requirements-Checker/assets/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/Requirements-Checker/assets/warning.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/TPM/SwitchMobileTplBehavior.class.php: -------------------------------------------------------------------------------- 1 | $replace))); 17 | //判断如果是云窗调试器访问跳转访问首页到client目录 18 | if(APP_DEBUG && ''==__INFO__ && preg_match('/android|iphone/i',$_SERVER['HTTP_USER_AGENT'])){ 19 | redirect(__ROOT__.'/client'); 20 | exit(); 21 | } 22 | } 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /tp/core/Extend/Tool/TPM/Tpl/Index/index.html: -------------------------------------------------------------------------------- 1 | 欢迎使用 TPM! 2 | -------------------------------------------------------------------------------- /tp/core/Extend/Tool/TPM/Tpl/Public/css/TPMlist.css: -------------------------------------------------------------------------------- 1 | .pullDown{ 2 | background:#fff; 3 | height:40px; 4 | line-height:40px; 5 | padding:5px 10px; 6 | border-bottom:1px solid #ccc; 7 | font-weight:bold; 8 | font-size:14px; 9 | color:#888; 10 | } 11 | .pullDown .pullDownIcon{ 12 | display:block; float:left; 13 | width:40px; height:40px; 14 | background:url(TPMlist-pull-icon-2x.png) 0 0 no-repeat; 15 | -webkit-background-size:40px 80px; background-size:40px 80px; 16 | -webkit-transition-property:-webkit-transform; 17 | -webkit-transition-duration:250ms; 18 | } 19 | .pullDown .pullDownIcon { 20 | -webkit-transform:rotate(0deg) translateZ(0); 21 | } 22 | 23 | .pullDown.flip .pullDownIcon { 24 | -webkit-transform:rotate(-180deg) translateZ(0); 25 | } 26 | 27 | 28 | .pullDown.loading .pullDownIcon { 29 | background-position:0 100%; 30 | -webkit-transform:rotate(0deg) translateZ(0); 31 | -webkit-transition-duration:0ms; 32 | 33 | -webkit-animation-name:loading; 34 | -webkit-animation-duration:2s; 35 | -webkit-animation-iteration-count:infinite; 36 | -webkit-animation-timing-function:linear; 37 | } 38 | 39 | @-webkit-keyframes loading { 40 | from { -webkit-transform:rotate(0deg) translateZ(0); } 41 | to { -webkit-transform:rotate(360deg) translateZ(0); } 42 | } 43 | -------------------------------------------------------------------------------- /tp/core/Extend/Tool/TPM/Tpl/Public/js/.TPM.js.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/TPM/Tpl/Public/js/.TPM.js.swp -------------------------------------------------------------------------------- /tp/core/Extend/Tool/TPM/Tpl/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 14 |
15 |
正在加载中...
16 | 17 | 18 | -------------------------------------------------------------------------------- /tp/core/Extend/Tool/TPM/Tpl/layout.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | test 7 | 8 | 9 | {__CONTENT__} 10 | 11 | 12 | -------------------------------------------------------------------------------- /tp/core/Extend/Tool/phpunit.php: -------------------------------------------------------------------------------- 1 | #! php -d safe_mode=Off 2 | 11 | // +---------------------------------------------------------------------- 12 | // $Id: phpunit.php 2504 2011-12-28 07:35:29Z liu21st $ 13 | 14 | require_once 'PHPUnit/Util/Filter.php'; 15 | 16 | PHPUnit_Util_Filter::addFileToFilter(__FILE__, 'PHPUNIT'); 17 | 18 | require_once 'PHPUnit/TextUI/Command.php'; 19 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/plugins/myplugins.js: -------------------------------------------------------------------------------- 1 | $.TE.plugin("bold",{ 2 | title:"标题", 3 | cmd:"bold", 4 | click:function(){ 5 | this.editor.pasteHTML("sdfdf"); 6 | }, 7 | bold:function(){ 8 | alert('sdfsdf'); 9 | }, 10 | noRight:function(e){ 11 | if(e.type=="click"){ 12 | alert('noright'); 13 | } 14 | }, 15 | init:function(){ 16 | }, 17 | event:"click mouseover mouseout", 18 | mouseover:function(e){ 19 | this.$btn.css("color","red"); 20 | 21 | }, 22 | mouseout:function(e){ 23 | this.$btn.css("color","#000") 24 | } 25 | }); 26 | -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/default/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/default/config.js -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/default/img/bg_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/default/img/bg_img.jpg -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/default/img/bg_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/default/img/bg_img.png -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/default/img/resize_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/default/img/resize_center.jpg -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/default/img/resize_leftjpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/default/img/resize_leftjpg.jpg -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/default/img/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/default/img/spacer.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_0.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_1.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_10.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_100.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_101.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_102.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_103.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_104.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_11.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_12.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_13.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_14.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_15.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_16.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_17.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_18.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_19.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_2.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_20.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_21.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_22.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_23.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_24.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_25.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_26.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_27.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_28.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_29.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_3.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_30.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_31.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_32.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_33.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_34.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_35.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_36.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_37.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_38.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_39.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_4.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_40.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_41.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_42.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_43.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_44.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_45.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_46.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_47.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_48.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_49.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_5.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_50.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_51.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_52.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_53.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_54.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_55.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_56.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_57.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_58.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_59.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_6.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_60.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_61.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_62.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_63.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_64.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_65.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_66.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_67.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_68.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_69.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_7.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_70.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_71.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_72.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_73.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_74.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_75.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_76.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_77.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_78.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_79.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_8.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_80.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_81.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_82.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_83.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_84.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_85.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_86.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_87.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_88.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_89.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_9.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_90.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_91.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_92.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_93.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_94.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_95.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_96.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_97.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_98.gif -------------------------------------------------------------------------------- /tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Tool/thinkeditor/skins/qq_face/qq_face_99.gif -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/EaseTemplate/template.ease.php: -------------------------------------------------------------------------------- 1 | '1', //缓存ID 27 | 'TplType' =>'htm', //模板格式 28 | 'CacheDir' =>'cache', //缓存目录 29 | 'TemplateDir'=>'template' , //模板存放目录 30 | 'AutoImage' =>'on' , //自动解析图片目录开关 on表示开放 off表示关闭 31 | 'LangDir' =>'language' , //语言文件存放的目录 32 | 'Language' =>'default' , //语言的默认文件 33 | 'Copyright' =>'off' , //版权保护 34 | 'MemCache' =>'' , //Memcache服务器地址例如:127.0.0.1:11211 35 | ) 36 | ){ 37 | 38 | parent::ETCoreStart($set); 39 | } 40 | 41 | } 42 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifier.replace.php: -------------------------------------------------------------------------------- 1 | 12 | * Name: replace
13 | * Purpose: simple search/replace 14 | * 15 | * @link http://smarty.php.net/manual/en/language.modifier.replace.php replace (Smarty online manual) 16 | * @author Monte Ohrt 17 | * @author Uwe Tews 18 | * @param string $string input string 19 | * @param string $search text to search for 20 | * @param string $replace replacement text 21 | * @return string 22 | */ 23 | function smarty_modifier_replace($string, $search, $replace) 24 | { 25 | if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) { 26 | require_once(SMARTY_PLUGINS_DIR . 'shared.mb_str_replace.php'); 27 | return smarty_mb_str_replace($search, $replace, $string); 28 | } 29 | 30 | return str_replace($search, $replace, $string); 31 | } 32 | 33 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifier.spacify.php: -------------------------------------------------------------------------------- 1 | 12 | * Name: spacify
13 | * Purpose: add spaces between characters in a string 14 | * 15 | * @link http://smarty.php.net/manual/en/language.modifier.spacify.php spacify (Smarty online manual) 16 | * @author Monte Ohrt 17 | * @param string $string input string 18 | * @param string $spacify_char string to insert between characters. 19 | * @return string 20 | */ 21 | function smarty_modifier_spacify($string, $spacify_char = ' ') 22 | { 23 | // well… what about charsets besides latin and UTF-8? 24 | return implode($spacify_char, preg_split('//u', $string, -1, PREG_SPLIT_NO_EMPTY)); 25 | } 26 | 27 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.cat.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: cat
14 | * Date: Feb 24, 2003
15 | * Purpose: catenate a value to a variable
16 | * Input: string to catenate
17 | * Example: {$var|cat:"foo"} 18 | * 19 | * @link http://smarty.php.net/manual/en/language.modifier.cat.php cat 20 | * (Smarty online manual) 21 | * @author Uwe Tews 22 | * @param array $params parameters 23 | * @return string with compiled code 24 | */ 25 | function smarty_modifiercompiler_cat($params, $compiler) 26 | { 27 | return '('.implode(').(', $params).')'; 28 | } 29 | 30 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.count_characters.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: count_characteres
14 | * Purpose: count the number of characters in a text 15 | * 16 | * @link http://www.smarty.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual) 17 | * @author Uwe Tews 18 | * @param array $params parameters 19 | * @return string with compiled code 20 | */ 21 | function smarty_modifiercompiler_count_characters($params, $compiler) 22 | { 23 | if (!isset($params[1]) || $params[1] != 'true') { 24 | return 'preg_match_all(\'/[^\s]/u\',' . $params[0] . ', $tmp)'; 25 | } 26 | if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) { 27 | return 'mb_strlen(' . $params[0] . ', SMARTY_RESOURCE_CHAR_SET)'; 28 | } 29 | // no MBString fallback 30 | return 'strlen(' . $params[0] . ')'; 31 | } 32 | 33 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.count_paragraphs.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: count_paragraphs
14 | * Purpose: count the number of paragraphs in a text 15 | * 16 | * @link http://www.smarty.net/manual/en/language.modifier.count.paragraphs.php 17 | * count_paragraphs (Smarty online manual) 18 | * @author Uwe Tews 19 | * @param array $params parameters 20 | * @return string with compiled code 21 | */ 22 | function smarty_modifiercompiler_count_paragraphs($params, $compiler) 23 | { 24 | // count \r or \n characters 25 | return '(preg_match_all(\'#[\r\n]+#\', ' . $params[0] . ', $tmp)+1)'; 26 | } 27 | 28 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.count_sentences.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: count_sentences 14 | * Purpose: count the number of sentences in a text 15 | * 16 | * @link http://www.smarty.net/manual/en/language.modifier.count.paragraphs.php 17 | * count_sentences (Smarty online manual) 18 | * @author Uwe Tews 19 | * @param array $params parameters 20 | * @return string with compiled code 21 | */ 22 | function smarty_modifiercompiler_count_sentences($params, $compiler) 23 | { 24 | // find periods, question marks, exclamation marks with a word before but not after. 25 | return 'preg_match_all("#\w[\.\?\!](\W|$)#uS", ' . $params[0] . ', $tmp)'; 26 | } 27 | 28 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.count_words.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: count_words
14 | * Purpose: count the number of words in a text 15 | * 16 | * @link http://www.smarty.net/manual/en/language.modifier.count.words.php count_words (Smarty online manual) 17 | * @author Uwe Tews 18 | * @param array $params parameters 19 | * @return string with compiled code 20 | */ 21 | function smarty_modifiercompiler_count_words($params, $compiler) 22 | { 23 | if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) { 24 | // return 'preg_match_all(\'#[\w\pL]+#u\', ' . $params[0] . ', $tmp)'; 25 | // expression taken from http://de.php.net/manual/en/function.str-word-count.php#85592 26 | return 'preg_match_all(\'/\p{L}[\p{L}\p{Mn}\p{Pd}\\\'\x{2019}]*/u\', ' . $params[0] . ', $tmp)'; 27 | } 28 | // no MBString fallback 29 | return 'str_word_count(' . $params[0] . ')'; 30 | } 31 | 32 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.default.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: default
14 | * Purpose: designate default value for empty variables 15 | * 16 | * @link http://www.smarty.net/manual/en/language.modifier.default.php default (Smarty online manual) 17 | * @author Uwe Tews 18 | * @param array $params parameters 19 | * @return string with compiled code 20 | */ 21 | function smarty_modifiercompiler_default ($params, $compiler) 22 | { 23 | $output = $params[0]; 24 | if (!isset($params[1])) { 25 | $params[1] = "''"; 26 | } 27 | 28 | array_shift($params); 29 | foreach ($params as $param) { 30 | $output = '(($tmp = @' . $output . ')===null||$tmp===\'\' ? ' . $param . ' : $tmp)'; 31 | } 32 | return $output; 33 | } 34 | 35 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.from_charset.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: from_charset
14 | * Purpose: convert character encoding from $charset to internal encoding 15 | * 16 | * @author Rodney Rehm 17 | * @param array $params parameters 18 | * @return string with compiled code 19 | */ 20 | function smarty_modifiercompiler_from_charset($params, $compiler) 21 | { 22 | if (!SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) { 23 | // FIXME: (rodneyrehm) shouldn't this throw an error? 24 | return $params[0]; 25 | } 26 | 27 | if (!isset($params[1])) { 28 | $params[1] = '"ISO-8859-1"'; 29 | } 30 | 31 | return 'mb_convert_encoding(' . $params[0] . ', SMARTY_RESOURCE_CHAR_SET, ' . $params[1] . ')'; 32 | } 33 | 34 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.indent.php: -------------------------------------------------------------------------------- 1 | 12 | * Name: indent
13 | * Purpose: indent lines of text 14 | * 15 | * @link http://www.smarty.net/manual/en/language.modifier.indent.php indent (Smarty online manual) 16 | * @author Uwe Tews 17 | * @param array $params parameters 18 | * @return string with compiled code 19 | */ 20 | 21 | function smarty_modifiercompiler_indent($params, $compiler) 22 | { 23 | if (!isset($params[1])) { 24 | $params[1] = 4; 25 | } 26 | if (!isset($params[2])) { 27 | $params[2] = "' '"; 28 | } 29 | return 'preg_replace(\'!^!m\',str_repeat(' . $params[2] . ',' . $params[1] . '),' . $params[0] . ')'; 30 | } 31 | 32 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.lower.php: -------------------------------------------------------------------------------- 1 | 12 | * Name: lower
13 | * Purpose: convert string to lowercase 14 | * 15 | * @link http://www.smarty.net/manual/en/language.modifier.lower.php lower (Smarty online manual) 16 | * @author Monte Ohrt 17 | * @author Uwe Tews 18 | * @param array $params parameters 19 | * @return string with compiled code 20 | */ 21 | 22 | function smarty_modifiercompiler_lower($params, $compiler) 23 | { 24 | if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) { 25 | return 'mb_strtolower(' . $params[0] . ',SMARTY_RESOURCE_CHAR_SET)' ; 26 | } 27 | // no MBString fallback 28 | return 'strtolower(' . $params[0] . ')'; 29 | } 30 | 31 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.noprint.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: noprint
14 | * Purpose: return an empty string 15 | * 16 | * @author Uwe Tews 17 | * @param array $params parameters 18 | * @return string with compiled code 19 | */ 20 | function smarty_modifiercompiler_noprint($params, $compiler) 21 | { 22 | return "''"; 23 | } 24 | 25 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.string_format.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: string_format
14 | * Purpose: format strings via sprintf 15 | * 16 | * @link http://www.smarty.net/manual/en/language.modifier.string.format.php string_format (Smarty online manual) 17 | * @author Uwe Tews 18 | * @param array $params parameters 19 | * @return string with compiled code 20 | */ 21 | function smarty_modifiercompiler_string_format($params, $compiler) 22 | { 23 | return 'sprintf(' . $params[1] . ',' . $params[0] . ')'; 24 | } 25 | 26 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.strip.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: strip
14 | * Purpose: Replace all repeated spaces, newlines, tabs 15 | * with a single space or supplied replacement string.
16 | * Example: {$var|strip} {$var|strip:" "}
17 | * Date: September 25th, 2002 18 | * 19 | * @link http://www.smarty.net/manual/en/language.modifier.strip.php strip (Smarty online manual) 20 | * @author Uwe Tews 21 | * @param array $params parameters 22 | * @return string with compiled code 23 | */ 24 | 25 | function smarty_modifiercompiler_strip($params, $compiler) 26 | { 27 | if (!isset($params[1])) { 28 | $params[1] = "' '"; 29 | } 30 | return "preg_replace('!\s+!u', {$params[1]},{$params[0]})"; 31 | } 32 | 33 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.strip_tags.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: strip_tags
14 | * Purpose: strip html tags from text 15 | * 16 | * @link http://www.smarty.net/manual/en/language.modifier.strip.tags.php strip_tags (Smarty online manual) 17 | * @author Uwe Tews 18 | * @param array $params parameters 19 | * @return string with compiled code 20 | */ 21 | function smarty_modifiercompiler_strip_tags($params, $compiler) 22 | { 23 | if (!isset($params[1])) { 24 | $params[1] = true; 25 | } 26 | if ($params[1] === true) { 27 | return "preg_replace('!<[^>]*?>!', ' ', {$params[0]})"; 28 | } else { 29 | return 'strip_tags(' . $params[0] . ')'; 30 | } 31 | } 32 | 33 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.to_charset.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: to_charset
14 | * Purpose: convert character encoding from internal encoding to $charset 15 | * 16 | * @author Rodney Rehm 17 | * @param array $params parameters 18 | * @return string with compiled code 19 | */ 20 | function smarty_modifiercompiler_to_charset($params, $compiler) 21 | { 22 | if (!SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) { 23 | // FIXME: (rodneyrehm) shouldn't this throw an error? 24 | return $params[0]; 25 | } 26 | 27 | if (!isset($params[1])) { 28 | $params[1] = '"ISO-8859-1"'; 29 | } 30 | 31 | return 'mb_convert_encoding(' . $params[0] . ', ' . $params[1] . ', SMARTY_RESOURCE_CHAR_SET)'; 32 | } 33 | 34 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/modifiercompiler.upper.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: lower
14 | * Purpose: convert string to uppercase 15 | * 16 | * @link http://smarty.php.net/manual/en/language.modifier.upper.php lower (Smarty online manual) 17 | * @author Uwe Tews 18 | * @param array $params parameters 19 | * @return string with compiled code 20 | */ 21 | function smarty_modifiercompiler_upper($params, $compiler) 22 | { 23 | if (SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) { 24 | return 'mb_strtoupper(' . $params[0] . ',SMARTY_RESOURCE_CHAR_SET)' ; 25 | } 26 | // no MBString fallback 27 | return 'strtoupper(' . $params[0] . ')'; 28 | } 29 | 30 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/plugins/shared.literal_compiler_param.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/sysplugins/smarty_internal_compile_debug.php: -------------------------------------------------------------------------------- 1 | getAttributes($compiler, $args); 32 | 33 | // compile always as nocache 34 | $compiler->tag_nocache = true; 35 | 36 | // display debug template 37 | $_output = "smarty->loadPlugin('Smarty_Internal_Debug'); Smarty_Internal_Debug::display_debug(\$_smarty_tpl); ?>"; 38 | return $_output; 39 | } 40 | 41 | } 42 | 43 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/sysplugins/smarty_internal_compile_ldelim.php: -------------------------------------------------------------------------------- 1 | getAttributes($compiler, $args); 31 | if ($_attr['nocache'] === true) { 32 | $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno); 33 | } 34 | // this tag does not return compiled code 35 | $compiler->has_code = true; 36 | return $compiler->smarty->left_delimiter; 37 | } 38 | 39 | } 40 | 41 | ?> 42 | -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/sysplugins/smarty_internal_compile_rdelim.php: -------------------------------------------------------------------------------- 1 | getAttributes($compiler, $args); 31 | if ($_attr['nocache'] === true) { 32 | $compiler->trigger_template_error('nocache option not allowed', $compiler->lex->taglineno); 33 | } 34 | // this tag does not return compiled code 35 | $compiler->has_code = true; 36 | return $compiler->smarty->right_delimiter; 37 | } 38 | 39 | } 40 | 41 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/sysplugins/smarty_internal_get_include_path.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Smarty/sysplugins/smarty_resource_recompiled.php: -------------------------------------------------------------------------------- 1 | filepath = false; 30 | $compiled->timestamp = false; 31 | $compiled->exists = false; 32 | } 33 | 34 | } 35 | 36 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/TemplateLite/internal/compile.compile_custom_function.php: -------------------------------------------------------------------------------- 1 | _plugin_exists($function, "function")) 12 | { 13 | $_args = $object->_parse_arguments($arguments); 14 | foreach($_args as $key => $value) 15 | { 16 | if (is_bool($value)) 17 | { 18 | $value = $value ? 'true' : 'false'; 19 | } 20 | if (is_null($value)) 21 | { 22 | $value = 'null'; 23 | } 24 | $_args[$key] = "'$key' => $value"; 25 | } 26 | $_result = '_parse_modifier($function . '(array(' . implode(',', (array)$_args) . '), $this)', $modifiers) . '; '; 30 | } 31 | else 32 | { 33 | $_result .= $function . '(array(' . implode(',', (array)$_args) . '), $this);'; 34 | } 35 | $_result .= '?>'; 36 | return true; 37 | } 38 | else 39 | { 40 | return false; 41 | } 42 | } 43 | 44 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/TemplateLite/internal/template.build_dir.php: -------------------------------------------------------------------------------- 1 | _get_dir($dir); 15 | } 16 | $_result = $object->_get_dir($dir); 17 | foreach($_args as $value) 18 | { 19 | $_result .= $value.DIRECTORY_SEPARATOR; 20 | if (!is_dir($_result)) 21 | { 22 | @mkdir($_result, 0777); 23 | } 24 | } 25 | return $_result; 26 | } 27 | 28 | ?> -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/Zend/Amf/Exception.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tp/core/Extend/Vendor/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/Extend/Vendor/readme.txt -------------------------------------------------------------------------------- /tp/core/Lib/Core/ThinkException.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | 12 | /** 13 | * ThinkPHP系统异常基类 14 | * @category Think 15 | * @package Think 16 | * @subpackage Core 17 | * @author liu21st 18 | */ 19 | class ThinkException extends Exception { 20 | } -------------------------------------------------------------------------------- /tp/core/Tpl/default_index.tpl: -------------------------------------------------------------------------------- 1 | show('

:)

欢迎使用 ThinkPHP

','utf-8'); 6 | } 7 | } -------------------------------------------------------------------------------- /tp/core/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/core/logo.png -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.access.php: -------------------------------------------------------------------------------- 1 | 'role_id', 1 => 'node_id', '_autoinc' => false, '_type' => array ( 'role_id' => 'int(5)', 'node_id' => 'int(5)', ), );?> -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.ad.php: -------------------------------------------------------------------------------- 1 | 'id', 1 => 'board_id', 2 => 'type', 3 => 'name', 4 => 'url', 5 => 'code', 6 => 'start_time', 7 => 'end_time', 8 => 'clicks', 9 => 'add_time', 10 => 'ordid', 11 => 'status', '_autoinc' => true, '_pk' => 'id', '_type' => array ( 'id' => 'smallint(5)', 'board_id' => 'smallint(5)', 'type' => 'varchar(20)', 'name' => 'varchar(50)', 'url' => 'varchar(255)', 'code' => 'text', 'start_time' => 'int(10)', 'end_time' => 'int(10)', 'clicks' => 'int(10)', 'add_time' => 'int(10)', 'ordid' => 'int(10)', 'status' => 'tinyint(1)', ), );?> -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.adboard.php: -------------------------------------------------------------------------------- 1 | 'id', 1 => 'name', 2 => 'type', 3 => 'width', 4 => 'height', 5 => 'description', 6 => 'status', '_autoinc' => true, '_pk' => 'id', '_type' => array ( 'id' => 'smallint(5)', 'name' => 'varchar(50)', 'type' => 'varchar(20)', 'width' => 'smallint(5)', 'height' => 'smallint(5)', 'description' => 'varchar(255)', 'status' => 'tinyint(1)', ), );?> -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.admin.php: -------------------------------------------------------------------------------- 1 | 'id', 1 => 'user_name', 2 => 'password', 3 => 'add_time', 4 => 'last_time', 5 => 'status', 6 => 'role_id', '_autoinc' => true, '_pk' => 'id', '_type' => array ( 'id' => 'int(10)', 'user_name' => 'varchar(50)', 'password' => 'varchar(100)', 'add_time' => 'int(10)', 'last_time' => 'int(10)', 'status' => 'tinyint(1) unsigned', 'role_id' => 'int(10)', ), );?> -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.article.php: -------------------------------------------------------------------------------- 1 | 'id', 1 => 'cate_id', 2 => 'title', 3 => 'orig', 4 => 'img', 5 => 'url', 6 => 'abst', 7 => 'info', 8 => 'add_time', 9 => 'ordid', 10 => 'is_hot', 11 => 'is_best', 12 => 'status', 13 => 'seo_title', 14 => 'seo_keys', 15 => 'seo_desc', '_autoinc' => true, '_pk' => 'id', '_type' => array ( 'id' => 'int(10) unsigned', 'cate_id' => 'tinyint(4) unsigned', 'title' => 'varchar(255)', 'orig' => 'varchar(255)', 'img' => 'varchar(255)', 'url' => 'varchar(255)', 'abst' => 'varchar(255)', 'info' => 'mediumtext', 'add_time' => 'datetime', 'ordid' => 'tinyint(4)', 'is_hot' => 'tinyint(1)', 'is_best' => 'tinyint(1)', 'status' => 'tinyint(1)', 'seo_title' => 'varchar(255)', 'seo_keys' => 'varchar(255)', 'seo_desc' => 'text', ), );?> -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.article_cate.php: -------------------------------------------------------------------------------- 1 | 'id', 1 => 'name', 2 => 'alias', 3 => 'pid', 4 => 'status', 5 => 'article_nums', 6 => 'sort_order', 7 => 'seo_title', 8 => 'seo_keys', 9 => 'seo_desc', '_autoinc' => true, '_pk' => 'id', '_type' => array ( 'id' => 'smallint(4) unsigned', 'name' => 'varchar(100)', 'alias' => 'varchar(50)', 'pid' => 'smallint(4) unsigned', 'status' => 'tinyint(1)', 'article_nums' => 'int(10) unsigned', 'sort_order' => 'smallint(4) unsigned', 'seo_title' => 'varchar(255)', 'seo_keys' => 'varchar(255)', 'seo_desc' => 'text', ), );?> -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.flink.php: -------------------------------------------------------------------------------- 1 | 'id', 1 => 'cate_id', 2 => 'img', 3 => 'name', 4 => 'url', 5 => 'status', 6 => 'ordid', '_autoinc' => true, '_pk' => 'id', '_type' => array ( 'id' => 'int(10) unsigned', 'cate_id' => 'smallint(4)', 'img' => 'varchar(255)', 'name' => 'varchar(100)', 'url' => 'varchar(255)', 'status' => 'tinyint(1)', 'ordid' => 'smallint(5)', ), );?> -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.flink_cate.php: -------------------------------------------------------------------------------- 1 | 'id', 1 => 'name', '_autoinc' => true, '_pk' => 'id', '_type' => array ( 'id' => 'smallint(4)', 'name' => 'varchar(255)', ), );?> -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.group.php: -------------------------------------------------------------------------------- 1 | 'id', 1 => 'name', 2 => 'title', 3 => 'create_time', 4 => 'update_time', 5 => 'status', 6 => 'sort', '_autoinc' => true, '_pk' => 'id', '_type' => array ( 'id' => 'smallint(3) unsigned', 'name' => 'varchar(25)', 'title' => 'varchar(50)', 'create_time' => 'int(11) unsigned', 'update_time' => 'int(11) unsigned', 'status' => 'tinyint(1) unsigned', 'sort' => 'smallint(3) unsigned', ), );?> -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.nav.php: -------------------------------------------------------------------------------- 1 | 'id', 1 => 'name', 2 => 'alias', 3 => 'url', 4 => 'sort_order', 5 => 'system', 6 => 'type', 7 => 'in_site', 8 => 'is_show', 9 => 'seo_title', 10 => 'seo_keys', 11 => 'seo_desc', 12 => 'items_cate_id', '_autoinc' => true, '_pk' => 'id', '_type' => array ( 'id' => 'int(11)', 'name' => 'varchar(255)', 'alias' => 'varchar(50)', 'url' => 'varchar(255)', 'sort_order' => 'smallint(4)', 'system' => 'tinyint(1)', 'type' => 'tinyint(1)', 'in_site' => 'tinyint(1)', 'is_show' => 'tinyint(1)', 'seo_title' => 'varchar(255)', 'seo_keys' => 'text', 'seo_desc' => 'text', 'items_cate_id' => 'int(11)', ), );?> -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.node.php: -------------------------------------------------------------------------------- 1 | 'id', 1 => 'module', 2 => 'module_name', 3 => 'action', 4 => 'action_name', 5 => 'data', 6 => 'status', 7 => 'remark', 8 => 'sort', 9 => 'auth_type', 10 => 'group_id', 11 => 'often', 12 => 'is_show', '_autoinc' => true, '_pk' => 'id', '_type' => array ( 'id' => 'smallint(6) unsigned', 'module' => 'varchar(255)', 'module_name' => 'varchar(50)', 'action' => 'varchar(255)', 'action_name' => 'varchar(50)', 'data' => 'varchar(255)', 'status' => 'tinyint(1)', 'remark' => 'varchar(255)', 'sort' => 'smallint(6) unsigned', 'auth_type' => 'tinyint(1)', 'group_id' => 'tinyint(3) unsigned', 'often' => 'tinyint(1)', 'is_show' => 'tinyint(1)', ), );?> -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.role.php: -------------------------------------------------------------------------------- 1 | 'id', 1 => 'name', 2 => 'status', 3 => 'remark', 4 => 'create_time', 5 => 'update_time', '_autoinc' => true, '_pk' => 'id', '_type' => array ( 'id' => 'smallint(6) unsigned', 'name' => 'varchar(20)', 'status' => 'tinyint(1) unsigned', 'remark' => 'varchar(255)', 'create_time' => 'int(11) unsigned', 'update_time' => 'int(11) unsigned', ), );?> -------------------------------------------------------------------------------- /tp/data/_fields/mobilecms.setting.php: -------------------------------------------------------------------------------- 1 | 'name', 1 => 'data', '_autoinc' => false, '_type' => array ( 'name' => 'varchar(100)', 'data' => 'text', ), );?> -------------------------------------------------------------------------------- /tp/data/adboard/banner.config.php: -------------------------------------------------------------------------------- 1 | '矩形横幅', 4 | 'option' => false, 5 | 'allow_type' => array('text','image','code','flash'), 6 | ); -------------------------------------------------------------------------------- /tp/data/adboard/focus.config.php: -------------------------------------------------------------------------------- 1 | '焦点图', 4 | 'option' => true, 5 | 'allow_type' => array('image'), 6 | ); -------------------------------------------------------------------------------- /tp/data/adboard/focus.html: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $("#KinSlideshow").KinSlideshow({ 3 | titleBar:{titleBar_height:30,titleBar_alpha:0.5} 4 | }); 5 | }); 6 | var str = ""; 7 | var str = ""; 14 | document.write(str); -------------------------------------------------------------------------------- /tp/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/index.html -------------------------------------------------------------------------------- /tp/data/install.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/install.lock -------------------------------------------------------------------------------- /tp/data/install.temp.php: -------------------------------------------------------------------------------- 1 | 'localhost', 4 | 'db_port' => '3306', 5 | 'db_user' => 'root', 6 | 'db_pass' => '', 7 | 'db_name' => 'mobilecms', 8 | 'db_prefix' => 'cms_', 9 | 'admin_user' => 'admin', 10 | 'admin_pass' => 'admin', 11 | 'admin_email' => 'admin@admin.com', 12 | ); 13 | ?> -------------------------------------------------------------------------------- /tp/data/news/52a80c2398968.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a80c2398968.jpg -------------------------------------------------------------------------------- /tp/data/news/52a80c5acdfe6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a80c5acdfe6.jpg -------------------------------------------------------------------------------- /tp/data/news/52a80f9f22551.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a80f9f22551.JPG -------------------------------------------------------------------------------- /tp/data/news/52a80fb057bcf.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a80fb057bcf.JPG -------------------------------------------------------------------------------- /tp/data/news/52a80fc01ab3f.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a80fc01ab3f.JPG -------------------------------------------------------------------------------- /tp/data/news/52a80fce3567e.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a80fce3567e.JPG -------------------------------------------------------------------------------- /tp/data/news/52a80fd9dd40a.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a80fd9dd40a.JPG -------------------------------------------------------------------------------- /tp/data/news/52a80fe7a037a.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a80fe7a037a.JPG -------------------------------------------------------------------------------- /tp/data/news/52a80ff600000.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a80ff600000.JPG -------------------------------------------------------------------------------- /tp/data/news/52a8100190f56.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a8100190f56.JPG -------------------------------------------------------------------------------- /tp/data/news/52a81012f0537.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a81012f0537.JPG -------------------------------------------------------------------------------- /tp/data/news/52a8101e03d09.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a8101e03d09.JPG -------------------------------------------------------------------------------- /tp/data/news/52a81035cdfe6.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a81035cdfe6.JPG -------------------------------------------------------------------------------- /tp/data/news/52a81041487ab.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a81041487ab.JPG -------------------------------------------------------------------------------- /tp/data/news/52a8104c7270e.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a8104c7270e.JPG -------------------------------------------------------------------------------- /tp/data/news/52a8105f3567e.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a8105f3567e.JPG -------------------------------------------------------------------------------- /tp/data/news/52a810727de29.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a810727de29.JPG -------------------------------------------------------------------------------- /tp/data/news/52a8108881b32.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a8108881b32.JPG -------------------------------------------------------------------------------- /tp/data/news/52a810980f424.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a810980f424.JPG -------------------------------------------------------------------------------- /tp/data/news/52a810a81e848.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a810a81e848.JPG -------------------------------------------------------------------------------- /tp/data/news/52a8269722551.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/data/news/52a8269722551.JPG -------------------------------------------------------------------------------- /tp/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/icon.png -------------------------------------------------------------------------------- /tp/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tp/request.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tp/statics/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/css/login.css -------------------------------------------------------------------------------- /tp/statics/admin/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/css/main.css -------------------------------------------------------------------------------- /tp/statics/admin/images/ajax_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/ajax_loading.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/asc.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/avatar-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/avatar-60.png -------------------------------------------------------------------------------- /tp/statics/admin/images/bnt_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/bnt_bg.png -------------------------------------------------------------------------------- /tp/statics/admin/images/button_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/button_bg.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/color.png -------------------------------------------------------------------------------- /tp/statics/admin/images/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/desc.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/h_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/h_bg.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/hr.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/icon_use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/icon_use.png -------------------------------------------------------------------------------- /tp/statics/admin/images/input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/input.png -------------------------------------------------------------------------------- /tp/statics/admin/images/input_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/input_date.png -------------------------------------------------------------------------------- /tp/statics/admin/images/input_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/input_focus.png -------------------------------------------------------------------------------- /tp/statics/admin/images/left_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/left_bg.png -------------------------------------------------------------------------------- /tp/statics/admin/images/left_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/left_menu.png -------------------------------------------------------------------------------- /tp/statics/admin/images/left_menu_openClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/left_menu_openClose.png -------------------------------------------------------------------------------- /tp/statics/admin/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/login.png -------------------------------------------------------------------------------- /tp/statics/admin/images/login_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/login_bg.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/login_btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/login_btn.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/login_pass_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/login_pass_bg.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/login_user_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/login_user_bg.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/logo.png -------------------------------------------------------------------------------- /tp/statics/admin/images/main-left-a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/main-left-a.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/msg.png -------------------------------------------------------------------------------- /tp/statics/admin/images/msg_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/msg_bg.png -------------------------------------------------------------------------------- /tp/statics/admin/images/nav_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/nav_bg.png -------------------------------------------------------------------------------- /tp/statics/admin/images/nopic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/nopic.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/oauth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/oauth.png -------------------------------------------------------------------------------- /tp/statics/admin/images/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/pages.png -------------------------------------------------------------------------------- /tp/statics/admin/images/set_y_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/set_y_line.png -------------------------------------------------------------------------------- /tp/statics/admin/images/tv-collapsable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/tv-collapsable.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/tv-expandable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/tv-expandable.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/tv-item.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/tv-item.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/uline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/uline.gif -------------------------------------------------------------------------------- /tp/statics/admin/images/x_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/admin/images/x_bg.png -------------------------------------------------------------------------------- /tp/statics/admin/js/admin_common.js: -------------------------------------------------------------------------------- 1 | function redirect(url) { 2 | location.href = url; 3 | } 4 | //滚动条 5 | $(function(){ 6 | $(":text").addClass('input-text'); 7 | }) 8 | 9 | /** 10 | * 全选checkbox,注意:标识checkbox id固定为为check_box 11 | * @param string name 列表check名称,如 uid[] 12 | */ 13 | function selectall(name) { 14 | if ($("#check_box").attr("checked")==false) { 15 | $("input[name='"+name+"']").each(function() { 16 | this.checked=false; 17 | }); 18 | } else { 19 | $("input[name='"+name+"']").each(function() { 20 | this.checked=true; 21 | }); 22 | } 23 | } 24 | //禁止选择一级分类 25 | function check_cate(obj){ 26 | var level=parseInt($("option:selected",$(obj)).attr('level')); 27 | var pid=parseInt($("option:selected",$(obj)).attr('pid')); 28 | if(pid==0||level==0||level==1){ 29 | alert("一级、二级分类禁止选择!"); 30 | $('option[value="0"]',$(obj)).attr('selected','selected'); 31 | } 32 | } -------------------------------------------------------------------------------- /tp/statics/css/formvalidator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/css/formvalidator.css -------------------------------------------------------------------------------- /tp/statics/images/dialog/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/dialog/border.png -------------------------------------------------------------------------------- /tp/statics/images/dialog/btns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/dialog/btns.png -------------------------------------------------------------------------------- /tp/statics/images/dialog/chrome_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/dialog/chrome_s.png -------------------------------------------------------------------------------- /tp/statics/images/dialog/chrome_s_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/dialog/chrome_s_1.png -------------------------------------------------------------------------------- /tp/statics/images/dialog/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/dialog/icons.png -------------------------------------------------------------------------------- /tp/statics/images/dialog/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/dialog/loading.gif -------------------------------------------------------------------------------- /tp/statics/images/dialog/loading_d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/dialog/loading_d.gif -------------------------------------------------------------------------------- /tp/statics/images/dialog/msg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/dialog/msg.png -------------------------------------------------------------------------------- /tp/statics/images/dialog/msg_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/dialog/msg_bg.png -------------------------------------------------------------------------------- /tp/statics/images/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/end.png -------------------------------------------------------------------------------- /tp/statics/images/loading-footer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/loading-footer.gif -------------------------------------------------------------------------------- /tp/statics/images/masonry_loading_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/masonry_loading_1.gif -------------------------------------------------------------------------------- /tp/statics/images/masonry_loadingí¬í¬bac.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/masonry_loadingí¬í¬bac.gif -------------------------------------------------------------------------------- /tp/statics/images/masonry_loading����bac.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/masonry_loading����bac.gif -------------------------------------------------------------------------------- /tp/statics/images/status_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/status_0.gif -------------------------------------------------------------------------------- /tp/statics/images/status_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/images/status_1.gif -------------------------------------------------------------------------------- /tp/statics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/index.html -------------------------------------------------------------------------------- /tp/statics/js/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 | -------------------------------------------------------------------------------- /tp/statics/js/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 | -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/0.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/1.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/10.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/100.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/101.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/102.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/103.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/104.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/105.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/106.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/107.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/108.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/109.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/11.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/110.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/111.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/112.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/113.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/114.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/115.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/116.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/117.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/118.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/119.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/120.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/121.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/122.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/123.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/124.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/125.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/126.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/127.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/128.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/129.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/130.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/131.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/132.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/133.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/134.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/46.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/47.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/48.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/49.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/5.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/50.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/51.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/52.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/53.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/54.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/55.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/56.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/57.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/58.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/59.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/6.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/60.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/61.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/62.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/63.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/64.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/65.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/66.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/67.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/68.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/69.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/7.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/70.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/71.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/72.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/73.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/74.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/75.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/76.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/77.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/78.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/79.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/8.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/80.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/81.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/82.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/83.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/84.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/85.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/86.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/87.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/88.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/89.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/9.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/90.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/91.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/92.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/93.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/94.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/95.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/96.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/97.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/98.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/99.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/emoticons/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/emoticons/images/static.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/filemanager/images/folder-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/filemanager/images/folder-16.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/filemanager/images/folder-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/filemanager/images/folder-64.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/filemanager/images/go-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/filemanager/images/go-up.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/image/images/align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/image/images/align_left.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/image/images/align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/image/images/align_right.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/image/images/align_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/image/images/align_top.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/image/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/image/images/refresh.png -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/multiimage/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/multiimage/images/image.png -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/multiimage/images/select-files-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/multiimage/images/select-files-zh_CN.png -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/multiimage/images/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/plugins/multiimage/images/swfupload.swf -------------------------------------------------------------------------------- /tp/statics/js/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 | -------------------------------------------------------------------------------- /tp/statics/js/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 | -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/plugins/template/html/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入标题 9 |

10 |

11 | 在此处输入内容 12 |

13 | 14 | -------------------------------------------------------------------------------- /tp/statics/js/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 | -------------------------------------------------------------------------------- /tp/statics/js/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 | -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/themes/common/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/themes/common/anchor.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/themes/common/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/themes/common/blank.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/themes/common/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/themes/common/flash.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/themes/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/themes/common/loading.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/themes/common/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/themes/common/media.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/themes/common/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/themes/common/rm.gif -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/themes/default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/themes/default/background.png -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/themes/default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/themes/default/default.png -------------------------------------------------------------------------------- /tp/statics/js/kindeditor/themes/qq/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/kindeditor/themes/qq/editor.gif -------------------------------------------------------------------------------- /tp/statics/js/waterfall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cugle/workflow/b683d91ae66b3d67b8b122c102b075a9e2da3a5c/tp/statics/js/waterfall.js --------------------------------------------------------------------------------