├── .htaccess ├── .project ├── GoOut.sql ├── LICENSE.txt ├── Nginx.conf ├── README.md ├── admin └── index.php ├── api ├── paymethod │ ├── alipay │ │ └── guarantee │ │ │ ├── cacert.pem │ │ │ ├── guarantee.php │ │ │ └── lib │ │ │ ├── alipay_core.function.php │ │ │ ├── alipay_md5.function.php │ │ │ ├── alipay_notify.class.php │ │ │ └── alipay_submit.class.php │ └── paypal │ │ └── paypal.php ├── uc.php └── uc_client │ ├── client.php │ ├── config.inc.php │ ├── control │ ├── app.php │ ├── cache.php │ ├── domain.php │ ├── feed.php │ ├── friend.php │ ├── index.htm │ ├── mail.php │ ├── pm.php │ ├── tag.php │ └── user.php │ ├── data │ ├── cache │ │ └── index.htm │ └── index.htm │ ├── index.htm │ ├── lib │ ├── db.class.php │ ├── index.htm │ ├── sendmail.inc.php │ ├── uccode.class.php │ └── xml.class.php │ └── model │ ├── app.php │ ├── base.php │ ├── cache.php │ ├── domain.php │ ├── friend.php │ ├── index.htm │ ├── mail.php │ ├── misc.php │ ├── note.php │ ├── pm.php │ ├── tag.php │ └── user.php ├── application ├── Admin │ ├── Common │ │ └── function.php │ ├── Conf │ │ └── config.php │ ├── Controller │ │ ├── AdController.class.php │ │ ├── BackupController.class.php │ │ ├── IndexController.class.php │ │ ├── LinkController.class.php │ │ ├── MailerController.class.php │ │ ├── MainController.class.php │ │ ├── MenuController.class.php │ │ ├── NavController.class.php │ │ ├── NavcatController.class.php │ │ ├── PluginController.class.php │ │ ├── PublicController.class.php │ │ ├── RbacController.class.php │ │ ├── RouteController.class.php │ │ ├── SettingController.class.php │ │ ├── SlideController.class.php │ │ ├── SlidecatController.class.php │ │ ├── StorageController.class.php │ │ └── UserController.class.php │ ├── Lang │ │ └── zh-cn.php │ └── Menu │ │ ├── admin_content.php │ │ ├── admin_extension.php │ │ ├── admin_menu.php │ │ └── admin_setting.php ├── Api │ ├── Conf │ │ └── config.php │ ├── Controller │ │ ├── CheckcodeController.class.php │ │ ├── GuestbookController.class.php │ │ ├── GuestbookadminController.class.php │ │ ├── MapController.class.php │ │ ├── OauthController.class.php │ │ ├── OauthadminController.class.php │ │ └── PluginController.class.php │ └── Event │ │ └── TypeEvent.class.php ├── Asset │ ├── Conf │ │ └── config.php │ └── Controller │ │ ├── AssetController.class.php │ │ ├── DownloadController.class.php │ │ └── UeditorController.class.php ├── Comment │ └── Controller │ │ ├── CommentController.class.php │ │ ├── CommentadminController.class.php │ │ └── WidgetController.class.php ├── Common │ ├── Behavior │ │ ├── InitHookBehavior.class.php │ │ └── TmplStripSpaceBehavior.class.php │ ├── Common │ │ ├── extend.php │ │ ├── function.php │ │ └── index.html │ ├── Conf │ │ ├── alias.php │ │ ├── config.php │ │ ├── config_sae.php │ │ ├── debug.php │ │ ├── index.html │ │ └── tags.php │ ├── Controller │ │ ├── AdminbaseController.class.php │ │ ├── AppframeController.class.php │ │ ├── HomeBaseController.class.php │ │ └── MemberbaseController.class.php │ ├── Lang │ │ └── zh-cn.php │ ├── Lib │ │ ├── Plugin.class.php │ │ ├── RSS │ │ │ └── Rss.class.php │ │ ├── Taglib │ │ │ ├── TagLibHome.class.php │ │ │ └── TagLibSpadmin.class.php │ │ └── iAuth.class.php │ ├── Model │ │ ├── AdModel.class.php │ │ ├── AssetModel.class.php │ │ ├── CommentsModel.class.php │ │ ├── CommonModel.class.php │ │ ├── GuestbookModel.class.php │ │ ├── LinksModel.class.php │ │ ├── MenuModel.class.php │ │ ├── NavCatModel.class.php │ │ ├── NavModel.class.php │ │ ├── OptionsModel.class.php │ │ ├── PluginsModel.class.php │ │ ├── PostsModel.class.php │ │ ├── RoleModel.class.php │ │ ├── SlideCatModel.class.php │ │ ├── SlideModel.class.php │ │ ├── TermRelationshipsModel.class.php │ │ ├── TermsModel.class.php │ │ ├── UsersModel.class.php │ │ └── index.html │ └── index.html ├── Portal │ ├── Common │ │ └── function.php │ ├── Conf │ │ └── config.php │ ├── Controller │ │ ├── AdminPageController.class.php │ │ ├── AdminPostController.class.php │ │ ├── AdminTermController.class.php │ │ ├── ArticleController.class.php │ │ ├── IndexController.class.php │ │ ├── ListController.class.php │ │ ├── PageController.class.php │ │ └── SearchController.class.php │ ├── Lib │ │ └── Taglib │ │ │ └── Portal.class.php │ ├── hooks.php │ └── nav.php ├── Server │ ├── Common │ │ └── function.php │ ├── Conf │ │ └── conf.php │ ├── Controller │ │ ├── IndexController.class.php │ │ ├── IndexadminController.class.php │ │ └── OrderController.class.php │ ├── Model │ │ ├── OrderModel.class.php │ │ ├── ServersModel.class.php │ │ ├── ServersSellModel.class.php │ │ └── SsModel.class.php │ └── nav.php └── User │ ├── Conf │ └── config.php │ ├── Controller │ ├── CenterController.class.php │ ├── FavoriteController.class.php │ ├── IndexController.class.php │ ├── IndexadminController.class.php │ ├── LoginController.class.php │ ├── OauthadminController.class.php │ ├── ProfileController.class.php │ ├── PublicController.class.php │ └── RegisterController.class.php │ └── Menu │ └── admin_indexadmin.php ├── config.yaml ├── data ├── backup │ ├── .htaccess │ └── index.html ├── conf │ ├── config.php │ ├── db.php │ ├── index.html │ └── route │ │ └── portal.php ├── runtime │ └── Cache │ │ └── Admin │ │ └── 4caaf267f84dbce125416f9aac4c1cc5.php ├── uc_cache │ └── index.html └── upload │ ├── avatar │ └── index.html │ └── ueditor │ └── index.html ├── index.php ├── install ├── auto.php ├── config.php ├── css │ └── install.css ├── images │ └── install │ │ ├── bg.png │ │ ├── btn.png │ │ ├── complete.png │ │ ├── header.png │ │ ├── icon.png │ │ ├── icon_install.png │ │ ├── icon_update.png │ │ ├── ignore.png │ │ ├── loading.gif │ │ ├── logo.png │ │ ├── pop_loading.gif │ │ ├── step.png │ │ ├── tab.png │ │ └── tips_system.png ├── index.php ├── index_sae.php ├── install.lock ├── js │ ├── ajaxForm.js │ ├── jquery.js │ └── validate.js ├── spcmf.sql └── templates │ ├── footer.php │ ├── header.php │ ├── s1.php │ ├── s2.php │ ├── s2_sae.php │ ├── s3.php │ ├── s3_sae.php │ ├── s4.php │ └── s5.php ├── plugins └── Demo │ ├── Controller │ ├── AdminIndexController.class.php │ └── IndexController.class.php │ ├── DemoPlugin.class.php │ ├── Model │ └── PluginDemoModel.class.php │ ├── README.txt │ ├── View │ ├── admin_index.html │ ├── assets │ │ └── images │ │ │ └── favicon.ico │ ├── index.html │ └── widget.html │ └── config.php ├── sae_app_wizard.xml ├── simplewind ├── Core │ ├── Common │ │ └── functions.php │ ├── Conf │ │ ├── convention.php │ │ └── debug.php │ ├── LICENSE.txt │ ├── Lang │ │ ├── en-us.php │ │ ├── pt-br.php │ │ ├── zh-cn.php │ │ └── zh-tw.php │ ├── Library │ │ ├── Behavior │ │ │ ├── AgentCheckBehavior.class.php │ │ │ ├── BorisBehavior.class.php │ │ │ ├── BrowserCheckBehavior.class.php │ │ │ ├── BuildLiteBehavior.class.php │ │ │ ├── CheckActionRouteBehavior.class.php │ │ │ ├── CheckLangBehavior.class.php │ │ │ ├── ChromeShowPageTraceBehavior.class.php │ │ │ ├── ContentReplaceBehavior.class.php │ │ │ ├── CronRunBehavior.class.php │ │ │ ├── FireShowPageTraceBehavior.class.php │ │ │ ├── ParseTemplateBehavior.class.php │ │ │ ├── ReadHtmlCacheBehavior.class.php │ │ │ ├── RobotCheckBehavior.class.php │ │ │ ├── ShowPageTraceBehavior.class.php │ │ │ ├── ShowRuntimeBehavior.class.php │ │ │ ├── TokenBuildBehavior.class.php │ │ │ ├── UpgradeNoticeBehavior.class.php │ │ │ └── WriteHtmlCacheBehavior.class.php │ │ ├── Org │ │ │ ├── Net │ │ │ │ ├── Http.class.php │ │ │ │ └── IpLocation.class.php │ │ │ └── Util │ │ │ │ ├── ArrayList.class.php │ │ │ │ ├── CodeSwitch.class.php │ │ │ │ ├── Date.class.php │ │ │ │ ├── Rbac.class.php │ │ │ │ ├── Stack.class.php │ │ │ │ └── String.class.php │ │ ├── Think │ │ │ ├── App.class.php │ │ │ ├── Auth.class.php │ │ │ ├── Behavior.class.php │ │ │ ├── Build.class.php │ │ │ ├── Cache.class.php │ │ │ ├── Cache │ │ │ │ └── Driver │ │ │ │ │ ├── Apachenote.class.php │ │ │ │ │ ├── Apc.class.php │ │ │ │ │ ├── Db.class.php │ │ │ │ │ ├── Eaccelerator.class.php │ │ │ │ │ ├── File.class.php │ │ │ │ │ ├── Memcache.class.php │ │ │ │ │ ├── Memcached.class.php │ │ │ │ │ ├── Memcachesae.class.php │ │ │ │ │ ├── Redis.class.php │ │ │ │ │ ├── Shmop.class.php │ │ │ │ │ ├── Sqlite.class.php │ │ │ │ │ ├── Wincache.class.php │ │ │ │ │ └── Xcache.class.php │ │ │ ├── Controller.class.php │ │ │ ├── Controller │ │ │ │ ├── HproseController.class.php │ │ │ │ ├── JsonRpcController.class.php │ │ │ │ ├── RestController.class.php │ │ │ │ ├── RpcController.class.php │ │ │ │ └── YarController.class.php │ │ │ ├── Crypt.class.php │ │ │ ├── Crypt │ │ │ │ └── Driver │ │ │ │ │ ├── Base64.class.php │ │ │ │ │ ├── Crypt.class.php │ │ │ │ │ ├── Des.class.php │ │ │ │ │ ├── Think.class.php │ │ │ │ │ └── Xxtea.class.php │ │ │ ├── Db.class.php │ │ │ ├── Db │ │ │ │ ├── Driver.class.php │ │ │ │ ├── Driver │ │ │ │ │ ├── Firebird.class.php │ │ │ │ │ ├── Mongo.class.php │ │ │ │ │ ├── Mysql.class.php │ │ │ │ │ ├── Oracle.class.php │ │ │ │ │ ├── Pgsql.class.php │ │ │ │ │ ├── Sqlite.class.php │ │ │ │ │ └── Sqlsrv.class.php │ │ │ │ └── Lite.class.php │ │ │ ├── Dispatcher.class.php │ │ │ ├── Exception.class.php │ │ │ ├── Hook.class.php │ │ │ ├── Image.class.php │ │ │ ├── Image │ │ │ │ └── Driver │ │ │ │ │ ├── GIF.class.php │ │ │ │ │ ├── Gd.class.php │ │ │ │ │ └── Imagick.class.php │ │ │ ├── Log.class.php │ │ │ ├── Log │ │ │ │ └── Driver │ │ │ │ │ ├── File.class.php │ │ │ │ │ └── Sae.class.php │ │ │ ├── Model.class.php │ │ │ ├── Model │ │ │ │ ├── AdvModel.class.php │ │ │ │ ├── MergeModel.class.php │ │ │ │ ├── MongoModel.class.php │ │ │ │ ├── RelationModel.class.php │ │ │ │ └── ViewModel.class.php │ │ │ ├── Page.class.php │ │ │ ├── Route.class.php │ │ │ ├── Session │ │ │ │ └── Driver │ │ │ │ │ ├── Db.class.php │ │ │ │ │ └── Memcache.class.php │ │ │ ├── Storage.class.php │ │ │ ├── Storage │ │ │ │ └── Driver │ │ │ │ │ ├── File.class.php │ │ │ │ │ └── Sae.class.php │ │ │ ├── Template.class.php │ │ │ ├── Template │ │ │ │ ├── Driver │ │ │ │ │ ├── Ease.class.php │ │ │ │ │ ├── Lite.class.php │ │ │ │ │ ├── Mobile.class.php │ │ │ │ │ ├── Smart.class.php │ │ │ │ │ └── Smarty.class.php │ │ │ │ ├── TagLib.class.php │ │ │ │ └── TagLib │ │ │ │ │ ├── Cx.class.php │ │ │ │ │ └── Html.class.php │ │ │ ├── Think.class.php │ │ │ ├── Upload.class.php │ │ │ ├── Upload │ │ │ │ └── Driver │ │ │ │ │ ├── Bcs.class.php │ │ │ │ │ ├── Bcs │ │ │ │ │ ├── bcs.class.php │ │ │ │ │ ├── mimetypes.class.php │ │ │ │ │ └── requestcore.class.php │ │ │ │ │ ├── Ftp.class.php │ │ │ │ │ ├── Local.class.php │ │ │ │ │ ├── Qiniu.class.php │ │ │ │ │ ├── Qiniu │ │ │ │ │ └── QiniuStorage.class.php │ │ │ │ │ ├── Sae.class.php │ │ │ │ │ └── Upyun.class.php │ │ │ ├── Verify.class.php │ │ │ ├── Verify │ │ │ │ ├── bgs │ │ │ │ │ ├── 1.jpg │ │ │ │ │ ├── 2.jpg │ │ │ │ │ ├── 3.jpg │ │ │ │ │ ├── 4.jpg │ │ │ │ │ ├── 5.jpg │ │ │ │ │ ├── 6.jpg │ │ │ │ │ ├── 7.jpg │ │ │ │ │ └── 8.jpg │ │ │ │ ├── ttfs │ │ │ │ │ ├── 1.ttf │ │ │ │ │ ├── 2.ttf │ │ │ │ │ ├── 3.ttf │ │ │ │ │ ├── 4.ttf │ │ │ │ │ ├── 5.ttf │ │ │ │ │ └── 6.ttf │ │ │ │ └── zhttfs │ │ │ │ │ └── 1.ttf │ │ │ └── View.class.php │ │ └── Vendor │ │ │ └── README.txt │ ├── Mode │ │ ├── Api │ │ │ ├── App.class.php │ │ │ ├── Controller.class.php │ │ │ ├── Dispatcher.class.php │ │ │ └── functions.php │ │ ├── Lite │ │ │ ├── App.class.php │ │ │ ├── Controller.class.php │ │ │ ├── Dispatcher.class.php │ │ │ ├── Model.class.php │ │ │ ├── View.class.php │ │ │ ├── convention.php │ │ │ └── functions.php │ │ ├── Sae │ │ │ └── convention.php │ │ ├── api.php │ │ ├── common.php │ │ ├── lite.php │ │ └── sae.php │ ├── README.txt │ ├── ThinkPHP.php │ ├── Tpl │ │ ├── dispatch_jump.tpl │ │ ├── page_trace.tpl │ │ └── think_exception.tpl │ └── logo.png └── Lib │ ├── Extend │ ├── ThinkSDK │ │ ├── ThinkOauth.class.php │ │ └── sdk │ │ │ ├── BaiduSDK.class.php │ │ │ ├── DiandianSDK.class.php │ │ │ ├── DoubanSDK.class.php │ │ │ ├── GithubSDK.class.php │ │ │ ├── GoogleSDK.class.php │ │ │ ├── KaixinSDK.class.php │ │ │ ├── MsnSDK.class.php │ │ │ ├── QqSDK.class.php │ │ │ ├── RenrenSDK.class.php │ │ │ ├── SinaSDK.class.php │ │ │ ├── SohuSDK.class.php │ │ │ ├── T163SDK.class.php │ │ │ ├── TaobaoSDK.class.php │ │ │ ├── TencentSDK.class.php │ │ │ └── X360SDK.class.php │ └── phpQuery │ │ ├── QueryPath │ │ ├── CssEventHandler.php │ │ ├── CssParser.php │ │ ├── Extension │ │ │ ├── QPDB.php │ │ │ ├── QPList.php │ │ │ ├── QPTPL.php │ │ │ ├── QPXML.php │ │ │ └── QPXSL.php │ │ ├── QueryPath.php │ │ └── QueryPathExtension.php │ │ └── phpQuery.php │ └── Util │ ├── CloudUploadFile.class.php │ ├── Curl.class.php │ ├── Dir.class.php │ ├── Hook.class.php │ ├── Input.class.php │ ├── Page.class.php │ ├── PathTree.class.php │ ├── Pclzip.class.php │ ├── Tree.class.php │ ├── UploadFile.class.php │ ├── class.phpmailer.php │ ├── class.pop3.php │ ├── class.smtp.php │ └── phpzip.php ├── statics ├── exception.html ├── images │ ├── headicon.png │ └── icon │ │ ├── logo-18.png │ │ └── upload-pic.png ├── js │ ├── ajaxForm.js │ ├── ajaxfileupload.js │ ├── artDialog │ │ ├── artDialog.js │ │ ├── iframeTools.js │ │ └── skins │ │ │ ├── blue.css │ │ │ ├── blue │ │ │ ├── bg.png │ │ │ ├── bg2.png │ │ │ ├── bg_css3.png │ │ │ ├── bg_css3_2.png │ │ │ └── ie6 │ │ │ │ ├── close.hover.png │ │ │ │ ├── close.png │ │ │ │ ├── e.png │ │ │ │ ├── n.png │ │ │ │ ├── ne.png │ │ │ │ ├── nw.png │ │ │ │ ├── s.png │ │ │ │ ├── se.png │ │ │ │ ├── sw.png │ │ │ │ └── w.png │ │ │ ├── default.css │ │ │ └── icons │ │ │ ├── error.png │ │ │ ├── face-sad.png │ │ │ ├── face-smile.png │ │ │ ├── loading.gif │ │ │ ├── question.png │ │ │ ├── succeed.png │ │ │ └── warning.png │ ├── colorPicker │ │ ├── colorPicker.js │ │ ├── images │ │ │ ├── color_panel.png │ │ │ └── color_picker.png │ │ └── style.css │ ├── common.js │ ├── content_addtop.js │ ├── cookie.js │ ├── crop │ │ └── images │ │ │ ├── Main.swf │ │ │ └── playerProductInstall.swf │ ├── datePicker │ │ ├── bg.png │ │ ├── datePicker.js │ │ └── style.css │ ├── draggable.js │ ├── edit_area │ │ ├── edit_area_full.js │ │ ├── images │ │ │ ├── autocompletion.gif │ │ │ ├── close.gif │ │ │ ├── fullscreen.gif │ │ │ ├── go_to_line.gif │ │ │ ├── help.gif │ │ │ ├── highlight.gif │ │ │ ├── load.gif │ │ │ ├── move.gif │ │ │ ├── newdocument.gif │ │ │ ├── opacity.png │ │ │ ├── processing.gif │ │ │ ├── redo.gif │ │ │ ├── reset_highlight.gif │ │ │ ├── save.gif │ │ │ ├── search.gif │ │ │ ├── smooth_selection.gif │ │ │ ├── spacer.gif │ │ │ ├── statusbar_resize.gif │ │ │ ├── undo.gif │ │ │ └── word_wrap.gif │ │ ├── langs │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── charmap │ │ │ │ ├── charmap.js │ │ │ │ ├── css │ │ │ │ │ └── charmap.css │ │ │ │ ├── images │ │ │ │ │ └── charmap.gif │ │ │ │ ├── jscripts │ │ │ │ │ └── map.js │ │ │ │ ├── langs │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dk.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ └── zh.js │ │ │ │ └── popup.html │ │ │ └── test │ │ │ │ ├── css │ │ │ │ └── test.css │ │ │ │ ├── images │ │ │ │ └── test.gif │ │ │ │ ├── langs │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── de.js │ │ │ │ ├── dk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── mk.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ └── zh.js │ │ │ │ ├── test.js │ │ │ │ └── test2.js │ │ └── reg_syntax │ │ │ ├── css.js │ │ │ ├── html.js │ │ │ ├── js.js │ │ │ ├── php.js │ │ │ └── sql.js │ ├── frontend.js │ ├── imgready.js │ ├── jcrop │ │ ├── css │ │ │ ├── Jcrop.gif │ │ │ └── jquery.Jcrop.min.css │ │ └── js │ │ │ └── jcrop.js │ ├── jquery.js │ ├── jquery142.js │ ├── lazyload.js │ ├── noty │ │ └── noty.js │ ├── swfobject.js │ ├── swfupload │ │ ├── handlers.js │ │ ├── images │ │ │ ├── cross.png │ │ │ ├── off.png │ │ │ └── swfBnt.png │ │ ├── swfupload.js │ │ ├── swfupload.swf │ │ └── swfuploadbutton.swf │ ├── tabs │ │ └── tabs.js │ ├── treeTable │ │ ├── images │ │ │ ├── toggle-collapse-dark.png │ │ │ └── toggle-expand-dark.png │ │ ├── treeTable.css │ │ └── treeTable.js │ ├── treeview.js │ ├── ueditor │ │ ├── config.json │ │ ├── dialogs │ │ │ ├── anchor │ │ │ │ └── anchor.html │ │ │ ├── attachment │ │ │ │ ├── attachment.css │ │ │ │ ├── attachment.html │ │ │ │ ├── attachment.js │ │ │ │ ├── fileTypeImages │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ ├── icon_default.png │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ └── icon_xls.gif │ │ │ │ └── images │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ ├── alignicon.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── background │ │ │ │ ├── background.css │ │ │ │ ├── background.html │ │ │ │ ├── background.js │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ └── success.png │ │ │ ├── charts │ │ │ │ ├── chart.config.js │ │ │ │ ├── charts.css │ │ │ │ ├── charts.html │ │ │ │ ├── charts.js │ │ │ │ └── images │ │ │ │ │ ├── charts0.png │ │ │ │ │ ├── charts1.png │ │ │ │ │ ├── charts2.png │ │ │ │ │ ├── charts3.png │ │ │ │ │ ├── charts4.png │ │ │ │ │ └── charts5.png │ │ │ ├── emotion │ │ │ │ ├── emotion.css │ │ │ │ ├── emotion.html │ │ │ │ ├── emotion.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── bface.gif │ │ │ │ │ ├── cface.gif │ │ │ │ │ ├── fface.gif │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── tface.gif │ │ │ │ │ ├── wface.gif │ │ │ │ │ └── yface.gif │ │ │ ├── gmap │ │ │ │ └── gmap.html │ │ │ ├── help │ │ │ │ ├── help.css │ │ │ │ ├── help.html │ │ │ │ └── help.js │ │ │ ├── image │ │ │ │ ├── image.css │ │ │ │ ├── image.html │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── insertframe │ │ │ │ └── insertframe.html │ │ │ ├── internal.js │ │ │ ├── link │ │ │ │ └── link.html │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── show.html │ │ │ ├── music │ │ │ │ ├── music.css │ │ │ │ ├── music.html │ │ │ │ └── music.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scrawl │ │ │ │ ├── images │ │ │ │ │ ├── addimg.png │ │ │ │ │ ├── brush.png │ │ │ │ │ ├── delimg.png │ │ │ │ │ ├── delimgH.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── emptyH.png │ │ │ │ │ ├── eraser.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── redoH.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── scaleH.png │ │ │ │ │ ├── size.png │ │ │ │ │ ├── undo.png │ │ │ │ │ └── undoH.png │ │ │ │ ├── scrawl.css │ │ │ │ ├── scrawl.html │ │ │ │ └── scrawl.js │ │ │ ├── searchreplace │ │ │ │ ├── searchreplace.html │ │ │ │ └── searchreplace.js │ │ │ ├── snapscreen │ │ │ │ └── snapscreen.html │ │ │ ├── spechars │ │ │ │ ├── spechars.html │ │ │ │ └── spechars.js │ │ │ ├── table │ │ │ │ ├── dragicon.png │ │ │ │ ├── edittable.css │ │ │ │ ├── edittable.html │ │ │ │ ├── edittable.js │ │ │ │ ├── edittd.html │ │ │ │ └── edittip.html │ │ │ ├── template │ │ │ │ ├── config.js │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── pre0.png │ │ │ │ │ ├── pre1.png │ │ │ │ │ ├── pre2.png │ │ │ │ │ ├── pre3.png │ │ │ │ │ └── pre4.png │ │ │ │ ├── template.css │ │ │ │ ├── template.html │ │ │ │ └── template.js │ │ │ ├── video │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── right_focus.jpg │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ │ ├── video.css │ │ │ │ ├── video.html │ │ │ │ └── video.js │ │ │ └── wordimage │ │ │ │ ├── fClipboard_ueditor.swf │ │ │ │ ├── imageUploader.swf │ │ │ │ ├── tangram.js │ │ │ │ ├── wordimage.html │ │ │ │ └── wordimage.js │ │ ├── index.html │ │ ├── lang │ │ │ └── zh-cn │ │ │ │ ├── images │ │ │ │ ├── copy.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ └── upload.png │ │ │ │ └── zh-cn.js │ │ ├── themes │ │ │ ├── default │ │ │ │ ├── css │ │ │ │ │ ├── ueditor.css │ │ │ │ │ └── ueditor.min.css │ │ │ │ ├── dialogbase.css │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ ├── charts.png │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ ├── filescan.png │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── loaderror.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── lock.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── videologo.gif │ │ │ │ │ ├── word.gif │ │ │ │ │ └── wordpaste.png │ │ │ └── iframe.css │ │ ├── third-party │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.js │ │ │ │ └── shCoreDefault.css │ │ │ ├── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── highcharts │ │ │ │ ├── adapters │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highcharts-more.src.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── highcharts.src.js │ │ │ │ ├── modules │ │ │ │ │ ├── annotations.js │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.src.js │ │ │ │ │ ├── drilldown.js │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ ├── exporting.js │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ ├── funnel.js │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── map.src.js │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ └── themes │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ ├── dark-green.js │ │ │ │ │ ├── gray.js │ │ │ │ │ ├── grid.js │ │ │ │ │ └── skies.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── video-js │ │ │ │ ├── font │ │ │ │ │ ├── vjs.eot │ │ │ │ │ ├── vjs.svg │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ └── vjs.woff │ │ │ │ ├── video-js.css │ │ │ │ ├── video-js.min.css │ │ │ │ ├── video-js.swf │ │ │ │ ├── video.dev.js │ │ │ │ └── video.js │ │ │ ├── webuploader │ │ │ │ ├── Uploader.swf │ │ │ │ ├── webuploader.css │ │ │ │ ├── webuploader.custom.js │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ ├── webuploader.html5only.js │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ ├── webuploader.js │ │ │ │ ├── webuploader.min.js │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ └── webuploader.withoutimage.min.js │ │ │ └── zeroclipboard │ │ │ │ ├── ZeroClipboard.js │ │ │ │ ├── ZeroClipboard.min.js │ │ │ │ └── ZeroClipboard.swf │ │ ├── ueditor.all.min.js │ │ ├── ueditor.config.js │ │ ├── ueditor.frontend.config.js │ │ └── ueditor.parse.min.js │ ├── validate.js │ ├── wind.js │ └── xd.js ├── mui │ ├── css │ │ └── mui.min.css │ ├── fonts │ │ └── mui.ttf │ └── js │ │ ├── mui.min.js │ │ └── mui.tpl.min.js └── simpleboot │ ├── bootstrap │ ├── css │ │ └── bootstrap-responsive.min.css │ └── js │ │ └── bootstrap.min.js │ ├── css │ ├── simplebootadmin.css │ └── simplebootadminindex-ie.css │ ├── font-awesome │ └── 4.2.0 │ │ ├── css │ │ ├── font-awesome-ie7.min.css │ │ └── font-awesome.min.css │ │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ └── themes │ ├── bluesky │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── loading.gif │ ├── loadingbg.png │ ├── simplebootadminindex.min.css │ └── theme.min.css │ └── flat │ ├── img │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png │ ├── loading.gif │ ├── loadingbg.png │ ├── simplebootadminindex.min.css │ └── theme.min.css ├── tpl ├── .htaccess └── simplebootx │ ├── Comment │ ├── comment.html │ └── index.html │ ├── Liudu │ ├── Index │ │ └── index.html │ └── images │ │ └── exemp.png │ ├── Portal │ ├── article.html │ ├── contact.html │ ├── index.html │ ├── list.html │ ├── list_masonry.html │ ├── page.html │ └── search.html │ ├── Public │ ├── css │ │ ├── slippry │ │ │ ├── assets │ │ │ │ └── img │ │ │ │ │ ├── arrows.png │ │ │ │ │ ├── arrows.svg │ │ │ │ │ └── sy-loader.gif │ │ │ └── slippry.css │ │ └── style.css │ ├── footer.html │ ├── head.html │ ├── images │ │ ├── default_tupian1.png │ │ ├── default_tupian4.png │ │ ├── demo │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── 3.jpg │ │ ├── favicon.ico │ │ ├── headicon.png │ │ ├── headicon_128.png │ │ ├── headicon_30.png │ │ ├── headicon_40.png │ │ ├── headicon_50.png │ │ ├── logo.png │ │ └── paymethod │ │ │ └── paypal.png │ ├── js │ │ ├── imagesloaded.pkgd.min.js │ │ ├── masonry.pkgd.min.js │ │ ├── qrcode.min.js │ │ ├── slippry.min.js │ │ └── slippry.min.map │ ├── nav.html │ ├── scripts.html │ ├── simpleboot │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ └── bootstrap-responsive.min.css │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ ├── font-awesome │ │ │ └── 4.2.0 │ │ │ │ ├── css │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ └── font-awesome.min.css │ │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ └── themes │ │ │ └── cmf │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ ├── loading.gif │ │ │ ├── loadingbg.png │ │ │ ├── simplebootadminindex.min.css │ │ │ └── theme.min.css │ └── usernav.html │ ├── Server │ ├── Index │ │ ├── index.html │ │ └── pay.html │ ├── Order │ │ ├── detail.html │ │ └── index.html │ └── images │ │ └── paymethod │ │ ├── aliguarantee.png │ │ └── paypal.png │ ├── User │ ├── Profile │ │ ├── avatar.html │ │ ├── bang.html │ │ ├── edit.html │ │ └── password.html │ ├── active.html │ ├── center.html │ ├── disable.html │ ├── favorite.html │ ├── forgot_password.html │ ├── index.html │ ├── login.html │ ├── password_reset.html │ └── register.html │ ├── config.html │ ├── error.html │ ├── function.html │ ├── hooks.html │ ├── jump.html │ └── success.html └── tpl_admin ├── .htaccess └── simpleboot ├── Admin ├── Ad │ ├── add.html │ ├── edit.html │ └── index.html ├── Backup │ ├── index.html │ └── restore.html ├── Index │ └── index.html ├── Link │ ├── add.html │ ├── edit.html │ └── index.html ├── Mailer │ ├── active.html │ └── index.html ├── Main │ └── index.html ├── Menu │ ├── add.html │ ├── dev_import_menu.html │ ├── edit.html │ ├── export_menu.html │ ├── getactions.html │ ├── import_menu.html │ ├── index.html │ └── lists.html ├── Nav │ ├── add.html │ ├── edit.html │ └── index.html ├── Navcat │ ├── add.html │ ├── edit.html │ └── index.html ├── Plugin │ ├── index.html │ └── setting.html ├── Rbac │ ├── authorize.html │ ├── index.html │ ├── member.html │ ├── roleadd.html │ └── roleedit.html ├── Route │ ├── add.html │ ├── edit.html │ └── index.html ├── Setting │ ├── clearcache.html │ ├── password.html │ └── site.html ├── Slide │ ├── add.html │ ├── edit.html │ └── index.html ├── Slidecat │ ├── add.html │ ├── edit.html │ └── index.html ├── Storage │ └── index.html ├── User │ ├── add.html │ ├── edit.html │ ├── index.html │ └── userinfo.html ├── boot │ └── index.html ├── error.html ├── header.html ├── login.html └── success.html ├── Api ├── Guestbookadmin │ └── index.html ├── Locationadmin │ ├── city.html │ ├── district.html │ └── province.html ├── Mapadmin │ └── index.html └── Oauthadmin │ ├── index.html │ └── setting.html ├── Asset └── swfupload.html ├── Comment └── index.html ├── Portal ├── AdminPage │ ├── add.html │ ├── edit.html │ ├── index.html │ └── recyclebin.html ├── AdminPost │ ├── add.html │ ├── edit.html │ ├── index.html │ ├── move.html │ └── recyclebin.html └── AdminTerm │ ├── add.html │ ├── edit.html │ ├── index.html │ └── show.html ├── Server ├── Indexadmin │ ├── add.html │ └── index.html ├── index.html └── js │ └── admin.js ├── User ├── Oauthadmin │ └── index.html └── index.html └── assets ├── css └── admin_login.css ├── images ├── btn.png ├── favicon.ico ├── loading.gif ├── logo.png ├── tv-collapsable.gif ├── tv-expandable.gif ├── upload_del.png └── upload_pic.jpg └── js └── index.js /.htaccess: -------------------------------------------------------------------------------- 1 | 2 | RewriteEngine on 3 | RewriteCond %{REQUEST_FILENAME} !-d 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 6 | 7 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | goout 4 | 5 | 6 | 7 | 8 | 9 | com.aptana.editor.php.aptanaPhpBuilder 10 | 11 | 12 | 13 | 14 | com.aptana.ide.core.unifiedBuilder 15 | 16 | 17 | 18 | 19 | 20 | com.aptana.projects.webnature 21 | com.aptana.editor.php.phpNature 22 | 23 | 24 | -------------------------------------------------------------------------------- /Nginx.conf: -------------------------------------------------------------------------------- 1 | location / { // …..省略部分代码 2 | if (!-e $request_filename) { 3 | rewrite ^(.*)$ /index.php?s=$1 last; 4 | break; 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## README 2 | GoOut是一款基于ThinkCMF开发的中文内容管理框架。 3 | + 4 | GoOut配合GoOut-Shadowsocks-Manyuser后台代理服务器可以进行在线24小时自动支付,自动发货的代理销售平台。 5 | + 6 | 稳定,高效,及时。 7 | + 8 | 官网:http://www.goout.wang 9 | 10 | ## 使用说明 11 | + 12 | 本文件包,为开发版本,下载后需要自己配置数据文件 13 | 14 | # ~/data/conf/db.php 15 | 16 | 'mysql', 27 | + 28 | 'DB_HOST' => '数据库地址', 29 | + 30 | 'DB_NAME' => '数据库名', 31 | + 32 | 'DB_USER' => '用户名', 33 | + 34 | 'DB_PWD' => '密码', 35 | + 36 | 'DB_PORT' => '3306', 37 | + 38 | 'DB_PREFIX' => 'go_', 39 | + 40 | //密钥 41 | + 42 | "AUTHCODE" => 'pas@#D', 43 | + 44 | //cookies 45 | + 46 | "COOKIE_PREFIX" => 'GoOut_', 47 | + 48 | ); 49 | + 50 | ?> 51 | 52 | +#数据库文件 53 | + 54 | +# ~/goout.sql 55 | + 56 | +默认用户名 admin 57 | 58 | +密码:1234 59 | 60 | 61 | ## GoOut 免责声明 62 | -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/uc_client/config.inc.php: -------------------------------------------------------------------------------- 1 | appcontrol(); 16 | } 17 | 18 | function appcontrol() { 19 | parent::__construct(); 20 | $this->load('app'); 21 | } 22 | 23 | function onls() { 24 | $this->init_input(); 25 | $applist = $_ENV['app']->get_apps('appid, type, name, url, tagtemplates, viewprourl, synlogin'); 26 | $applist2 = array(); 27 | foreach($applist as $key => $app) { 28 | $app['tagtemplates'] = $this->unserialize($app['tagtemplates']); 29 | $applist2[$app['appid']] = $app; 30 | } 31 | return $applist2; 32 | } 33 | 34 | function onadd() { 35 | } 36 | 37 | function onucinfo() { 38 | } 39 | 40 | function _random($length, $numeric = 0) { 41 | } 42 | 43 | function _generate_key() { 44 | } 45 | 46 | function _format_notedata($notedata) { 47 | } 48 | } 49 | 50 | ?> -------------------------------------------------------------------------------- /api/uc_client/control/cache.php: -------------------------------------------------------------------------------- 1 | cachecontrol(); 16 | } 17 | 18 | function cachecontrol() { 19 | parent::__construct(); 20 | } 21 | 22 | function onupdate($arr) { 23 | $this->load("cache"); 24 | $_ENV['cache']->updatedata(); 25 | } 26 | 27 | } 28 | 29 | ?> -------------------------------------------------------------------------------- /api/uc_client/control/domain.php: -------------------------------------------------------------------------------- 1 | domaincontrol(); 16 | } 17 | 18 | function domaincontrol() { 19 | parent::__construct(); 20 | $this->init_input(); 21 | $this->load('domain'); 22 | } 23 | 24 | function onls() { 25 | return $_ENV['domain']->get_list(1, 9999, 9999); 26 | } 27 | } 28 | 29 | ?> -------------------------------------------------------------------------------- /api/uc_client/control/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/uc_client/control/mail.php: -------------------------------------------------------------------------------- 1 | mailcontrol(); 16 | } 17 | 18 | function mailcontrol() { 19 | parent::__construct(); 20 | $this->init_input(); 21 | } 22 | 23 | function onadd() { 24 | $this->load('mail'); 25 | $mail = array(); 26 | $mail['appid'] = UC_APPID; 27 | $mail['uids'] = explode(',', $this->input('uids')); 28 | $mail['emails'] = explode(',', $this->input('emails')); 29 | $mail['subject'] = $this->input('subject'); 30 | $mail['message'] = $this->input('message'); 31 | $mail['charset'] = $this->input('charset'); 32 | $mail['htmlon'] = intval($this->input('htmlon')); 33 | $mail['level'] = abs(intval($this->input('level'))); 34 | $mail['frommail'] = $this->input('frommail'); 35 | $mail['dateline'] = $this->time; 36 | return $_ENV['mail']->add($mail); 37 | } 38 | 39 | } 40 | 41 | ?> -------------------------------------------------------------------------------- /api/uc_client/control/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/api/uc_client/control/user.php -------------------------------------------------------------------------------- /api/uc_client/data/cache/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/api/uc_client/data/cache/index.htm -------------------------------------------------------------------------------- /api/uc_client/data/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/api/uc_client/data/index.htm -------------------------------------------------------------------------------- /api/uc_client/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/uc_client/lib/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/uc_client/model/app.php: -------------------------------------------------------------------------------- 1 | appmodel($base); 19 | } 20 | 21 | function appmodel(&$base) { 22 | $this->base = $base; 23 | $this->db = $base->db; 24 | } 25 | 26 | function get_apps($col = '*', $where = '') { 27 | $arr = $this->db->fetch_all("SELECT $col FROM ".UC_DBTABLEPRE."applications".($where ? ' WHERE '.$where : ''), 'appid'); 28 | foreach($arr as $k => $v) { 29 | isset($v['extra']) && !empty($v['extra']) && $v['extra'] = unserialize($v['extra']); 30 | unset($v['authkey']); 31 | $arr[$k] = $v; 32 | } 33 | return $arr; 34 | } 35 | } 36 | ?> -------------------------------------------------------------------------------- /api/uc_client/model/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/uc_client/model/pm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/api/uc_client/model/pm.php -------------------------------------------------------------------------------- /application/Admin/Common/function.php: -------------------------------------------------------------------------------- 1 | initMenu(); 14 | } 15 | //后台框架首页 16 | public function index() { 17 | $this->assign("SUBMENU_CONFIG", json_encode(D("Common/Menu")->menu_json())); 18 | $this->display(); 19 | 20 | } 21 | 22 | 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /application/Admin/Controller/MainController.class.php: -------------------------------------------------------------------------------- 1 | PHP_OS, 15 | '运行环境' => $_SERVER["SERVER_SOFTWARE"], 16 | 'PHP运行方式' => php_sapi_name(), 17 | 'MYSQL版本' =>$mysql, 18 | '程序版本' => SIMPLEWIND_CMF_VERSION . "    [访问官网]", 19 | '上传附件限制' => ini_get('upload_max_filesize'), 20 | '执行时间限制' => ini_get('max_execution_time') . "秒", 21 | '剩余空间' => round((@disk_free_space(".") / (1024 * 1024)), 2) . 'M', 22 | ); 23 | $this->assign('server_info', $info); 24 | $this->display(); 25 | } 26 | } -------------------------------------------------------------------------------- /application/Admin/Controller/StorageController.class.php: -------------------------------------------------------------------------------- 1 | assign(sp_get_cmf_settings('storage')); 11 | $this->display(); 12 | } 13 | 14 | function setting_post(){ 15 | if(IS_POST){ 16 | 17 | $support_storages=array("Local","Qiniu"); 18 | $type=$_POST['type']; 19 | if(in_array($type, $support_storages)){ 20 | $result=sp_set_cmf_setting(array('storage'=>$_POST)); 21 | if($result!==false){ 22 | sp_set_dynamic_config(array("FILE_UPLOAD_TYPE"=>$type,"UPLOAD_TYPE_CONFIG"=>$_POST[$type])); 23 | $this->success("设置成功!"); 24 | }else{ 25 | $this->error("设置出错!"); 26 | } 27 | }else{ 28 | $this->error("文件存储类型不存在!"); 29 | } 30 | 31 | } 32 | } 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | } -------------------------------------------------------------------------------- /application/Admin/Lang/zh-cn.php: -------------------------------------------------------------------------------- 1 | "登录成功!", 5 | 'PASSWORD_NOT_RIGHT' =>"密码错误!", 6 | 'PASSWORD_REQUIRED' =>"密码不能为空!", 7 | 'CAPTCHA_REQUIRED' =>"验证码不能为空!", 8 | 'CAPTCHA_NOT_RIGHT' =>"验证码错误!", 9 | 'USERNAME_NOT_EXIST' =>"用户名不存在!", 10 | 'USERNAME_OR_EMAIL_EMPTY' =>"用户名或邮箱不能为空!", 11 | 'USE_DISABLED' =>"此用户已被禁用!", 12 | ); -------------------------------------------------------------------------------- /application/Api/Conf/config.php: -------------------------------------------------------------------------------- 1 | guestbook_model=D("Common/Guestbook"); 11 | } 12 | 13 | function index(){ 14 | 15 | } 16 | 17 | function addmsg(){ 18 | if(!sp_check_verify_code()){ 19 | $this->error("验证码错误!"); 20 | } 21 | 22 | if (IS_POST) { 23 | if ($this->guestbook_model->create()) { 24 | $result=$this->guestbook_model->add(); 25 | if ($result!==false) { 26 | $this->success("留言成功!"); 27 | } else { 28 | $this->error("留言失败!"); 29 | } 30 | } else { 31 | $this->error($this->guestbook_model->getError()); 32 | } 33 | } 34 | 35 | } 36 | } -------------------------------------------------------------------------------- /application/Api/Controller/GuestbookadminController.class.php: -------------------------------------------------------------------------------- 1 | guestbook_model=D("Common/Guestbook"); 11 | } 12 | 13 | function index(){ 14 | $count=$this->guestbook_model->where(array("status"=>1))->count(); 15 | $page = $this->page($count, 20); 16 | $guestmsgs=$this->guestbook_model->where(array("status"=>1))->order(array("createtime"=>"DESC"))->limit($page->firstRow . ',' . $page->listRows)->select(); 17 | $this->assign("Page", $page->show('Admin')); 18 | $this->assign("guestmsgs",$guestmsgs); 19 | $this->display(); 20 | } 21 | 22 | function delete(){ 23 | $id=intval(I("get.id")); 24 | $result=$this->guestbook_model->where(array("id"=>$id))->delete(); 25 | if($result!==false){ 26 | $this->success("删除成功!", U("Guestbookadmin/index")); 27 | }else{ 28 | $this->error('删除失败!'); 29 | } 30 | } 31 | } -------------------------------------------------------------------------------- /application/Api/Controller/MapController.class.php: -------------------------------------------------------------------------------- 1 | assign("lng",$lng); 14 | $this->assign("lat",$lat); 15 | $this->display(); 16 | } 17 | 18 | } -------------------------------------------------------------------------------- /application/Asset/Conf/config.php: -------------------------------------------------------------------------------- 1 | C("SP_ADMIN_TMPL_PATH").C("SP_ADMIN_DEFAULT_THEME").'/Admin/error.html', // 默认错误跳转对应的模板文件 4 | //'TMPL_ACTION_SUCCESS' => C("SP_ADMIN_TMPL_PATH").C("SP_ADMIN_DEFAULT_THEME").'/Admin/success.html', // 默认成功跳转对应的模板文件 5 | ); 6 | 7 | -------------------------------------------------------------------------------- /application/Asset/Controller/DownloadController.class.php: -------------------------------------------------------------------------------- 1 | where(array('unique'=>$unique_id))->find(); 11 | //print_r($line); die; 12 | $rel_name = $line['filename']; 13 | 14 | if(!$rel_name){ 15 | $this->error('未知错误!'); 16 | } 17 | $file = $line['filepath'].$line['filename']; 18 | //用以解决中文不能显示出来的问题 19 | $file=iconv("utf-8","gb2312",$file); 20 | //首先要判断给定的文件存在与否 21 | if(!file_exists($file)){ 22 | $this->error("没有该文件文件"); 23 | } 24 | $fp=fopen($file,"r"); 25 | $file_size=filesize($file); 26 | //下载文件需要用到的头 27 | Header("Content-type: application/octet-stream"); 28 | Header("Accept-Ranges: bytes"); 29 | Header("Accept-Length:".$file_size); 30 | Header("Content-Disposition: attachment; filename=".$rel_name); 31 | $buffer=1024; 32 | $file_count=0; 33 | //向浏览器返回数据 34 | while(!feof($fp) && $file_count<$file_size){ 35 | $file_con=fread($fp,$buffer); 36 | $file_count+=$buffer; 37 | echo $file_con; 38 | } 39 | //写入数据库 40 | $asset->where("_unique='$unique_id'")->setInc('download_times',1); 41 | fclose($fp); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /application/Common/Behavior/TmplStripSpaceBehavior.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +--------------------------------------------------------------------- 11 | namespace Common\Behavior; 12 | use Think\Behavior; 13 | 14 | // 初始化钩子信息 15 | class TmplStripSpaceBehavior extends Behavior { 16 | 17 | // 行为扩展的执行入口必须是run 18 | public function run(&$tmplContent){ 19 | if(C('TMPL_STRIP_SPACE')) { 20 | /* 去除html空格与换行 */ 21 | $find = array('~>\s+<~','~>(\s+\n|\r)~'); 22 | $replace = array('> <','>'); 23 | $tmplContent = preg_replace($find, $replace, $tmplContent); 24 | } 25 | 26 | } 27 | } -------------------------------------------------------------------------------- /application/Common/Common/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/Common/Conf/alias.php: -------------------------------------------------------------------------------- 1 | SPAPP_PATH.'Lib/Util/class.phpmailer.php', 9 | //Pclzip 10 | 'Pclzip' => SPAPP_PATH.'Lib/Util/Pclzip.class.php', 11 | //UploadFile 12 | "UploadFile" => SPAPP_PATH.'Lib/Util/UploadFile.class.php', 13 | "CloudUploadFile" => SPAPP_PATH.'Lib/Util/CloudUploadFile.class.php', 14 | //文件操作类 Dir 15 | "Dir" => SPAPP_PATH.'Lib/Util/Dir.class.php', 16 | //树 17 | "Tree" => SPAPP_PATH.'Lib/Util/Tree.class.php', 18 | //树 19 | "PathTree" => SPAPP_PATH.'Lib/Util/PathTree.class.php', 20 | "Input" => SPAPP_PATH.'Lib/Util/Input.class.php', 21 | //Url地址 22 | "Url" => SPAPP_PATH.'Lib/Util/Url.class.php', 23 | 24 | "Curl" => SPAPP_PATH.'Lib/Util/Curl.class.php', 25 | 26 | //评论处理类 27 | "Comment" => APP_PATH.C("APP_GROUP_PATH")."/Comments/Util/Comment.class.php", 28 | 29 | //分页类 30 | "Page" => SPAPP_PATH.'Lib/Util/Page.class.php', 31 | "phpQuery"=>SPAPP_PATH.'Lib/Extend/phpQuery/phpQuery.php', 32 | "ThinkOauth"=>SPAPP_PATH.'Lib/Extend/ThinkSDK/ThinkOauth.class.php', 33 | 34 | //标签库 35 | //"TagLibSpadmin"=>SPAPP_PATH.'Lib/Taglib/TagLibSpadmin.class.php', 36 | //Hook 37 | "Hook"=>SPAPP_PATH.'Lib/Util/Hook.class.php', 38 | //PHPZip 39 | "phpzip"=>SPAPP_PATH.'Lib/Util/phpzip.php', 40 | "Checkcode"=>SPAPP_PATH.'Lib/Util/Checkcode.class.php', 41 | ); 42 | -------------------------------------------------------------------------------- /application/Common/Conf/config_sae.php: -------------------------------------------------------------------------------- 1 | init(); 6 | $ret = $kv->get('THINKCMF_DYNAMIC_CONFIG'); 7 | $runtime_config= $ret ? unserialize($ret) : array(); 8 | $_msaestorage=new SaeStorage(); 9 | 10 | $sae = array( 11 | 'DB_TYPE' => 'mysql', 12 | 'DB_DEPLOY_TYPE'=> 1, 13 | 'DB_RW_SEPARATE'=>true, 14 | 'DB_HOST' => SAE_MYSQL_HOST_M, 15 | 'DB_NAME' => SAE_MYSQL_DB, 16 | 'DB_USER' => SAE_MYSQL_USER, 17 | 'DB_PWD' => SAE_MYSQL_PASS, 18 | 'DB_PORT' => SAE_MYSQL_PORT, 19 | 'DB_PREFIX' => 'sp_', 20 | //cookies 21 | "COOKIE_PREFIX" => 'U49dZ1_', 22 | 'FILE_UPLOAD_TYPE' => 'Sae', // 文件上传方式 23 | 24 | 'TMPL_PARSE_STRING'=>array( 25 | '__UPLOAD__'=>$_msaestorage->getUrl('data','upload')."/", 26 | ) 27 | ); 28 | //print_r($runtime_config); die; 29 | return array_merge($sae, $runtime_config); 30 | -------------------------------------------------------------------------------- /application/Common/Conf/debug.php: -------------------------------------------------------------------------------- 1 | false, // 自动侦测模板主题 4 | 'SHOW_PAGE_TRACE' => true, 5 | 'SHOW_RUN_TIME' => false, 6 | 'TMPL_STRIP_SPACE' => false, 7 | 'HTML_CACHE_ON' => false, // 开启静态缓存 8 | ); -------------------------------------------------------------------------------- /application/Common/Conf/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/Common/Conf/tags.php: -------------------------------------------------------------------------------- 1 | array('Common\Behavior\InitHookBehavior'), 5 | 'app_begin' => array('Behavior\CheckLangBehavior'), 6 | 'view_filter' => array('Common\Behavior\TmplStripSpaceBehavior'), 7 | 8 | ); -------------------------------------------------------------------------------- /application/Common/Controller/MemberbaseController.class.php: -------------------------------------------------------------------------------- 1 | check_login(); 10 | $this->check_user(); 11 | } 12 | 13 | } -------------------------------------------------------------------------------- /application/Common/Lang/zh-cn.php: -------------------------------------------------------------------------------- 1 | "登录成功!", 5 | 'PASSWORD_NOT_RIGHT' =>"密码错误!", 6 | 'PASSWORD_REQUIRED' =>"密码不能为空!", 7 | 'CAPTCHA_REQUIRED' =>"验证码不能为空!", 8 | 'CAPTCHA_NOT_RIGHT' =>"验证码错误!", 9 | 'USERNAME_NOT_EXIST' =>"用户名不存在!", 10 | 'USERNAME_OR_EMAIL_EMPTY' =>"用户名或邮箱不能为空!", 11 | 12 | 13 | ); -------------------------------------------------------------------------------- /application/Common/Model/AdModel.class.php: -------------------------------------------------------------------------------- 1 | error = '插件目录不可读'; 18 | return false; 19 | } 20 | $plugins = array(); 21 | $where['name'] = array('in',$dirs); 22 | $list = $this->where($where)->field(true)->select(); 23 | foreach($list as $plugin){ 24 | $plugins[$plugin['name']] = $plugin; 25 | } 26 | foreach ($dirs as $value) { 27 | if(!isset($plugins[$value])){ 28 | $class = sp_get_plugin_class($value); 29 | if(!class_exists($class)){ // 实例化插件失败忽略 30 | \Think\Log::record('插件'.$value.'的入口文件不存在!'); 31 | continue; 32 | } 33 | $obj = new $class; 34 | $plugins[$value] = $obj->info; 35 | 36 | if(!isset($obj->info['type']) || $obj->info['type']==1){//只获取普通插件,微信插件在微信中使用 37 | if($plugins[$value]){ 38 | $plugins[$value]['status']=3;//未安装 39 | } 40 | }else{ 41 | unset($plugins[$value]); 42 | } 43 | 44 | } 45 | } 46 | return $plugins; 47 | } 48 | 49 | protected function _before_write(&$data) { 50 | parent::_before_write($data); 51 | } 52 | } -------------------------------------------------------------------------------- /application/Common/Model/PostsModel.class.php: -------------------------------------------------------------------------------- 1 | 发布,delete->删除,... 14 | * comment_status: 15 | * post_password 16 | * post_name 17 | * post_modified:更新时间 18 | * post_content_filtered 19 | * post_parent:为父级的post_id,就是这个表里的ID,一般用于表示某个发表的自动保存,和相关媒体而设置 20 | * post_type:可以为多个值,image->表示某个post的附件图片;audio->表示某个post的附件音频;video->表示某个post的附件视频;... 21 | */ 22 | //post_type,post_status注意变量定义格式; 23 | 24 | protected $_auto = array ( 25 | array ('post_date', 'mGetDate', 1, 'callback' ), // 增加的时候调用回调函数 26 | //array ('post_modified', 'mGetDate', 2, 'callback' ) 27 | ); 28 | // 获取当前时间 29 | function mGetDate() { 30 | return date ( 'Y-m-d H:i:s' ); 31 | } 32 | 33 | protected function _before_write(&$data) { 34 | parent::_before_write($data); 35 | } 36 | } -------------------------------------------------------------------------------- /application/Common/Model/RoleModel.class.php: -------------------------------------------------------------------------------- 1 | THINKCMF_CORE_TAGLIBS.',Portal\Lib\Taglib\Portal', 12 | 'TMPL_EXCEPTION_FILE' => SPSTATIC.'exception.html',// 异常页面的模板文件 13 | 'TMPL_TEMPLATE_SUFFIX' => '.html', // 默认模板文件后缀 14 | 'TMPL_FILE_DEPR' => '/', //模板文件MODULE_NAME与ACTION_NAME之间的分割符 15 | 'URL_ROUTE_RULES' =>$routes, 16 | 'HTML_CACHE_RULES' => array( 17 | // 定义静态缓存规则 18 | // 定义格式1 数组方式 19 | 'article:index'=>array('portal/article/{id}','0'), 20 | 'index:index'=>array('portal/index','600'), 21 | 'list:index'=>array('portal/list/{id}_{p}','60'), 22 | ) 23 | ); 24 | 25 | return array_merge($configs,$runtime_home_config); 26 | -------------------------------------------------------------------------------- /application/Portal/Controller/IndexController.class.php: -------------------------------------------------------------------------------- 1 | 8 | // +---------------------------------------------------------------------- 9 | namespace Portal\Controller; 10 | use Common\Controller\HomeBaseController; 11 | /** 12 | * 首页 13 | */ 14 | class IndexController extends HomeBaseController { 15 | 16 | //首页 17 | public function index() { 18 | $this->display(":index"); 19 | } 20 | 21 | } 22 | 23 | 24 | -------------------------------------------------------------------------------- /application/Portal/Controller/SearchController.class.php: -------------------------------------------------------------------------------- 1 | 8 | // +---------------------------------------------------------------------- 9 | /** 10 | * 搜索结果页面 11 | */ 12 | namespace Portal\Controller; 13 | use Common\Controller\HomeBaseController; 14 | class SearchController extends HomeBaseController { 15 | //文章内页 16 | public function index() { 17 | $_GET = array_merge($_GET, $_POST); 18 | $k = I("get.keyword"); 19 | 20 | if (empty($k)) { 21 | $this -> error("关键词不能为空!请重新输入!"); 22 | } 23 | $this -> assign("keyword", $k); 24 | $this -> display(":search"); 25 | } 26 | 27 | 28 | } 29 | -------------------------------------------------------------------------------- /application/Portal/hooks.php: -------------------------------------------------------------------------------- 1 | array( 9 | 'title' => '支付宝担保', 10 | 'img' => 'aliguarantee.png', 11 | 'account' => '', 12 | 'key'=>'', 13 | 'text'=>'支付宝担保交易,就像是在淘宝购物一样', 14 | 'isdefault'=>true, 15 | 'class_url'=> 'alipay/guarantee/guarantee.php' 16 | ), 17 | 'paypal' => array( 18 | 'title' => 'Paypal支付', 19 | 'img' => 'paypal.png', 20 | 'account' => '', 21 | 'key' => '', 22 | 'text' => '全球众多用户使用的国际贸易支付工具', 23 | 'isdefault'=> false, 24 | 'class_url' => 'paypal/paypal.php' 25 | ) 26 | ); 27 | 28 | 29 | //用于获取时间,格式为2015-11-02 15:03:37,注意,方法不能为private 30 | public function mGetDate() { 31 | return date('Y-m-d H:i:s'); 32 | } 33 | 34 | protected function _before_write(&$data) { 35 | parent::_before_write($data); 36 | $data['create_time'] = $this -> mGetDate(); 37 | } 38 | 39 | public function CreateOrderId(){ 40 | $order_sn = strtoupper(dechex(date('m'))).date('d').substr(time(),-5).substr(microtime(),2,5).sprintf('d',rand(0,99)); 41 | return date(Ymd).$order_sn; 42 | } 43 | } -------------------------------------------------------------------------------- /application/Server/Model/ServersModel.class.php: -------------------------------------------------------------------------------- 1 | enctyption_mode; 20 | } 21 | public function getTimeMode(){ 22 | return $this -> time_mode; 23 | } 24 | 25 | 26 | //用于获取时间,格式为2012-02-03 12:12:12,注意,方法不能为private 27 | public function mGetDate() { 28 | return date('Y-m-d H:i:s'); 29 | } 30 | 31 | protected function _before_write(&$data) { 32 | parent::_before_write($data); 33 | $data['create_time'] = $this -> mGetDate(); 34 | } 35 | } -------------------------------------------------------------------------------- /application/Server/nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/application/Server/nav.php -------------------------------------------------------------------------------- /application/User/Conf/config.php: -------------------------------------------------------------------------------- 1 | users_model=D("Common/Users"); 14 | } 15 | //会员中心 16 | public function index() { 17 | $userid=sp_get_current_userid(); 18 | $user=$this->users_model->where(array("id"=>$userid))->find(); 19 | $this->assign($user); 20 | $this->display(':center'); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /application/User/Controller/OauthadminController.class.php: -------------------------------------------------------------------------------- 1 | where(array("status"=>1))->count(); 16 | $page = $this->page($count, 20); 17 | $lists = $oauth_user_model 18 | ->where(array("status"=>1)) 19 | ->order("create_time DESC") 20 | ->limit($page->firstRow . ',' . $page->listRows) 21 | ->select(); 22 | $this->assign("page", $page->show('Admin')); 23 | $this->assign('lists', $lists); 24 | $this->display(); 25 | } 26 | 27 | //删除用户 28 | function delete(){ 29 | $id=intval($_GET['id']); 30 | if(empty($id)){ 31 | $this->error('非法数据!'); 32 | } 33 | $rst = M("OauthUser")->where(array("id"=>$id))->delete(); 34 | if ($rst!==false) { 35 | $this->success("删除成功!", U("oauthadmin/index")); 36 | } else { 37 | $this->error('删除失败!'); 38 | } 39 | } 40 | 41 | 42 | } -------------------------------------------------------------------------------- /application/User/Controller/PublicController.class.php: -------------------------------------------------------------------------------- 1 | field('avatar')->where(array("id"=>$id))->find(); 16 | 17 | $avatar=$find_user['avatar']; 18 | $should_show_default=false; 19 | 20 | if(empty($avatar)){ 21 | $should_show_default=true; 22 | }else{ 23 | if(strpos($avatar,"http")===0){ 24 | header("Location: $avatar");exit(); 25 | }else{ 26 | $avatar_dir=C("UPLOADPATH")."avatar/"; 27 | $avatar=$avatar_dir.$avatar; 28 | if(file_exists($avatar)){ 29 | $imageInfo = getimagesize($avatar); 30 | if ($imageInfo !== false) { 31 | $mime=$imageInfo['mime']; 32 | header("Content-type: $mime"); 33 | echo file_get_contents($avatar); 34 | }else{ 35 | $should_show_default=true; 36 | } 37 | }else{ 38 | $should_show_default=true; 39 | } 40 | } 41 | 42 | 43 | } 44 | 45 | if($should_show_default){ 46 | $imageInfo = getimagesize("statics/images/headicon.png"); 47 | if ($imageInfo !== false) { 48 | $mime=$imageInfo['mime']; 49 | header("Content-type: $mime"); 50 | echo file_get_contents("statics/images/headicon.png"); 51 | } 52 | 53 | } 54 | exit(); 55 | 56 | } 57 | 58 | 59 | 60 | } 61 | -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- 1 | name: thinkcmf 2 | version: 1 3 | handle: 4 | - rewrite: if(!is_dir() && !is_file() && path~"^(.*)$") goto "/index.php/$1" -------------------------------------------------------------------------------- /data/backup/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order Allow,Deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /data/backup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/data/backup/index.html -------------------------------------------------------------------------------- /data/conf/config.php: -------------------------------------------------------------------------------- 1 | 'simplebootx', 3 | 'DEFAULT_THEME' => 'simplebootx', 4 | 'SP_ADMIN_STYLE' => 'flat', 5 | 'URL_MODEL' => '0', 6 | 'URL_HTML_SUFFIX' => '', 7 | 'UCENTER_ENABLED' => 0, 8 | 'COMMENT_NEED_CHECK' => 0, 9 | 'COMMENT_TIME_INTERVAL' => 60, 10 | 'MOBILE_TPL_ENABLED' => 0, 11 | 'HTML_CACHE_ON' => false, 12 | );?> -------------------------------------------------------------------------------- /data/conf/db.php: -------------------------------------------------------------------------------- 1 | 'mysql', 8 | 'DB_HOST' => '数据库地址', 9 | 'DB_NAME' => '数据库名', 10 | 'DB_USER' => '用户名', 11 | 'DB_PWD' => '密码', 12 | 'DB_PORT' => '3306', 13 | 'DB_PREFIX' => 'go_', 14 | //密钥 15 | "AUTHCODE" => 'pas@#D', 16 | //cookies 17 | "COOKIE_PREFIX" => 'GoOut_', 18 | ); 19 | ?> -------------------------------------------------------------------------------- /data/conf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/data/conf/index.html -------------------------------------------------------------------------------- /data/conf/route/portal.php: -------------------------------------------------------------------------------- 1 | 'portal/list/index?id=1', 3 | 'article/:id\d' => 'portal/article/index', 4 | ); -------------------------------------------------------------------------------- /data/uc_cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/data/uc_cache/index.html -------------------------------------------------------------------------------- /data/upload/avatar/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/data/upload/avatar/index.html -------------------------------------------------------------------------------- /data/upload/ueditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/data/upload/ueditor/index.html -------------------------------------------------------------------------------- /install/auto.php: -------------------------------------------------------------------------------- 1 | 'mysql', 8 | 'DB_HOST' => '#DB_HOST#', 9 | 'DB_NAME' => '#DB_NAME#', 10 | 'DB_USER' => '#DB_USER#', 11 | 'DB_PWD' => '#DB_PWD#', 12 | 'DB_PORT' => '#DB_PORT#', 13 | 'DB_PREFIX' => '#DB_PREFIX#', 14 | //密钥 15 | "AUTHCODE" => '#AUTHCODE#', 16 | //cookies 17 | "COOKIE_PREFIX" => '#COOKIE_PREFIX#', 18 | ); 19 | ?> -------------------------------------------------------------------------------- /install/images/install/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/bg.png -------------------------------------------------------------------------------- /install/images/install/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/btn.png -------------------------------------------------------------------------------- /install/images/install/complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/complete.png -------------------------------------------------------------------------------- /install/images/install/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/header.png -------------------------------------------------------------------------------- /install/images/install/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/icon.png -------------------------------------------------------------------------------- /install/images/install/icon_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/icon_install.png -------------------------------------------------------------------------------- /install/images/install/icon_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/icon_update.png -------------------------------------------------------------------------------- /install/images/install/ignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/ignore.png -------------------------------------------------------------------------------- /install/images/install/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/loading.gif -------------------------------------------------------------------------------- /install/images/install/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/logo.png -------------------------------------------------------------------------------- /install/images/install/pop_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/pop_loading.gif -------------------------------------------------------------------------------- /install/images/install/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/step.png -------------------------------------------------------------------------------- /install/images/install/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/tab.png -------------------------------------------------------------------------------- /install/images/install/tips_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/images/install/tips_system.png -------------------------------------------------------------------------------- /install/install.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/install/install.lock -------------------------------------------------------------------------------- /install/templates/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install/templates/header.php: -------------------------------------------------------------------------------- 1 |
2 |

logo

3 |
安装向导
4 |
5 |
-------------------------------------------------------------------------------- /install/templates/s5.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $Title; ?> - <?php echo $Powered; ?> 6 | 7 | 8 | 13 | 14 | 15 |
16 | 17 |
18 |
19 |
安装完成,进入后台管理 20 |

为了您站点的安全,安装完成后即可将网站根目录下的“Install”文件夹删除,或者/install/目录下创建install.lock文件防止重复安装。

21 |

22 |
23 |
24 |
25 |
26 | 27 | 28 | 39 | 40 | -------------------------------------------------------------------------------- /plugins/Demo/Controller/AdminIndexController.class.php: -------------------------------------------------------------------------------- 1 | 8 | // +---------------------------------------------------------------------- 9 | namespace plugins\Demo\Controller; //Demo插件英文名,改成你的插件英文就行了 10 | use Api\Controller\PluginController;//插件控制器基类 11 | 12 | class AdminIndexController extends PluginController{ 13 | 14 | function _initialize(){ 15 | $adminid=sp_get_current_admin_id();//获取后台管理员id,可判断是否登录 16 | if(!empty($adminid)){ 17 | $this->assign("adminid",$adminid); 18 | }else{ 19 | //TODO no login 20 | } 21 | } 22 | 23 | function index(){ 24 | //$plugin_demo_model=D("plugins://Demo/PluginDemo");//实例化自定义模型PluginDemo ,需要创建plugin_demo表 25 | //$plugin_demo_model->test();//调用自定义模型PluginDemo里的test方法 26 | 27 | $users_model=D("Users");//实例化Common模块下的Users模型 28 | //$users_model=D("Common/Users");//也可以这样实例化Common模块下的Users模型 29 | $users=$users_model->limit(0,5)->select(); 30 | 31 | 32 | 33 | $this->assign("users",$users); 34 | 35 | $this->display(":admin_index"); 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /plugins/Demo/Controller/IndexController.class.php: -------------------------------------------------------------------------------- 1 | 8 | // +---------------------------------------------------------------------- 9 | namespace plugins\Demo\Controller; //Demo插件英文名,改成你的插件英文就行了 10 | use Api\Controller\PluginController;//插件控制器基类 11 | 12 | class IndexController extends PluginController{ 13 | 14 | function index(){ 15 | //$plugin_demo_model=D("plugins://Demo/PluginDemo");//实例化自定义模型PluginDemo ,需要创建plugin_demo表 16 | //$plugin_demo_model->test();//调用自定义模型PluginDemo里的test方法 17 | 18 | $users_model=D("Users");//实例化Common模块下的Users模型 19 | //$users_model=D("Common/Users");//也可以这样实例化Common模块下的Users模型 20 | $users=$users_model->limit(0,5)->select(); 21 | 22 | $this->assign("users",$users); 23 | 24 | $this->display(":index"); 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /plugins/Demo/DemoPlugin.class.php: -------------------------------------------------------------------------------- 1 | 8 | // +---------------------------------------------------------------------- 9 | namespace plugins\Demo;//Demo插件英文名,改成你的插件英文就行了 10 | use Common\Lib\Plugin; 11 | 12 | /** 13 | * Demo 14 | */ 15 | class DemoPlugin extends Plugin{//Demo插件英文名,改成你的插件英文就行了 16 | 17 | public $info = array( 18 | 'name'=>'Demo',//Demo插件英文名,改成你的插件英文就行了 19 | 'title'=>'插件演示', 20 | 'description'=>'插件演示', 21 | 'status'=>1, 22 | 'author'=>'ThinkCMF', 23 | 'version'=>'1.0' 24 | ); 25 | 26 | public $has_admin=1;//插件是否有后台管理界面 27 | 28 | public function install(){//安装方法必须实现 29 | return true;//安装成功返回true,失败false 30 | } 31 | 32 | public function uninstall(){//卸载方法必须实现 33 | return true;//卸载成功返回true,失败false 34 | } 35 | 36 | //实现的footer钩子方法 37 | public function footer($param){ 38 | $config=$this->getConfig(); 39 | $this->assign($config); 40 | $this->display('widget'); 41 | } 42 | 43 | } -------------------------------------------------------------------------------- /plugins/Demo/Model/PluginDemoModel.class.php: -------------------------------------------------------------------------------- 1 | 8 | // +---------------------------------------------------------------------- 9 | namespace plugins\Demo\Model;//Demo插件英文名,改成你的插件英文就行了 10 | use Common\Model\CommonModel;//继承CommonModel 11 | class PluginDemoModel extends CommonModel{ //Demo插件英文名,改成你的插件英文就行了,插件数据表最好加个plugin前缀再加表名,这个类就是对应“表前缀+plugin_demo”表 12 | 13 | //自动验证 14 | protected $_validate = array( 15 | //array(验证字段,验证规则,错误提示,验证条件,附加规则,验证时间) 16 | //array('ad_name', 'require', '广告名称不能为空!', 1, 'regex', 3), 17 | ); 18 | 19 | protected function _before_write(&$data) { 20 | parent::_before_write($data); 21 | } 22 | 23 | //自定义方法 24 | function test(){ 25 | echo "hello"; 26 | } 27 | } -------------------------------------------------------------------------------- /plugins/Demo/README.txt: -------------------------------------------------------------------------------- 1 | // +---------------------------------------------------------------------- 2 | // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ] 3 | // +---------------------------------------------------------------------- 4 | // | Copyright (c) 2013-2014 http://www.thinkcmf.com All rights reserved. 5 | // +---------------------------------------------------------------------- 6 | // | Author: Dean 7 | // +---------------------------------------------------------------------- 8 | 9 | ThinkCMF 插件演示 10 | -------------------------------------------------------------------------------- /plugins/Demo/View/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/plugins/Demo/View/assets/images/favicon.ico -------------------------------------------------------------------------------- /plugins/Demo/View/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | ThinkCMF插件演示首页 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 23 | 24 | 25 | 26 |
27 |

ThinkCMF插件演示

28 | 29 |

30 | 插件根目录:__PLUGINROOT__ 31 |

32 | 33 |

34 | 插件模板根目录:__PLUGINTMPL__ 35 |

36 | 37 |

38 | foreach: 39 |

40 |
    41 | 42 |
  1. {$vo.user_login} {$vo.create_time}
  2. 43 | 44 |
    45 |
46 | 47 | 48 | 49 |
50 | 51 | -------------------------------------------------------------------------------- /plugins/Demo/View/widget.html: -------------------------------------------------------------------------------- 1 |
2 |

ThinkCMF插件演示

3 |

4 | 主页:访问 5 |

6 |

7 | 后台管理:访问 8 |

9 |

10 | 插件根目录:__PLUGINROOT__ 11 |

12 | 13 |

14 | 插件模板根目录:__PLUGINTMPL__ 15 |

16 | 17 |

18 | 文本:{$demo_text} 19 |

20 |

21 | 密码:{$demo_password} 22 |

23 | 24 | $select_options=array( '1'=>'ThinkCMFX', '2'=>'ThinkCMF', 25 | '3'=>'跟猫玩糗事', '4'=>'门户应用' ); 26 | 27 |

28 | 下拉列表:{$select_options[$demo_select]} 29 |

30 | 31 | $checkbox_options=array( '1'=>'genmaowan.com', 32 | '2'=>'www.thinkcmf.com', ); 33 | 34 |

35 | 多选框: 36 | {$checkbox_options[$vo]} 37 |

38 | 39 | $radio_options=array( '1'=>'ThinkCMFX', '2'=>'ThinkCMF' ); 40 | 41 |

42 | 单选框:{$radio_options[$demo_radio]} 43 |

44 | 45 |

46 | 多行文本:{$demo_textarea} 47 |

48 | 49 |
50 | -------------------------------------------------------------------------------- /sae_app_wizard.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Storage 5 | Memcache 6 | Mysql 7 | KVDB 8 | 9 | 10 | 11 | 12 | 13 | index.php 14 | 15 | -------------------------------------------------------------------------------- /simplewind/Core/Conf/debug.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | 12 | /** 13 | * ThinkPHP 默认的调试模式配置文件 14 | */ 15 | defined('THINK_PATH') or exit(); 16 | // 调试模式下面默认设置 可以在应用配置目录下重新定义 debug.php 覆盖 17 | return array( 18 | 'LOG_RECORD' => true, // 进行日志记录 19 | 'LOG_EXCEPTION_RECORD' => true, // 是否记录异常信息日志 20 | 'LOG_LEVEL' => 'EMERG,ALERT,CRIT,ERR,WARN,NOTIC,INFO,DEBUG,SQL', // 允许记录的日志级别 21 | 'DB_FIELDS_CACHE' => false, // 字段缓存信息 22 | 'DB_DEBUG' => true, // 开启调试模式 记录SQL日志 23 | 'TMPL_CACHE_ON' => false, // 是否开启模板编译缓存,设为false则每次都会重新编译 24 | 'TMPL_STRIP_SPACE' => false, // 是否去除模板文件里面的html空格与换行 25 | 'SHOW_ERROR_MSG' => true, // 显示错误信息 26 | 'URL_CASE_INSENSITIVE' => false, // URL区分大小写 27 | ); -------------------------------------------------------------------------------- /simplewind/Core/LICENSE.txt: -------------------------------------------------------------------------------- 1 | 2 | ThinkPHP遵循Apache2开源协议发布,并提供免费使用。 3 | 版权所有Copyright © 2006-2014 by ThinkPHP (http://thinkphp.cn) 4 | All rights reserved。 5 | ThinkPHP® 商标和著作权所有者为上海顶想信息科技有限公司。 6 | 7 | Apache Licence是著名的非盈利开源组织Apache采用的协议。 8 | 该协议和BSD类似,鼓励代码共享和尊重原作者的著作权, 9 | 允许代码修改,再作为开源或商业软件发布。需要满足 10 | 的条件: 11 | 1. 需要给代码的用户一份Apache Licence ; 12 | 2. 如果你修改了代码,需要在被修改的文件中说明; 13 | 3. 在延伸的代码中(修改和有源代码衍生的代码中)需要 14 | 带有原来代码中的协议,商标,专利声明和其他原来作者规 15 | 定需要包含的说明; 16 | 4. 如果再发布的产品中包含一个Notice文件,则在Notice文 17 | 件中需要带有本协议内容。你可以在Notice中增加自己的 18 | 许可,但不可以表现为对Apache Licence构成更改。 19 | 具体的协议参考:http://www.apache.org/licenses/LICENSE-2.0 20 | 21 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 22 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 24 | FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 25 | COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 26 | INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 27 | BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 28 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 29 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 31 | ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 32 | POSSIBILITY OF SUCH DAMAGE. 33 | -------------------------------------------------------------------------------- /simplewind/Core/Library/Behavior/AgentCheckBehavior.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | namespace Behavior; 12 | /** 13 | * 行为扩展:代理检测 14 | */ 15 | class AgentCheckBehavior { 16 | public function run(&$params) { 17 | // 代理访问检测 18 | $limitProxyVisit = C('LIMIT_PROXY_VISIT',null,true); 19 | if($limitProxyVisit && ($_SERVER['HTTP_X_FORWARDED_FOR'] || $_SERVER['HTTP_VIA'] || $_SERVER['HTTP_PROXY_CONNECTION'] || $_SERVER['HTTP_USER_AGENT_VIA'])) { 20 | // 禁止代理访问 21 | exit('Access Denied'); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /simplewind/Core/Library/Behavior/WriteHtmlCacheBehavior.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | namespace Behavior; 12 | use Think\Storage; 13 | /** 14 | * 系统行为扩展:静态缓存写入 15 | */ 16 | class WriteHtmlCacheBehavior { 17 | 18 | // 行为扩展的执行入口必须是run 19 | public function run(&$content) { 20 | //2014-11-28 修改 如果有HTTP 4xx 3xx 5xx 头部,禁止存储 21 | //2014-12-1 修改 对注入的网址 防止生成,例如 /game/lst/SortType/hot/-e8-90-8c-e5-85-94-e7-88-b1-e6-b6-88-e9-99-a4/-e8-bf-9b-e5-87-bb-e7-9a-84-e9-83-a8-e8-90-bd/-e9-a3-8e-e4-ba-91-e5-a4-a9-e4-b8-8b/index.shtml 22 | if (C('HTML_CACHE_ON') && defined('HTML_FILE_NAME') 23 | && !preg_match('/Status.*[345]{1}\d{2}/i', implode(' ', headers_list())) 24 | && !preg_match('/(-[a-z0-9]{2}){3,}/i',HTML_FILE_NAME)) { 25 | //静态文件写入 26 | Storage::put(HTML_FILE_NAME, $content, 'html'); 27 | } 28 | } 29 | } -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Behavior.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | namespace Think; 12 | /** 13 | * ThinkPHP Behavior基础类 14 | */ 15 | abstract class Behavior { 16 | /** 17 | * 执行行为 run方法是Behavior唯一的接口 18 | * @access public 19 | * @param mixed $params 行为参数 20 | * @return void 21 | */ 22 | abstract public function run(&$params); 23 | 24 | } -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Controller/JsonRpcController.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | namespace Think\Controller; 12 | /** 13 | * ThinkPHP JsonRPC控制器类 14 | */ 15 | class JsonRpcController { 16 | 17 | /** 18 | * 架构函数 19 | * @access public 20 | */ 21 | public function __construct() { 22 | //控制器初始化 23 | if(method_exists($this,'_initialize')) 24 | $this->_initialize(); 25 | //导入类库 26 | Vendor('jsonRPC.jsonRPCServer'); 27 | // 启动server 28 | \jsonRPCServer::handle($this); 29 | } 30 | 31 | /** 32 | * 魔术方法 有不存在的操作的时候执行 33 | * @access public 34 | * @param string $method 方法名 35 | * @param array $args 参数 36 | * @return mixed 37 | */ 38 | public function __call($method,$args){} 39 | } 40 | -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Controller/YarController.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | namespace Think\Controller; 12 | /** 13 | * ThinkPHP Yar控制器类 14 | */ 15 | class YarController { 16 | 17 | /** 18 | * 架构函数 19 | * @access public 20 | */ 21 | public function __construct() { 22 | //控制器初始化 23 | if(method_exists($this,'_initialize')) 24 | $this->_initialize(); 25 | //判断扩展是否存在 26 | if(!extension_loaded('yar')) 27 | E(L('_NOT_SUPPORT_').':yar'); 28 | //实例化Yar_Server 29 | $server = new \Yar_Server($this); 30 | // 启动server 31 | $server->handle(); 32 | } 33 | 34 | /** 35 | * 魔术方法 有不存在的操作的时候执行 36 | * @access public 37 | * @param string $method 方法名 38 | * @param array $args 参数 39 | * @return mixed 40 | */ 41 | public function __call($method,$args){} 42 | } 43 | -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Exception.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | namespace Think; 12 | /** 13 | * ThinkPHP系统异常基类 14 | */ 15 | class Exception extends \Exception { 16 | } -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Storage.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | namespace Think; 12 | // 分布式文件存储类 13 | class Storage { 14 | 15 | /** 16 | * 操作句柄 17 | * @var string 18 | * @access protected 19 | */ 20 | static protected $handler ; 21 | 22 | /** 23 | * 连接分布式文件系统 24 | * @access public 25 | * @param string $type 文件类型 26 | * @param array $options 配置数组 27 | * @return void 28 | */ 29 | static public function connect($type='File',$options=array()) { 30 | $class = 'Think\\Storage\\Driver\\'.ucwords($type); 31 | self::$handler = new $class($options); 32 | } 33 | 34 | static public function __callstatic($method,$args){ 35 | //调用缓存驱动的方法 36 | if(method_exists(self::$handler, $method)){ 37 | return call_user_func_array(array(self::$handler,$method), $args); 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Template/Driver/Mobile.class.php: -------------------------------------------------------------------------------- 1 | 10 | // +---------------------------------------------------------------------- 11 | namespace Think\Template\Driver; 12 | /** 13 | * MobileTemplate模板引擎驱动 14 | */ 15 | class Mobile { 16 | /** 17 | * 渲染模板输出 18 | * @access public 19 | * @param string $templateFile 模板文件名 20 | * @param array $var 模板变量 21 | * @return void 22 | */ 23 | public function fetch($templateFile,$var) { 24 | $templateFile=substr($templateFile,strlen(THEME_PATH)); 25 | $var['_think_template_path']=$templateFile; 26 | exit(json_encode($var)); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/bgs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/bgs/1.jpg -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/bgs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/bgs/2.jpg -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/bgs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/bgs/3.jpg -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/bgs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/bgs/4.jpg -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/bgs/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/bgs/5.jpg -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/bgs/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/bgs/6.jpg -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/bgs/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/bgs/7.jpg -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/bgs/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/bgs/8.jpg -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/ttfs/1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/ttfs/1.ttf -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/ttfs/2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/ttfs/2.ttf -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/ttfs/3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/ttfs/3.ttf -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/ttfs/4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/ttfs/4.ttf -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/ttfs/5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/ttfs/5.ttf -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/ttfs/6.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/ttfs/6.ttf -------------------------------------------------------------------------------- /simplewind/Core/Library/Think/Verify/zhttfs/1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/Library/Think/Verify/zhttfs/1.ttf -------------------------------------------------------------------------------- /simplewind/Core/Library/Vendor/README.txt: -------------------------------------------------------------------------------- 1 | 第三方类库包目录 -------------------------------------------------------------------------------- /simplewind/Core/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/simplewind/Core/logo.png -------------------------------------------------------------------------------- /simplewind/Lib/Util/PathTree.class.php: -------------------------------------------------------------------------------- 1 | arr = $arr; 19 | return is_array($arr); 20 | } 21 | 22 | public function get_tree(){ 23 | $array=$this->arr; 24 | foreach ($array as $key=> $r){ 25 | $level=count(explode("-", $r["path"]))-1; 26 | $array[$key]["level"]=$level; 27 | $array[$key]["spacer"]=$this->get_spacer($level-1); 28 | } 29 | return $array; 30 | } 31 | 32 | public function get_spacer($count){ 33 | $spacer=""; 34 | for ($i=0;$i<$count;$i++){ 35 | $spacer.=$this->nbsp; 36 | } 37 | return $spacer; 38 | 39 | } 40 | } -------------------------------------------------------------------------------- /statics/images/headicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/images/headicon.png -------------------------------------------------------------------------------- /statics/images/icon/logo-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/images/icon/logo-18.png -------------------------------------------------------------------------------- /statics/images/icon/upload-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/images/icon/upload-pic.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/bg.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/bg2.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/bg_css3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/bg_css3.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/bg_css3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/bg_css3_2.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/ie6/close.hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/ie6/close.hover.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/ie6/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/ie6/close.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/ie6/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/ie6/e.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/ie6/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/ie6/n.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/ie6/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/ie6/ne.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/ie6/nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/ie6/nw.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/ie6/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/ie6/s.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/ie6/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/ie6/se.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/ie6/sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/ie6/sw.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/blue/ie6/w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/blue/ie6/w.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/icons/error.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/icons/face-sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/icons/face-sad.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/icons/face-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/icons/face-smile.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/icons/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/icons/loading.gif -------------------------------------------------------------------------------- /statics/js/artDialog/skins/icons/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/icons/question.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/icons/succeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/icons/succeed.png -------------------------------------------------------------------------------- /statics/js/artDialog/skins/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/artDialog/skins/icons/warning.png -------------------------------------------------------------------------------- /statics/js/colorPicker/images/color_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/colorPicker/images/color_panel.png -------------------------------------------------------------------------------- /statics/js/colorPicker/images/color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/colorPicker/images/color_picker.png -------------------------------------------------------------------------------- /statics/js/crop/images/Main.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/crop/images/Main.swf -------------------------------------------------------------------------------- /statics/js/crop/images/playerProductInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/crop/images/playerProductInstall.swf -------------------------------------------------------------------------------- /statics/js/datePicker/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/datePicker/bg.png -------------------------------------------------------------------------------- /statics/js/edit_area/images/autocompletion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/autocompletion.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/close.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/fullscreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/fullscreen.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/go_to_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/go_to_line.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/help.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/highlight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/highlight.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/load.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/move.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/newdocument.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/newdocument.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/opacity.png -------------------------------------------------------------------------------- /statics/js/edit_area/images/processing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/processing.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/redo.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/reset_highlight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/reset_highlight.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/save.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/search.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/smooth_selection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/smooth_selection.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/spacer.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/statusbar_resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/statusbar_resize.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/undo.gif -------------------------------------------------------------------------------- /statics/js/edit_area/images/word_wrap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/images/word_wrap.gif -------------------------------------------------------------------------------- /statics/js/edit_area/langs/zh.js: -------------------------------------------------------------------------------- 1 | editAreaLoader.lang["zh"]={ 2 | new_document: "新建空白文档", 3 | search_button: "查找与替换", 4 | search_command: "查找下一个 / 打开查找框", 5 | search: "查找", 6 | replace: "替换", 7 | replace_command: "替换 / 打开查找框", 8 | find_next: "查找下一个", 9 | replace_all: "全部替换", 10 | reg_exp: "正则表达式", 11 | match_case: "匹配大小写", 12 | not_found: "未找到.", 13 | occurrence_replaced: "处被替换.", 14 | search_field_empty: "查找框没有内容", 15 | restart_search_at_begin: "已到到文档末尾. 从头重新查找.", 16 | move_popup: "移动查找对话框", 17 | font_size: "--字体大小--", 18 | go_to_line: "转到行", 19 | go_to_line_prompt: "转到行:", 20 | undo: "恢复", 21 | redo: "重做", 22 | change_smooth_selection: "启用/禁止一些显示特性(更好看但更耗费资源)", 23 | highlight: "启用/禁止语法高亮", 24 | reset_highlight: "重置语法高亮(当文本显示不同步时)", 25 | word_wrap: "toggle word wrapping mode", 26 | help: "关于", 27 | save: "保存", 28 | load: "加载", 29 | line_abbr: "行", 30 | char_abbr: "字符", 31 | position: "位置", 32 | total: "总计", 33 | close_popup: "关闭对话框", 34 | shortcuts: "快捷键", 35 | add_tab: "添加制表符(Tab)", 36 | remove_tab: "移除制表符(Tab)", 37 | about_notice: "注意:语法高亮功能仅用于较少内容的文本(文件内容太大会导致浏览器反应慢)", 38 | toggle: "切换编辑器", 39 | accesskey: "快捷键", 40 | tab: "Tab", 41 | shift: "Shift", 42 | ctrl: "Ctrl", 43 | esc: "Esc", 44 | processing: "正在处理中...", 45 | fullscreen: "全屏编辑", 46 | syntax_selection: "--语法--", 47 | close_tab: "关闭文件" 48 | }; 49 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/css/charmap.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #F0F0EE; 3 | font: 12px monospace, sans-serif; 4 | } 5 | 6 | select{ 7 | background-color: #F9F9F9; 8 | border: solid 1px #888888; 9 | } 10 | 11 | h1, h2, h3, h4, h5, h6{ 12 | margin: 0; 13 | padding: 0; 14 | color: #2B6FB6; 15 | } 16 | 17 | h1{ 18 | font-size: 1.5em; 19 | } 20 | 21 | div#char_list{ 22 | height: 200px; 23 | overflow: auto; 24 | padding: 1px; 25 | border: 1px solid #0A246A; 26 | background-color: #F9F9F9; 27 | clear: both; 28 | margin-top: 5px; 29 | } 30 | 31 | a.char{ 32 | display: block; 33 | float: left; 34 | width: 20px; 35 | height: 20px; 36 | line-height: 20px; 37 | margin: 1px; 38 | border: solid 1px #888888; 39 | text-align: center; 40 | cursor: pointer; 41 | } 42 | 43 | a.char:hover{ 44 | background-color: #CCCCCC; 45 | } 46 | 47 | .preview{ 48 | border: solid 1px #888888; 49 | width: 50px; 50 | padding: 2px 5px; 51 | height: 35px; 52 | line-height: 35px; 53 | text-align:center; 54 | background-color: #CCCCCC; 55 | font-size: 2em; 56 | float: right; 57 | font-weight: bold; 58 | margin: 0 0 5px 5px; 59 | } 60 | 61 | #preview_code{ 62 | font-size: 1.1em; 63 | width: 70px; 64 | } 65 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/images/charmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/plugins/charmap/images/charmap.gif -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Bulgarian translation 3 | * Author: Valentin Hristov 4 | * Company: SOFTKIT Bulgarian 5 | * Site: http://www.softkit-bg.com 6 | */ 7 | editArea.add_lang("bg",{ 8 | charmap_but: "Виртуална клавиатура", 9 | charmap_title: "Виртуална клавиатура", 10 | charmap_choose_block: "избери езиков блок", 11 | charmap_insert:"постави този символ" 12 | }); 13 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/cs.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("cs",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/de.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("de",{ 2 | charmap_but: "Sonderzeichen", 3 | charmap_title: "Sonderzeichen", 4 | charmap_choose_block: "Bereich auswählen", 5 | charmap_insert: "dieses Zeichen einfügen" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/dk.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("dk",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/en.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("en",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/eo.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("eo",{ 2 | charmap_but: "Ekranklavaro", 3 | charmap_title: "Ekranklavaro", 4 | charmap_choose_block: "Elekto de lingvo", 5 | charmap_insert:"enmeti tiun signaron" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/es.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("es",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/fr.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("fr",{ 2 | charmap_but: "Clavier visuel", 3 | charmap_title: "Clavier visuel", 4 | charmap_choose_block: "choix du language", 5 | charmap_insert:"insérer ce caractère" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/hr.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("hr",{ 2 | charmap_but: "Virtualna tipkovnica", 3 | charmap_title: "Virtualna tipkovnica", 4 | charmap_choose_block: "Odaberi blok s jezikom", 5 | charmap_insert:"Ubaci taj znak" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/it.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("it",{ 2 | charmap_but: "Tastiera visuale", 3 | charmap_title: "Tastiera visuale", 4 | charmap_choose_block: "seleziona blocco", 5 | charmap_insert:"inserisci questo carattere" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/ja.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("ja",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/mk.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("mkn",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/nl.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("nl",{ 2 | charmap_but: "Visueel toetsenbord", 3 | charmap_title: "Visueel toetsenbord", 4 | charmap_choose_block: "Kies een taal blok", 5 | charmap_insert:"Voeg dit symbool in" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/pl.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("pl",{ 2 | charmap_but: "Klawiatura ekranowa", 3 | charmap_title: "Klawiatura ekranowa", 4 | charmap_choose_block: "wybierz grupę znaków", 5 | charmap_insert:"wstaw ten znak" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/pt.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("pt",{ 2 | charmap_but: "Visual keyboard", 3 | charmap_title: "Visual keyboard", 4 | charmap_choose_block: "select language block", 5 | charmap_insert:"insert this character" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/ru.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("ru",{ 2 | charmap_but: "Визуальная клавиатура", 3 | charmap_title: "Визуальная клавиатура", 4 | charmap_choose_block: "выбрать языковой блок", 5 | charmap_insert:"вставить этот символ" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/sk.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("sk",{ 2 | charmap_but: "Vizuálna klávesnica", 3 | charmap_title: "Vizuálna klávesnica", 4 | charmap_choose_block: "vyber jazykový blok", 5 | charmap_insert: "vlož tento znak" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/langs/zh.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("zh",{ 2 | charmap_but: "软键盘", 3 | charmap_title: "软键盘", 4 | charmap_choose_block: "选择一个语言块", 5 | charmap_insert:"插入此字符" 6 | }); 7 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/charmap/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {$charmap_title} 6 | 7 | 8 | 10 | 11 | 12 |
13 |
14 |

{$charmap_title}:

15 | 17 |
18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/css/test.css: -------------------------------------------------------------------------------- 1 | select#test_select{ 2 | background-color: #FF0000; 3 | } 4 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/images/test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/edit_area/plugins/test/images/test.gif -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Bulgarian translation 3 | * Author: Valentin Hristov 4 | * Company: SOFTKIT Bulgarian 5 | * Site: http://www.softkit-bg.com 6 | */ 7 | editArea.add_lang("bg",{ 8 | test_select: "избери таг", 9 | test_but: "тествай копието" 10 | }); 11 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/cs.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("cs",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/de.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("de",{ 2 | test_select: "Tag auswählen", 3 | test_but: "Test Button" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/dk.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("dk",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/en.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("en",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/eo.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("eo",{ 2 | test_select:"elekto de marko", 3 | test_but: "provo-butono" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/es.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("es",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/fr.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("fr",{ 2 | test_select:"choix balise", 3 | test_but: "bouton de test" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/hr.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("hr",{ 2 | test_select: "Odaberi tag", 3 | test_but: "Probna tipka" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/it.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("it",{ 2 | test_select: "seleziona tag", 3 | test_but: "pulsante di test" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/ja.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("ja",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/mk.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("mk",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/nl.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("nl",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/pl.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("pl",{ 2 | test_select: "wybierz tag", 3 | test_but: "test" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/pt.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("pt",{ 2 | test_select: "select tag", 3 | test_but: "test button" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/ru.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("ru",{ 2 | test_select: "выбрать тэг", 3 | test_but: "тестировать кнопку" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/sk.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("sk",{ 2 | test_select: "vyber tag", 3 | test_but: "testovacie tlačidlo" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/langs/zh.js: -------------------------------------------------------------------------------- 1 | editArea.add_lang("zh",{ 2 | test_select: "选择标签", 3 | test_but: "测试按钮" 4 | }); 5 | -------------------------------------------------------------------------------- /statics/js/edit_area/plugins/test/test2.js: -------------------------------------------------------------------------------- 1 | alert("test2.js is loaded from test plugin"); 2 | -------------------------------------------------------------------------------- /statics/js/edit_area/reg_syntax/html.js: -------------------------------------------------------------------------------- 1 | /* 2 | * last update: 2006-08-24 3 | */ 4 | 5 | editAreaLoader.load_syntax["html"] = { 6 | 'DISPLAY_NAME' : 'HTML' 7 | ,'COMMENT_SINGLE' : {} 8 | ,'COMMENT_MULTI' : {''} 9 | ,'QUOTEMARKS' : {1: "'", 2: '"'} 10 | ,'KEYWORD_CASE_SENSITIVE' : false 11 | ,'KEYWORDS' : { 12 | } 13 | ,'OPERATORS' :[ 14 | ] 15 | ,'DELIMITERS' :[ 16 | ] 17 | ,'REGEXPS' : { 18 | 'doctype' : { 19 | 'search' : '()(]*>)()' 20 | ,'class' : 'doctype' 21 | ,'modifiers' : '' 22 | ,'execute' : 'before' // before or after 23 | } 24 | ,'tags' : { 25 | 'search' : '(<)(/?[a-z][^ \r\n\t>]*)([^>]*>)' 26 | ,'class' : 'tags' 27 | ,'modifiers' : 'gi' 28 | ,'execute' : 'before' // before or after 29 | } 30 | ,'attributes' : { 31 | 'search' : '( |\n|\r|\t)([^ \r\n\t=]+)(=)' 32 | ,'class' : 'attributes' 33 | ,'modifiers' : 'g' 34 | ,'execute' : 'before' // before or after 35 | } 36 | } 37 | ,'STYLES' : { 38 | 'COMMENTS': 'color: #AAAAAA;' 39 | ,'QUOTESMARKS': 'color: #6381F8;' 40 | ,'KEYWORDS' : { 41 | } 42 | ,'OPERATORS' : 'color: #E775F0;' 43 | ,'DELIMITERS' : '' 44 | ,'REGEXPS' : { 45 | 'attributes': 'color: #B1AC41;' 46 | ,'tags': 'color: #E62253;' 47 | ,'doctype': 'color: #8DCFB5;' 48 | ,'test': 'color: #00FF00;' 49 | } 50 | } 51 | }; 52 | -------------------------------------------------------------------------------- /statics/js/jcrop/css/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/jcrop/css/Jcrop.gif -------------------------------------------------------------------------------- /statics/js/swfupload/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/swfupload/images/cross.png -------------------------------------------------------------------------------- /statics/js/swfupload/images/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/swfupload/images/off.png -------------------------------------------------------------------------------- /statics/js/swfupload/images/swfBnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/swfupload/images/swfBnt.png -------------------------------------------------------------------------------- /statics/js/swfupload/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/swfupload/swfupload.swf -------------------------------------------------------------------------------- /statics/js/swfupload/swfuploadbutton.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/swfupload/swfuploadbutton.swf -------------------------------------------------------------------------------- /statics/js/treeTable/images/toggle-collapse-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/treeTable/images/toggle-collapse-dark.png -------------------------------------------------------------------------------- /statics/js/treeTable/images/toggle-expand-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/treeTable/images/toggle-expand-dark.png -------------------------------------------------------------------------------- /statics/js/treeTable/treeTable.css: -------------------------------------------------------------------------------- 1 | /* jQuery TreeTable Core 2.0 stylesheet 2 | * 3 | * This file contains styles that are used to display the tree table. Each tree 4 | * table is assigned the +treeTable+ class. 5 | * ========================================================================= */ 6 | 7 | /* jquery.treeTable.collapsible 8 | * ------------------------------------------------------------------------- */ 9 | .treeTable tr td .expander { 10 | background-position: left center; 11 | background-repeat: no-repeat; 12 | cursor: pointer; 13 | padding: 0; 14 | zoom: 1; /* IE7 Hack */ 15 | margin-left: -20px; 16 | } 17 | 18 | .treeTable tr.collapsed td .expander { 19 | background-image: url(./images/toggle-expand-dark.png); 20 | } 21 | 22 | .treeTable tr.expanded td .expander { 23 | background-image: url(./images/toggle-collapse-dark.png); 24 | } 25 | 26 | /* jquery.treeTable.sortable 27 | * ------------------------------------------------------------------------- */ 28 | .treeTable tr.selected, .treeTable tr.accept { 29 | background-color: #3875d7; 30 | color: #fff; 31 | } 32 | 33 | .treeTable tr.collapsed.selected td .expander, .treeTable tr.collapsed.accept td .expander { 34 | background-image: url(./images/atoggle-expand-light.png); 35 | } 36 | 37 | .treeTable tr.expanded.selected td .expander, .treeTable tr.expanded.accept td .expander { 38 | background-image: url(./images/toggle-collapse-light.png); 39 | } 40 | 41 | .treeTable .ui-draggable-dragging { 42 | color: #000; 43 | z-index: 1; 44 | } -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/music/music.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 插入音乐 6 | 7 | 8 | 9 | 10 |
11 | 15 |
16 | 17 |
18 |
19 |
20 |
21 | 22 | 31 | 32 | -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/preview/preview.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 |
29 | 30 | 40 | -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/spechars/spechars.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 |
17 |
18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/table/edittip.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 表格删除提示 5 | 6 | 17 | 18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 |
26 |
27 | 32 | 33 | -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/template/template.css: -------------------------------------------------------------------------------- 1 | .wrap{ padding: 5px;font-size: 14px;} 2 | .left{width:425px;float: left;} 3 | .right{width:160px;border: 1px solid #ccc;float: right;padding: 5px;margin-right: 5px;} 4 | .right .pre{height: 332px;overflow-y: auto;} 5 | .right .preitem{border: white 1px solid;margin: 5px 0;padding: 2px 0;} 6 | .right .preitem:hover{background-color: lemonChiffon;cursor: pointer;border: #ccc 1px solid;} 7 | .right .preitem img{display: block;margin: 0 auto;width:100px;} 8 | .clear{clear: both;} 9 | .top{height:26px;line-height: 26px;padding: 5px;} 10 | .bottom{height:320px;width:100%;margin: 0 auto;} 11 | .transparent{ background: url("images/bg.gif") repeat;} 12 | .bottom table tr td{border:1px dashed #ccc;} 13 | #colorPicker{width: 17px;height: 17px;border: 1px solid #CCC;display: inline-block;border-radius: 3px;box-shadow: 2px 2px 5px #D3D6DA;} 14 | .border_style1{padding:2px;border: 1px solid #ccc;border-radius: 5px;box-shadow:2px 2px 5px #d3d6da;} 15 | p{margin: 5px 0} 16 | table{clear:both;margin-bottom:10px;border-collapse:collapse;word-break:break-all;} 17 | li{clear:both} 18 | ol{padding-left:40px; } -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/template/template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 |
13 | 14 |
15 |
16 |
17 |
18 | 19 |
20 |
21 |
22 |
23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /statics/js/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /statics/js/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /statics/js/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /statics/js/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /statics/js/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /statics/js/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /statics/js/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /statics/js/ueditor/third-party/highcharts/modules/heatmap.js: -------------------------------------------------------------------------------- 1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:d dataMax) { 39 | dataMax = value; 40 | } else if (value < dataMin) { 41 | dataMin = value; 42 | } 43 | } 44 | }); 45 | 46 | series.translateColors(dataMin, dataMax); 47 | }, 48 | 49 | getBox: function () {} 50 | 51 | }); 52 | 53 | }(Highcharts)); 54 | -------------------------------------------------------------------------------- /statics/js/ueditor/third-party/highcharts/modules/no-data-to-display.js: -------------------------------------------------------------------------------- 1 | /* 2 | Highcharts JS v3.0.6 (2013-10-04) 3 | Plugin for displaying a message when there is no data visible in chart. 4 | 5 | (c) 2010-2013 Highsoft AS 6 | Author: Øystein Moseng 7 | 8 | License: www.highcharts.com/license 9 | */ 10 | (function(c){function f(){return!!this.points.length}function g(){this.hasData()?this.hideNoData():this.showNoData()}var d=c.seriesTypes,e=c.Chart.prototype,h=c.getOptions(),i=c.extend;i(h.lang,{noData:"No data to display"});h.noData={position:{x:0,y:0,align:"center",verticalAlign:"middle"},attr:{},style:{fontWeight:"bold",fontSize:"12px",color:"#60606a"}};d.pie.prototype.hasData=f;if(d.gauge)d.gauge.prototype.hasData=f;if(d.waterfall)d.waterfall.prototype.hasData=f;c.Series.prototype.hasData=function(){return this.dataMax!== 11 | void 0&&this.dataMin!==void 0};e.showNoData=function(a){var b=this.options,a=a||b.lang.noData,b=b.noData;if(!this.noDataLabel)this.noDataLabel=this.renderer.label(a,0,0,null,null,null,null,null,"no-data").attr(b.attr).css(b.style).add(),this.noDataLabel.align(i(this.noDataLabel.getBBox(),b.position),!1,"plotBox")};e.hideNoData=function(){if(this.noDataLabel)this.noDataLabel=this.noDataLabel.destroy()};e.hasData=function(){for(var a=this.series,b=a.length;b--;)if(a[b].hasData()&&!a[b].options.isInternal)return!0; 12 | return!1};e.callbacks.push(function(a){c.addEvent(a,"load",g);c.addEvent(a,"redraw",g)})})(Highcharts); 13 | -------------------------------------------------------------------------------- /statics/js/ueditor/third-party/video-js/font/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/third-party/video-js/font/vjs.eot -------------------------------------------------------------------------------- /statics/js/ueditor/third-party/video-js/font/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/third-party/video-js/font/vjs.ttf -------------------------------------------------------------------------------- /statics/js/ueditor/third-party/video-js/font/vjs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/third-party/video-js/font/vjs.woff -------------------------------------------------------------------------------- /statics/js/ueditor/third-party/video-js/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/third-party/video-js/video-js.swf -------------------------------------------------------------------------------- /statics/js/ueditor/third-party/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/third-party/webuploader/Uploader.swf -------------------------------------------------------------------------------- /statics/js/ueditor/third-party/webuploader/webuploader.css: -------------------------------------------------------------------------------- 1 | .webuploader-container { 2 | position: relative; 3 | } 4 | .webuploader-element-invisible { 5 | position: absolute !important; 6 | clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ 7 | clip: rect(1px,1px,1px,1px); 8 | } 9 | .webuploader-pick { 10 | position: relative; 11 | display: inline-block; 12 | cursor: pointer; 13 | background: #00b7ee; 14 | padding: 10px 15px; 15 | color: #fff; 16 | text-align: center; 17 | border-radius: 3px; 18 | overflow: hidden; 19 | } 20 | .webuploader-pick-hover { 21 | background: #00a2d4; 22 | } 23 | 24 | .webuploader-pick-disable { 25 | opacity: 0.6; 26 | pointer-events:none; 27 | } 28 | 29 | -------------------------------------------------------------------------------- /statics/js/ueditor/third-party/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/js/ueditor/third-party/zeroclipboard/ZeroClipboard.swf -------------------------------------------------------------------------------- /statics/mui/fonts/mui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/mui/fonts/mui.ttf -------------------------------------------------------------------------------- /statics/simpleboot/css/simplebootadmin.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; 2 | 3 | .input-order{width:30px;} 4 | .wrap { 5 | padding: 20px 20px 70px; 6 | } 7 | .table td {font-size:12px;} 8 | -------------------------------------------------------------------------------- /statics/simpleboot/css/simplebootadminindex-ie.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; 2 | .sidebar { 3 | *left: 0 4 | } 5 | 6 | .sidebar:before { 7 | display: none 8 | } -------------------------------------------------------------------------------- /statics/simpleboot/font-awesome/4.2.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/simpleboot/font-awesome/4.2.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /statics/simpleboot/font-awesome/4.2.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/simpleboot/font-awesome/4.2.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /statics/simpleboot/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/simpleboot/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /statics/simpleboot/font-awesome/4.2.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/simpleboot/font-awesome/4.2.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /statics/simpleboot/themes/bluesky/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/simpleboot/themes/bluesky/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /statics/simpleboot/themes/bluesky/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/simpleboot/themes/bluesky/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /statics/simpleboot/themes/bluesky/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/simpleboot/themes/bluesky/loading.gif -------------------------------------------------------------------------------- /statics/simpleboot/themes/bluesky/loadingbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/simpleboot/themes/bluesky/loadingbg.png -------------------------------------------------------------------------------- /statics/simpleboot/themes/flat/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/simpleboot/themes/flat/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /statics/simpleboot/themes/flat/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/simpleboot/themes/flat/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /statics/simpleboot/themes/flat/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/simpleboot/themes/flat/loading.gif -------------------------------------------------------------------------------- /statics/simpleboot/themes/flat/loadingbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/statics/simpleboot/themes/flat/loadingbg.png -------------------------------------------------------------------------------- /tpl/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order Allow,Deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /tpl/simplebootx/Liudu/images/exemp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Liudu/images/exemp.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/css/slippry/assets/img/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/css/slippry/assets/img/arrows.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/css/slippry/assets/img/arrows.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /tpl/simplebootx/Public/css/slippry/assets/img/sy-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/css/slippry/assets/img/sy-loader.gif -------------------------------------------------------------------------------- /tpl/simplebootx/Public/footer.html: -------------------------------------------------------------------------------- 1 |


2 | 4 |
5 | {:hook('footer')} 6 | 20 |
21 |
22 | {$site_tongji} 23 | -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/default_tupian1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/default_tupian1.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/default_tupian4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/default_tupian4.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/demo/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/demo/1.jpg -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/demo/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/demo/2.jpg -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/demo/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/demo/3.jpg -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/favicon.ico -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/headicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/headicon.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/headicon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/headicon_128.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/headicon_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/headicon_30.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/headicon_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/headicon_40.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/headicon_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/headicon_50.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/logo.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/images/paymethod/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/images/paymethod/paypal.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/js/slippry.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/js/slippry.min.map -------------------------------------------------------------------------------- /tpl/simplebootx/Public/simpleboot/font-awesome/4.2.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/simpleboot/font-awesome/4.2.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /tpl/simplebootx/Public/simpleboot/font-awesome/4.2.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/simpleboot/font-awesome/4.2.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /tpl/simplebootx/Public/simpleboot/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/simpleboot/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /tpl/simplebootx/Public/simpleboot/font-awesome/4.2.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/simpleboot/font-awesome/4.2.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /tpl/simplebootx/Public/simpleboot/themes/cmf/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/simpleboot/themes/cmf/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/simpleboot/themes/cmf/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/simpleboot/themes/cmf/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/simpleboot/themes/cmf/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/simpleboot/themes/cmf/loading.gif -------------------------------------------------------------------------------- /tpl/simplebootx/Public/simpleboot/themes/cmf/loadingbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Public/simpleboot/themes/cmf/loadingbg.png -------------------------------------------------------------------------------- /tpl/simplebootx/Public/usernav.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpl/simplebootx/Server/images/paymethod/aliguarantee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Server/images/paymethod/aliguarantee.png -------------------------------------------------------------------------------- /tpl/simplebootx/Server/images/paymethod/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl/simplebootx/Server/images/paymethod/paypal.png -------------------------------------------------------------------------------- /tpl/simplebootx/User/active.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {$site_name} 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 |
16 |
17 | 18 |
19 |

重发激活邮件?现在就重发吧!

20 |
21 |
22 |
23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /tpl/simplebootx/config.html: -------------------------------------------------------------------------------- 1 | 2 | $portal_index_lastnews=2; 3 | $portal_hot_articles="1,2"; 4 | $portal_last_post="1,2"; 5 | 6 | $tmpl=sp_get_theme_path(); 7 | 8 | $default_home_slides=array( 9 | array( 10 | "slide_name"=>"世界那么大,我要去看看", 11 | "slide_pic"=>$tmpl."Public/images/demo/1.jpg", 12 | "slide_url"=>"", 13 | ), 14 | array( 15 | "slide_name"=>"不要再被局域网挡住,看不见世界", 16 | "slide_pic"=>$tmpl."Public/images/demo/2.jpg", 17 | "slide_url"=>"", 18 | ), 19 | array( 20 | "slide_name"=>"我们是世界的,世界是我们的", 21 | "slide_pic"=>$tmpl."Public/images/demo/3.jpg", 22 | "slide_url"=>"", 23 | ), 24 | ); 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /tpl/simplebootx/function.html: -------------------------------------------------------------------------------- 1 | 2 | /*这里只是一个模板函数库演示,详细请查看http://www.thinkcmf.com/document/article/id/398.html*/ 3 | /*可以加多个方法哟!*/ 4 | function _sp_helloworld(){ 5 | echo "hello ThinkCMF!"; 6 | } 7 | 8 | function _sp_helloworld2(){ 9 | echo "hello ThinkCMF2!"; 10 | } 11 | 12 | 13 | function _sp_helloworld3(){ 14 | echo "hello ThinkCMF3!"; 15 | } 16 | 17 | -------------------------------------------------------------------------------- /tpl/simplebootx/hooks.html: -------------------------------------------------------------------------------- 1 | body_start,footer,footer_end,sider,comment -------------------------------------------------------------------------------- /tpl_admin/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Order Allow,Deny 3 | Deny from all 4 | 5 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/Ad/add.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 9 |
10 |
11 |
12 |
13 | 14 |
15 | 16 | * 17 |
18 |
19 |
20 | 21 |
22 | 23 |
24 |
25 |
26 |
27 | 28 | 返回 29 |
30 |
31 |
32 |
33 | 34 | 35 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/Ad/edit.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 9 |
10 |
11 |
12 |
13 | 14 |
15 | * 16 | 17 |
18 |
19 |
20 | 21 |
22 | 23 |
24 |
25 |
26 |
27 | 28 | 返回 29 |
30 |
31 |
32 |
33 | 34 | 35 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/Index/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/Menu/dev_import_menu.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
6 |

菜单已同步!

7 |
8 |
    9 |
  • 菜单已同步!
  • 10 |
11 | 12 |
13 |
14 |
15 | 16 | 22 | 23 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/Menu/export_menu.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
6 |

菜单备份成功!

7 |
8 |
    9 |
  • 菜单备份成功!
  • 10 |
11 | 12 |
13 |
14 |
15 | 16 | 22 | 23 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/Menu/getactions.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
6 |

应用{$app}菜单导入成功!

7 |
8 |
    9 | 10 | 11 |
  • {$vo}
  • 12 |
    13 | 14 |
  • 应用{$app}没有新菜单导入!
  • 15 |
    16 |
17 | 18 | 23 |
24 | 下一个应用 25 | 返回 26 |
27 | 28 |
全部导入成功!
29 | 30 |
31 |
32 |
33 |
34 | 35 | 36 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/Menu/import_menu.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
6 |

7 | 8 | 菜单导入成功! 9 | 10 | 菜单导入失败! 11 | 12 |

13 |
14 |
    15 | 16 | 菜单导入成功! 17 | 18 | 19 |
  • {$vo}导入失败!
  • 20 |
    21 |
    22 |
23 | 24 |
25 |
26 |
27 | 28 | 29 | 30 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/Navcat/add.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 9 |
10 |
11 |
12 |
13 | 14 |
15 | 16 | * 17 |
18 |
19 |
20 | 21 |
22 | 23 |
24 |
25 |
26 | 27 |
28 | 29 |
30 |
31 |
32 |
33 | 34 | 返回 35 |
36 |
37 |
38 |
39 | 40 | 41 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/Navcat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 30 | 31 | 32 |
ID名称描述主菜单操作
{$vo.navcid}{$vo.name}{$vo.remark}$mainmenu=$vo['active']?"是":"否"; {$mainmenu} 27 | 修改| 28 | 删除 29 |
33 |
34 |
35 | 36 | 37 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/Rbac/member.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 31 | 32 | 33 | 34 |
ID用户名昵称E-mail角色名称操作
{$vo.id}{$vo.user_login}{$vo.user_nicename}{$vo.user_email}{$vo.name} 29 | 删除 30 |
35 |
36 |
37 |
38 |
39 |
40 | 41 | 42 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/Setting/clearcache.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
6 |

缓存已更新!

7 |
8 |
    9 |
  • 缓存已更新!
  • 10 |
11 | 12 |
13 |
14 |
15 | 16 | 26 | 27 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/Slidecat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 38 | 39 | 40 | 41 |
ID分类名称分类标识描述操作
0默认分类默认分类不允许修改
{$vo.cid}{$vo.cat_name}{$vo.cat_idname}{$vo.cat_remark} 35 | 修改| 36 | 删除 37 |
42 |
43 |
44 | 45 | 46 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
6 |

{$msgTitle}

7 |
8 |
    9 |
  • {$error}
  • 10 |
11 | 12 |
13 |
14 |
15 | 16 | 21 | 22 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Admin/success.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
6 |

{$msgTitle}

7 |
8 |
    9 |
  • {$message}
  • 10 |
11 | 12 |
13 |
14 |
15 | 16 | 21 | 22 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Api/Guestbookadmin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 8 |
9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 34 | 35 | 36 | 37 |
ID姓名邮箱留言标题留言内容留言时间操作
{$vo.id}{$vo.full_name}{$vo.email}{$vo.title}{$vo.msg}{$vo.createtime} 32 | 删除 33 |
38 | 39 |
40 |
41 |
42 | 43 | 44 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Portal/AdminPost/move.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
6 |
7 | 8 | 9 | 10 | 11 | 16 | 17 | 18 | 21 | 22 | 23 |
上级: 12 | 15 |
19 | 20 |
24 |
25 |
26 |
27 | 28 | 29 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Portal/AdminTerm/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 9 |
10 |
11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | {$taxonomys} 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 |
排序ID分类名称分类类型访问操作
排序ID分类名称分类类型访问操作
38 |
39 | 40 |
41 |
42 |
43 | 44 | 45 | -------------------------------------------------------------------------------- /tpl_admin/simpleboot/Server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl_admin/simpleboot/Server/index.html -------------------------------------------------------------------------------- /tpl_admin/simpleboot/assets/images/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl_admin/simpleboot/assets/images/btn.png -------------------------------------------------------------------------------- /tpl_admin/simpleboot/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl_admin/simpleboot/assets/images/favicon.ico -------------------------------------------------------------------------------- /tpl_admin/simpleboot/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl_admin/simpleboot/assets/images/loading.gif -------------------------------------------------------------------------------- /tpl_admin/simpleboot/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl_admin/simpleboot/assets/images/logo.png -------------------------------------------------------------------------------- /tpl_admin/simpleboot/assets/images/tv-collapsable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl_admin/simpleboot/assets/images/tv-collapsable.gif -------------------------------------------------------------------------------- /tpl_admin/simpleboot/assets/images/tv-expandable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl_admin/simpleboot/assets/images/tv-expandable.gif -------------------------------------------------------------------------------- /tpl_admin/simpleboot/assets/images/upload_del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl_admin/simpleboot/assets/images/upload_del.png -------------------------------------------------------------------------------- /tpl_admin/simpleboot/assets/images/upload_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stclair2201/GoOut-Panel/de82a9327da9ca821bb4035ff99261461d79bae2/tpl_admin/simpleboot/assets/images/upload_pic.jpg --------------------------------------------------------------------------------