├── AUTHORS ├── LICENSE ├── README.md ├── conf ├── application │ ├── acloud.php │ ├── default.php │ ├── install.php │ ├── phpwind.php │ ├── pwadmin.php │ ├── windid.php │ ├── windidadmin.php │ ├── windidclient.php │ └── windidnotify.php ├── baseconfig.php ├── cacheService.php ├── compiler.php ├── components.php ├── directory.php ├── entrance.php ├── hooks.php ├── md5sum ├── optimization.php ├── publish.php ├── pwcomponents.php └── windid │ ├── components.php │ ├── database.php │ ├── directory.php │ └── directory.sample.php ├── data └── index.html ├── src ├── aCloud │ ├── aCloud.php │ ├── aCloudConfig.php │ ├── api │ │ ├── ACloudApiRouter.php │ │ ├── common │ │ │ └── v1 │ │ │ │ ├── ACloudApiCommonAd.php │ │ │ │ ├── ACloudApiCommonAttach.php │ │ │ │ ├── ACloudApiCommonForum.php │ │ │ │ ├── ACloudApiCommonFriend.php │ │ │ │ ├── ACloudApiCommonGeneralApi.php │ │ │ │ ├── ACloudApiCommonMessage.php │ │ │ │ ├── ACloudApiCommonPermissions.php │ │ │ │ ├── ACloudApiCommonPost.php │ │ │ │ ├── ACloudApiCommonSearch.php │ │ │ │ ├── ACloudApiCommonSite.php │ │ │ │ ├── ACloudApiCommonThread.php │ │ │ │ ├── ACloudApiCommonUser.php │ │ │ │ └── AcloudApiCommonUtility.php │ │ └── customized │ │ │ └── v1 │ │ │ ├── ACloudApiCustomizedCredit.php │ │ │ ├── ACloudApiCustomizedForum.php │ │ │ ├── ACloudApiCustomizedFriend.php │ │ │ ├── ACloudApiCustomizedMessage.php │ │ │ ├── ACloudApiCustomizedPost.php │ │ │ ├── ACloudApiCustomizedThread.php │ │ │ └── ACloudApiCustomizedUser.php │ ├── app │ │ ├── ACloudAppRouter.php │ │ └── search │ │ │ ├── ACloudAppSearchDefine.php │ │ │ └── ACloudAppSearchGuiding.php │ ├── index.php │ ├── system │ │ ├── ACloudSysRouter.php │ │ ├── bench │ │ │ └── service │ │ │ │ └── ACloudSysBenchServiceAdministor.php │ │ ├── config │ │ │ ├── dao │ │ │ │ ├── ACloudSysConfigDaoApis.php │ │ │ │ ├── ACloudSysConfigDaoAppConfigs.php │ │ │ │ ├── ACloudSysConfigDaoApps.php │ │ │ │ ├── ACloudSysConfigDaoCreatetable.php │ │ │ │ ├── ACloudSysConfigDaoExtras.php │ │ │ │ ├── ACloudSysConfigDaoGeneraldata.php │ │ │ │ ├── ACloudSysConfigDaoKeys.php │ │ │ │ ├── ACloudSysConfigDaoSqlLog.php │ │ │ │ └── ACloudSysConfigDaoTableSettings.php │ │ │ └── service │ │ │ │ ├── ACloudSysConfigServiceApis.php │ │ │ │ ├── ACloudSysConfigServiceAppConfigs.php │ │ │ │ ├── ACloudSysConfigServiceApps.php │ │ │ │ ├── ACloudSysConfigServiceExtras.php │ │ │ │ ├── ACloudSysConfigServiceGeneraldata.php │ │ │ │ ├── ACloudSysConfigServiceKeys.php │ │ │ │ ├── ACloudSysConfigServiceReset.php │ │ │ │ ├── ACloudSysConfigServiceSqlLog.php │ │ │ │ └── ACloudSysConfigServiceTableSettings.php │ │ ├── core │ │ │ ├── ACloudSysCoreAes.php │ │ │ ├── ACloudSysCoreCharset.php │ │ │ ├── ACloudSysCoreCommon.php │ │ │ ├── ACloudSysCoreDao.php │ │ │ ├── ACloudSysCoreDefine.php │ │ │ ├── ACloudSysCoreFormat.php │ │ │ ├── ACloudSysCoreGdo.php │ │ │ ├── ACloudSysCoreHttp.php │ │ │ ├── ACloudSysCoreHttpclient.php │ │ │ ├── ACloudSysCoreJson.php │ │ │ ├── ACloudSysCoreOauth.php │ │ │ ├── ACloudSysCoreResponse.php │ │ │ ├── ACloudSysCoreS.php │ │ │ ├── ACloudSysCoreSqlbuilder.php │ │ │ ├── ACloudSysCoreVerify.php │ │ │ ├── ACloudSysCoreXml.php │ │ │ ├── encode │ │ │ │ ├── big5-gb.table │ │ │ │ ├── encode.table │ │ │ │ └── gb-big5.table │ │ │ └── proxy │ │ │ │ └── ACloudSysCoreProxyApi.php │ │ ├── dataflow │ │ │ └── service │ │ │ │ ├── ACloudSysDataflowServiceAggregate.php │ │ │ │ └── ACloudSysDataflowServiceCrawler.php │ │ ├── open │ │ │ └── service │ │ │ │ ├── ACloudSysOpenServiceApply.php │ │ │ │ ├── ACloudSysOpenServiceEnv.php │ │ │ │ └── ACloudSysOpenServiceInit.php │ │ └── verify │ │ │ └── service │ │ │ ├── ACloudSysVerifyServiceControl.php │ │ │ └── ACloudSysVerifyServiceMD5.php │ └── version │ │ └── phpwind │ │ ├── ACloudPhpwindBootstrap.php │ │ ├── common │ │ ├── ACloudVerCommonAd.php │ │ ├── ACloudVerCommonApplication.php │ │ ├── ACloudVerCommonAttach.php │ │ ├── ACloudVerCommonBase.php │ │ ├── ACloudVerCommonColony.php │ │ ├── ACloudVerCommonDiary.php │ │ ├── ACloudVerCommonFactory.php │ │ ├── ACloudVerCommonForum.php │ │ ├── ACloudVerCommonFriend.php │ │ ├── ACloudVerCommonMessage.php │ │ ├── ACloudVerCommonPermissions.php │ │ ├── ACloudVerCommonPost.php │ │ ├── ACloudVerCommonSearch.php │ │ ├── ACloudVerCommonSite.php │ │ ├── ACloudVerCommonThread.php │ │ ├── ACloudVerCommonUser.php │ │ └── AcloudVerCommonUtility.php │ │ ├── config │ │ └── ACloudVerConfigFilter.php │ │ ├── core │ │ ├── ACloudVerConfigDao.php │ │ ├── ACloudVerCoreApp.php │ │ ├── ACloudVerCoreDao.php │ │ ├── ACloudVerCoreReset.php │ │ └── ACloudVerCoreSite.php │ │ ├── customized │ │ ├── ACloudVerCustomizedBase.php │ │ ├── ACloudVerCustomizedCredit.php │ │ ├── ACloudVerCustomizedFactory.php │ │ ├── ACloudVerCustomizedForum.php │ │ ├── ACloudVerCustomizedFriend.php │ │ ├── ACloudVerCustomizedMessage.php │ │ ├── ACloudVerCustomizedPost.php │ │ ├── ACloudVerCustomizedThread.php │ │ └── ACloudVerCustomizedUser.php │ │ └── dataflow │ │ └── ACloudVerDataFlowAggregate.php ├── applications │ ├── admin │ │ ├── conf │ │ │ ├── mainmenu.php │ │ │ └── openplatformurl.php │ │ ├── controller │ │ │ ├── AuthController.php │ │ │ ├── CustomController.php │ │ │ ├── FindController.php │ │ │ ├── FounderController.php │ │ │ ├── HomeController.php │ │ │ ├── IndexController.php │ │ │ ├── MessageController.php │ │ │ ├── RoleController.php │ │ │ ├── SafeController.php │ │ │ ├── StorageController.php │ │ │ └── filter │ │ │ │ └── AdminDefaultFilter.php │ │ ├── library │ │ │ ├── AdminBaseController.php │ │ │ └── AdminBaseDao.php │ │ └── service │ │ │ ├── AdminAuth.php │ │ │ ├── AdminConfig.php │ │ │ ├── AdminCustom.php │ │ │ ├── AdminRole.php │ │ │ ├── bo │ │ │ ├── AdminDefaultUserBo.php │ │ │ ├── AdminUserBo.php │ │ │ └── IAdminUserBo.php │ │ │ ├── dao │ │ │ ├── AdminAuthDao.php │ │ │ ├── AdminConfigDao.php │ │ │ ├── AdminCustomDao.php │ │ │ └── AdminRoleDao.php │ │ │ └── srv │ │ │ ├── AdminAuthService.php │ │ │ ├── AdminFounderService.php │ │ │ ├── AdminLogService.php │ │ │ ├── AdminManagerService.php │ │ │ ├── AdminMenuService.php │ │ │ ├── AdminSafeService.php │ │ │ ├── AdminSearchLangParserService.php │ │ │ ├── AdminSearchService.php │ │ │ ├── AdminUserService.php │ │ │ ├── IAdminUserDependenceService.php │ │ │ └── helper │ │ │ └── AdminMenuHelper.php │ ├── announce │ │ ├── admin │ │ │ └── AnnounceController.php │ │ ├── conf │ │ │ └── announcemenu.php │ │ └── controller │ │ │ └── IndexController.php │ ├── appcenter │ │ ├── admin │ │ │ ├── AppController.php │ │ │ ├── DevelopController.php │ │ │ ├── FixupController.php │ │ │ ├── ServerController.php │ │ │ ├── StyleController.php │ │ │ └── UpgradeController.php │ │ ├── conf │ │ │ ├── Manifest.xml │ │ │ ├── appcentermenu.php │ │ │ ├── cloudplatformurl.php │ │ │ ├── install.php │ │ │ └── table.sql │ │ ├── controller │ │ │ ├── AppsController.php │ │ │ └── IndexController.php │ │ └── service │ │ │ ├── PwApplication.php │ │ │ ├── PwApplicationLog.php │ │ │ ├── PwStyle.php │ │ │ ├── dao │ │ │ ├── PwApplicationDao.php │ │ │ ├── PwApplicationLogDao.php │ │ │ └── PwStyleDao.php │ │ │ ├── data │ │ │ ├── PwDbUpdate.php │ │ │ ├── hook.admin │ │ │ ├── servicehook │ │ │ ├── simplehook │ │ │ └── source │ │ │ │ ├── Manifest.xml │ │ │ │ ├── admin │ │ │ │ └── ManageController.php │ │ │ │ ├── conf │ │ │ │ └── data.sql │ │ │ │ ├── controller │ │ │ │ └── IndexController.php │ │ │ │ ├── res │ │ │ │ └── images │ │ │ │ │ ├── face_big.jpg │ │ │ │ │ └── logo.jpg │ │ │ │ ├── service │ │ │ │ ├── dao │ │ │ │ │ └── defaultdao │ │ │ │ ├── defaultds │ │ │ │ └── dm │ │ │ │ │ └── defaultdm │ │ │ │ └── template │ │ │ │ ├── admin │ │ │ │ └── manage_run.htm │ │ │ │ └── index_run.htm │ │ │ ├── dm │ │ │ ├── PwApplicationDm.php │ │ │ └── PwStyleDm.php │ │ │ ├── sql.sql │ │ │ └── srv │ │ │ ├── PwApplicationService.php │ │ │ ├── PwCssCompile.php │ │ │ ├── PwDebugApplication.php │ │ │ ├── PwGenerateApplication.php │ │ │ ├── PwGenerateStyle.php │ │ │ ├── PwInstallApplication.php │ │ │ ├── PwModuleService.php │ │ │ ├── PwPatchUpdate.php │ │ │ ├── PwStyleInit.php │ │ │ ├── PwStyleService.php │ │ │ ├── PwSystemInstallation.php │ │ │ ├── PwUninstallApplication.php │ │ │ ├── PwUpgradeApplication.php │ │ │ ├── do │ │ │ ├── PwAppListInstall.php │ │ │ ├── PwInstall.php │ │ │ ├── PwPatchInstall.php │ │ │ └── PwStyleInstall.php │ │ │ ├── helper │ │ │ ├── PwAppUpload.php │ │ │ ├── PwApplicationHelper.php │ │ │ ├── PwApplicationUpload.php │ │ │ ├── PwExtractZip.php │ │ │ ├── PwFtpSave.php │ │ │ ├── PwManifest.php │ │ │ ├── PwSftpSave.php │ │ │ └── PwSystemHelper.php │ │ │ └── iPwInstall.php │ ├── backup │ │ ├── admin │ │ │ └── BackupController.php │ │ └── conf │ │ │ └── backupmenu.php │ ├── bbs │ │ ├── admin │ │ │ ├── ArticleController.php │ │ │ ├── CacheController.php │ │ │ ├── ConfigbbsController.php │ │ │ ├── ContentcheckController.php │ │ │ ├── RecycleController.php │ │ │ ├── SetbbsController.php │ │ │ └── SetforumController.php │ │ ├── conf │ │ │ └── bbsmenu.php │ │ └── controller │ │ │ ├── AlipayController.php │ │ │ ├── AttachController.php │ │ │ ├── BuythreadController.php │ │ │ ├── CateController.php │ │ │ ├── DraftController.php │ │ │ ├── ForumController.php │ │ │ ├── ForumlistController.php │ │ │ ├── IndexController.php │ │ │ ├── ManageController.php │ │ │ ├── MasingleController.php │ │ │ ├── Pay99billController.php │ │ │ ├── PaypalController.php │ │ │ ├── PostController.php │ │ │ ├── ReadController.php │ │ │ ├── RemindController.php │ │ │ ├── TenpayController.php │ │ │ ├── ThreadController.php │ │ │ ├── UploadController.php │ │ │ ├── UserController.php │ │ │ └── filter │ │ │ └── PwGlobalFilter.php │ ├── config │ │ ├── admin │ │ │ ├── AttachmentController.php │ │ │ ├── ConfigController.php │ │ │ ├── EditorController.php │ │ │ ├── EmailController.php │ │ │ ├── MessageController.php │ │ │ ├── MobileController.php │ │ │ ├── NoticeController.php │ │ │ ├── PayController.php │ │ │ ├── PunchController.php │ │ │ ├── RegistController.php │ │ │ ├── SecurityController.php │ │ │ ├── StorageController.php │ │ │ └── WatermarkController.php │ │ └── conf │ │ │ └── configmenu.php │ ├── credit │ │ ├── admin │ │ │ └── CreditController.php │ │ └── conf │ │ │ └── creditmenu.php │ ├── cron │ │ ├── admin │ │ │ └── CronController.php │ │ ├── conf │ │ │ └── cronmenu.php │ │ └── controller │ │ │ └── IndexController.php │ ├── design │ │ ├── admin │ │ │ ├── AdminController.php │ │ │ ├── ComponentController.php │ │ │ ├── DataController.php │ │ │ ├── DesignBaseController.php │ │ │ ├── ModelController.php │ │ │ ├── ModuleController.php │ │ │ ├── PageController.php │ │ │ ├── PermissionsController.php │ │ │ ├── PortalController.php │ │ │ ├── PropertyController.php │ │ │ ├── PushController.php │ │ │ └── TemplateController.php │ │ └── controller │ │ │ ├── ApiController.php │ │ │ ├── DataController.php │ │ │ ├── DesignBaseController.php │ │ │ ├── DesignController.php │ │ │ ├── ExportController.php │ │ │ ├── ImageController.php │ │ │ ├── ImportController.php │ │ │ ├── IndexController.php │ │ │ ├── PortalController.php │ │ │ ├── PropertyController.php │ │ │ ├── PushController.php │ │ │ ├── StructureController.php │ │ │ ├── StyleController.php │ │ │ ├── TemplateController.php │ │ │ └── TitleController.php │ ├── emotion │ │ ├── admin │ │ │ └── EmotionController.php │ │ ├── conf │ │ │ └── emotionmenu.php │ │ └── controller │ │ │ └── IndexController.php │ ├── guide │ │ └── controller │ │ │ ├── AttentionController.php │ │ │ └── InterestController.php │ ├── hook │ │ └── admin │ │ │ ├── InjectController.php │ │ │ └── ManageController.php │ ├── install │ │ ├── controller │ │ │ ├── IndexController.php │ │ │ ├── MessageController.php │ │ │ └── UpgradeController.php │ │ └── lang │ │ │ ├── demo_data.sql │ │ │ ├── demo_threads.php │ │ │ ├── pw_acloud.sql │ │ │ ├── pw_common_config.sql │ │ │ ├── pw_design.sql │ │ │ ├── pw_user_groups.sql │ │ │ ├── pw_windid_area.sql │ │ │ ├── pw_windid_config.sql │ │ │ ├── pw_windid_school.sql │ │ │ ├── wind_data.sql │ │ │ └── wind_structure.sql │ ├── like │ │ └── controller │ │ │ ├── LikeController.php │ │ │ ├── MylikeController.php │ │ │ └── SourceController.php │ ├── link │ │ ├── admin │ │ │ └── LinkController.php │ │ ├── conf │ │ │ └── linkmenu.php │ │ └── controller │ │ │ └── IndexController.php │ ├── log │ │ └── admin │ │ │ ├── AdminlogController.php │ │ │ ├── LoginlogController.php │ │ │ └── ManageController.php │ ├── manage │ │ └── controller │ │ │ ├── BaseManageController.php │ │ │ ├── ContentController.php │ │ │ ├── ManageLogController.php │ │ │ ├── RecycleController.php │ │ │ ├── ReportController.php │ │ │ └── UserController.php │ ├── medal │ │ ├── admin │ │ │ └── MedalController.php │ │ ├── conf │ │ │ └── medalmenu.php │ │ └── controller │ │ │ └── IndexController.php │ ├── message │ │ ├── admin │ │ │ └── ManageController.php │ │ ├── conf │ │ │ └── messagemenu.php │ │ └── controller │ │ │ ├── MessageController.php │ │ │ └── NoticeController.php │ ├── misc │ │ └── controller │ │ │ └── WebDataController.php │ ├── my │ │ └── controller │ │ │ ├── ArticleController.php │ │ │ ├── FansController.php │ │ │ ├── FollowController.php │ │ │ ├── FreshController.php │ │ │ ├── FriendController.php │ │ │ ├── IndexController.php │ │ │ ├── InviteController.php │ │ │ └── VisitorController.php │ ├── nav │ │ ├── admin │ │ │ └── NavController.php │ │ └── conf │ │ │ └── navmenu.php │ ├── profile │ │ ├── conf │ │ │ └── profilemenu.php │ │ ├── controller │ │ │ ├── AvatarController.php │ │ │ ├── BaseProfileController.php │ │ │ ├── CreditController.php │ │ │ ├── EducationController.php │ │ │ ├── ExtendsController.php │ │ │ ├── IndexController.php │ │ │ ├── PasswordController.php │ │ │ ├── RightController.php │ │ │ ├── SecretController.php │ │ │ ├── TagController.php │ │ │ └── WorkController.php │ │ └── service │ │ │ ├── PwProfileExtendsDoBase.php │ │ │ ├── PwUserProfileExtends.php │ │ │ └── PwUserProfileMenu.php │ ├── pwadmin │ │ ├── HomeController.php │ │ ├── conf │ │ │ └── mainmenu.php │ │ └── service │ │ │ └── srv │ │ │ ├── do │ │ │ └── AdminUserDependenceService.php │ │ │ └── filter │ │ │ └── PwDebugFilter.php │ ├── report │ │ ├── admin │ │ │ └── ManageController.php │ │ ├── conf │ │ │ └── reportmenu.php │ │ └── controller │ │ │ └── IndexController.php │ ├── rewrite │ │ ├── admin │ │ │ ├── DomainController.php │ │ │ └── RewriteController.php │ │ └── conf │ │ │ ├── domain.php │ │ │ ├── entrance.php │ │ │ ├── rewrite.php │ │ │ └── rewritemenu.php │ ├── search │ │ └── controller │ │ │ ├── SController.php │ │ │ └── SearchController.php │ ├── seo │ │ ├── admin │ │ │ ├── AdminBaseSeoController.php │ │ │ └── ManageController.php │ │ ├── conf │ │ │ ├── seoExtends.php │ │ │ └── seomenu.php │ │ └── service │ │ │ └── PwSeoExtends.php │ ├── space │ │ └── controller │ │ │ ├── BanController.php │ │ │ ├── CardController.php │ │ │ ├── FansController.php │ │ │ ├── FollowsController.php │ │ │ ├── IndexController.php │ │ │ ├── MyspaceController.php │ │ │ ├── ProfileController.php │ │ │ ├── PunchController.php │ │ │ ├── SpaceBaseController.php │ │ │ └── ThreadController.php │ ├── special │ │ └── controller │ │ │ └── IndexController.php │ ├── tag │ │ ├── admin │ │ │ └── ManageController.php │ │ ├── conf │ │ │ └── tagmenu.php │ │ └── controller │ │ │ └── IndexController.php │ ├── task │ │ ├── admin │ │ │ ├── ManageController.php │ │ │ ├── TaskConditionBbsController.php │ │ │ ├── TaskConditionMemberController.php │ │ │ └── TaskRewardController.php │ │ ├── conf │ │ │ ├── taskExtends.php │ │ │ └── taskmenu.php │ │ ├── controller │ │ │ └── IndexController.php │ │ └── service │ │ │ └── PwTaskExtends.php │ ├── u │ │ ├── admin │ │ │ ├── CheckController.php │ │ │ ├── ForbiddenController.php │ │ │ ├── GroupsController.php │ │ │ ├── ManageController.php │ │ │ ├── TagController.php │ │ │ └── UpgradeController.php │ │ ├── conf │ │ │ ├── punchmenu.php │ │ │ ├── registerguide.php │ │ │ └── umenu.php │ │ ├── controller │ │ │ ├── FindPwdController.php │ │ │ ├── IndexController.php │ │ │ ├── LoginController.php │ │ │ ├── MobileController.php │ │ │ ├── RegisterController.php │ │ │ ├── UErrorController.php │ │ │ └── filter │ │ │ │ └── UserRegisterFilter.php │ │ └── service │ │ │ ├── PwUserRegisterGuideService.php │ │ │ └── helper │ │ │ └── PwUserHelper.php │ ├── verify │ │ ├── admin │ │ │ └── VerifyController.php │ │ ├── conf │ │ │ └── verifymenu.php │ │ └── controller │ │ │ └── IndexController.php │ ├── vote │ │ ├── admin │ │ │ └── ManageController.php │ │ ├── conf │ │ │ └── votemenu.php │ │ └── controller │ │ │ ├── HotController.php │ │ │ ├── IndexController.php │ │ │ ├── MyController.php │ │ │ ├── TaController.php │ │ │ └── VoteController.php │ ├── windidclient │ │ ├── admin │ │ │ ├── AreadataController.php │ │ │ ├── ClientController.php │ │ │ ├── NotifyController.php │ │ │ ├── SchooldataController.php │ │ │ └── WindidController.php │ │ └── controller │ │ │ └── IndexController.php │ ├── windidnotify │ │ ├── controller │ │ │ └── IndexController.php │ │ └── service │ │ │ └── PwWindidInform.php │ ├── windidserver │ │ ├── api │ │ │ └── controller │ │ │ │ ├── AppController.php │ │ │ │ ├── AreaController.php │ │ │ │ ├── AvatarController.php │ │ │ │ ├── ConfigController.php │ │ │ │ ├── IndexController.php │ │ │ │ ├── MessageController.php │ │ │ │ ├── NotifyController.php │ │ │ │ ├── OpenBaseController.php │ │ │ │ ├── SchoolController.php │ │ │ │ └── UserController.php │ │ ├── misc │ │ │ └── controller │ │ │ │ └── WebDataController.php │ │ ├── queue │ │ │ └── controller │ │ │ │ └── IndexController.php │ │ ├── windid │ │ │ ├── admin │ │ │ │ ├── AreadataController.php │ │ │ │ ├── ClientController.php │ │ │ │ ├── CreditController.php │ │ │ │ ├── MessagesController.php │ │ │ │ ├── NotifyController.php │ │ │ │ ├── RegistController.php │ │ │ │ ├── SchooldataController.php │ │ │ │ ├── SiteController.php │ │ │ │ ├── StorageController.php │ │ │ │ ├── UserController.php │ │ │ │ └── WindidBaseController.php │ │ │ └── controller │ │ │ │ └── IndexController.php │ │ └── windidadmin │ │ │ ├── HomeController.php │ │ │ ├── conf │ │ │ └── mainmenu.php │ │ │ └── service │ │ │ └── srv │ │ │ └── do │ │ │ └── AdminUserDependenceService.php │ └── word │ │ ├── admin │ │ └── ManageController.php │ │ └── conf │ │ └── wordmenu.php ├── bootstrap │ ├── acloudBoot.php │ ├── adminBoot.php │ ├── bootstrap.php │ ├── installBoot.php │ ├── phpwindBoot.php │ ├── pwadminBoot.php │ ├── windidBoot.php │ ├── windidadminBoot.php │ ├── windidclientBoot.php │ └── windidnotifyBoot.php ├── extensions │ └── demo │ │ ├── Manifest.xml │ │ ├── admin │ │ └── ManageController.php │ │ ├── conf │ │ ├── controller │ │ └── IndexController.php │ │ ├── readme │ │ ├── resource │ │ ├── editorApp.js │ │ ├── images │ │ │ ├── icon.png │ │ │ └── logo.jpg │ │ └── test.js │ │ ├── service │ │ └── srv │ │ │ ├── AppDemo_Admin_MenuDo.php │ │ │ └── AppDemo_PwEditor_AppDo.php │ │ └── template │ │ ├── admin │ │ └── manage_run.htm │ │ └── index_run.htm ├── hooks │ ├── PwClearUser │ │ ├── PwClearDoFresh.php │ │ ├── PwClearDoMessage.php │ │ ├── PwClearDoPost.php │ │ └── PwClearDoTopic.php │ ├── PwDeleteForum │ │ └── PwDeleteForumDoDeleTeTopic.php │ ├── PwDeleteFresh │ │ ├── PwDeleteFreshDoReplyDelete.php │ │ ├── PwDeleteFreshDoTopicDelete.php │ │ └── PwDeleteFreshDoWeiboDelete.php │ ├── PwDeleteReply │ │ ├── PwDeleteReplyDoAttachDelete.php │ │ ├── PwDeleteReplyDoDirectDelete.php │ │ ├── PwDeleteReplyDoForumUpdate.php │ │ ├── PwDeleteReplyDoFreshDelete.php │ │ ├── PwDeleteReplyDoPostUpdate.php │ │ ├── PwDeleteReplyDoToppedDelete.php │ │ ├── PwDeleteReplyDoUserUpdate.php │ │ └── PwDeleteReplyDoVirtualDelete.php │ ├── PwDeleteTopic │ │ ├── PwDeleteArticleDoAttachDelete.php │ │ ├── PwDeleteArticleDoForumUpdate.php │ │ ├── PwDeleteTopicDoDigestDelete.php │ │ ├── PwDeleteTopicDoDirectDelete.php │ │ ├── PwDeleteTopicDoFreshDelete.php │ │ ├── PwDeleteTopicDoPollDelete.php │ │ ├── PwDeleteTopicDoSpecialDelete.php │ │ ├── PwDeleteTopicDoTagDelete.php │ │ ├── PwDeleteTopicDoUserUpdate.php │ │ └── PwDeleteTopicDoVirtualDelete.php │ ├── PwDeleteWeibo │ │ └── PwDeleteWeiboDoCommentDelete.php │ ├── PwPost │ │ └── do │ │ │ └── PwPostDoFresh.php │ ├── PwRevertReply │ │ └── PwRevertReplyDoMain.php │ ├── PwRevertTopic │ │ └── PwRevertTopicDoMain.php │ ├── PwThreadType │ │ └── PwThreadTypeDoDebate.php │ ├── PwUniteForum │ │ ├── PwUniteForumDoMoveActicle.php │ │ └── PwUniteForumDoMoveAttach.php │ └── PwUser │ │ ├── PwUserDoBan.php │ │ ├── PwUserDoBelong.php │ │ ├── PwUserDoRegisterCheck.php │ │ └── PwUserLoginDoBelong.php ├── i18n │ └── zh_cn │ │ ├── admin │ │ ├── area.lang │ │ ├── att.lang │ │ ├── email.lang │ │ ├── message.lang │ │ ├── nav.lang │ │ ├── school.lang │ │ ├── search.lang │ │ └── verify.lang │ │ ├── advertisement │ │ └── message.lang │ │ ├── announce │ │ └── message.lang │ │ ├── appcenter │ │ ├── message.lang │ │ └── upgrade.lang │ │ ├── backup │ │ └── message.lang │ │ ├── bbs │ │ ├── digest.lang │ │ ├── draft.lang │ │ ├── forum.lang │ │ ├── like.lang │ │ ├── manage.lang │ │ ├── post.lang │ │ ├── recycle.lang │ │ ├── remind.lang │ │ ├── thread.lang │ │ └── vote.lang │ │ ├── config.lang │ │ ├── credit │ │ └── message.lang │ │ ├── design │ │ └── message.lang │ │ ├── exception │ │ ├── dependance.lang │ │ ├── final.lang │ │ └── message.lang │ │ ├── hook │ │ └── message.lang │ │ ├── install │ │ └── message.lang │ │ ├── link │ │ └── message.lang │ │ ├── log │ │ └── message.lang │ │ ├── medal │ │ └── message.lang │ │ ├── message.lang │ │ ├── message │ │ └── message.lang │ │ ├── onlinepay.lang │ │ ├── permission.lang │ │ ├── photo │ │ └── message.lang │ │ ├── report │ │ └── message.lang │ │ ├── rewrite │ │ └── message.lang │ │ ├── seo │ │ └── message.lang │ │ ├── site │ │ └── message.lang │ │ ├── space │ │ ├── message.lang │ │ └── punch.lang │ │ ├── style │ │ └── message.lang │ │ ├── tag │ │ └── message.lang │ │ ├── task │ │ └── message.lang │ │ ├── upload.lang │ │ ├── user │ │ ├── attention.lang │ │ ├── ban.lang │ │ ├── education.lang │ │ ├── invite.lang │ │ ├── message.lang │ │ ├── mobile.lang │ │ ├── profile.lang │ │ ├── tag.lang │ │ └── work.lang │ │ ├── vote │ │ └── message.lang │ │ ├── windid │ │ └── message.lang │ │ └── word │ │ └── message.lang ├── library │ ├── Pw.php │ ├── PwLoader.php │ ├── base │ │ ├── PwBaseController.php │ │ ├── PwBaseDao.php │ │ ├── PwBaseDbCache.php │ │ ├── PwBaseDm.php │ │ ├── PwBaseFilter.php │ │ ├── PwBaseMapDbCache.php │ │ ├── PwErrorController.php │ │ └── PwErrorHandler.php │ ├── compile │ │ ├── AbstractPwCompiler.php │ │ ├── PwCompile.php │ │ ├── acloud │ │ │ ├── PwAcloudDataMapper.php │ │ │ ├── PwAcloudDbListener.php │ │ │ ├── PwAcloudFilter.php │ │ │ └── collect │ │ │ │ ├── AbstractAcloudCollect.php │ │ │ │ ├── PwAcloudIndexCollect.php │ │ │ │ ├── PwAcloudReadCollect.php │ │ │ │ └── PwAcloudThreadCollect.php │ │ └── compiler │ │ │ ├── PwCssCompress.php │ │ │ └── PwJsCompress.php │ ├── dataSource │ │ ├── PwDataLazyLoader.php │ │ ├── iPwDataSource.php │ │ └── iPwDataSource2.php │ ├── engine │ │ ├── PwCache.php │ │ ├── PwConfigBo.php │ │ ├── PwConfigSet.php │ │ ├── component │ │ │ └── PwComponent.php │ │ ├── error │ │ │ └── PwError.php │ │ ├── exception │ │ │ ├── PwDependanceException.php │ │ │ ├── PwException.php │ │ │ └── PwFinalException.php │ │ ├── extension │ │ │ ├── cache │ │ │ │ └── PwFileCache.php │ │ │ ├── token │ │ │ │ └── PwCsrfToken.php │ │ │ └── viewer │ │ │ │ ├── PwTemplateCompilerAdvertisement.php │ │ │ │ ├── PwTemplateCompilerComponent.php │ │ │ │ ├── PwTemplateCompilerConfig.php │ │ │ │ ├── PwTemplateCompilerCsrftoken.php │ │ │ │ ├── PwTemplateCompilerCss.php │ │ │ │ ├── PwTemplateCompilerDesign.php │ │ │ │ ├── PwTemplateCompilerHook.php │ │ │ │ ├── PwTemplateCompilerLang.php │ │ │ │ ├── PwTemplateCompilerPage.php │ │ │ │ ├── PwTemplateCompilerPortal.php │ │ │ │ ├── PwTemplateCompilerScript.php │ │ │ │ ├── PwTemplateCompilerSegment.php │ │ │ │ ├── PwTemplateCompilerThemeUrl.php │ │ │ │ └── PwTemplateCompilerUrlCreater.php │ │ └── hook │ │ │ ├── PwBaseHookInjector.php │ │ │ ├── PwBaseHookService.php │ │ │ ├── PwHook.php │ │ │ ├── PwHookService.php │ │ │ └── PwSimpleHook.php │ ├── filter │ │ ├── PwCsrfTokenFilter.php │ │ └── PwFrontFilters.php │ ├── image │ │ ├── PwCutImage.php │ │ ├── PwImage.php │ │ ├── PwImageThumb.php │ │ └── PwImageWatermark.php │ ├── process │ │ ├── PwDoProcess.php │ │ ├── PwGleanDoProcess.php │ │ ├── iPwDoHookProcess.php │ │ └── iPwGleanDoHookProcess.php │ ├── route │ │ ├── AbstractPwRoute.php │ │ ├── PwAdminRoute.php │ │ ├── PwCommonRoute.php │ │ └── PwRoute.php │ ├── storage │ │ ├── PwStorage.php │ │ ├── PwStorageFtp.php │ │ ├── PwStorageLocal.php │ │ └── storages.php │ ├── ubb │ │ ├── PwSimpleUbbCode.php │ │ ├── PwUbbCode.php │ │ └── config │ │ │ ├── PwUbbCodeConvertConfig.php │ │ │ └── PwUbbCodeConvertThread.php │ ├── upload │ │ ├── PwUpload.php │ │ ├── PwUploadAction.php │ │ └── PwUploadFile.php │ └── utility │ │ ├── PwDelayRun.php │ │ ├── PwHighlight.php │ │ ├── PwIptable.php │ │ ├── PwMail.php │ │ ├── PwVerifyCode.php │ │ ├── PwWindidStd.php │ │ ├── PwZip.php │ │ ├── phpseclib │ │ ├── Crypt │ │ │ ├── AES.php │ │ │ ├── DES.php │ │ │ ├── Hash.php │ │ │ ├── RC4.php │ │ │ ├── RSA.php │ │ │ ├── Random.php │ │ │ ├── Rijndael.php │ │ │ └── TripleDES.php │ │ ├── Math │ │ │ └── BigInteger.php │ │ └── Net │ │ │ ├── SFTP.php │ │ │ ├── SSH1.php │ │ │ └── SSH2.php │ │ └── verifycode │ │ ├── GifMerge.php │ │ ├── PwAudioCode.php │ │ ├── PwBaseCode.php │ │ └── PwGDCode.php ├── repository │ ├── audio │ │ ├── 1.mp3 │ │ ├── 2.mp3 │ │ ├── 3.mp3 │ │ ├── 4.mp3 │ │ ├── 5.mp3 │ │ ├── 6.mp3 │ │ ├── 7.mp3 │ │ ├── 8.mp3 │ │ ├── 9.mp3 │ │ ├── B.mp3 │ │ ├── C.mp3 │ │ ├── E.mp3 │ │ ├── F.mp3 │ │ ├── G.mp3 │ │ ├── H.mp3 │ │ ├── J.mp3 │ │ ├── K.mp3 │ │ ├── M.mp3 │ │ ├── P.mp3 │ │ ├── Q.mp3 │ │ ├── R.mp3 │ │ ├── T.mp3 │ │ ├── V.mp3 │ │ ├── W.mp3 │ │ ├── X.mp3 │ │ ├── Y.mp3 │ │ ├── Z.mp3 │ │ └── audio.swf │ ├── bg │ │ ├── bg-1.jpg │ │ ├── bg-10.jpg │ │ ├── bg-2.jpg │ │ ├── bg-3.jpg │ │ ├── bg-4.jpg │ │ ├── bg-5.jpg │ │ ├── bg-6.jpg │ │ ├── bg-7.jpg │ │ ├── bg-8.jpg │ │ └── bg-9.jpg │ ├── demo │ │ └── demo.jpg │ ├── font │ │ └── en_arial.ttf │ ├── ipdata │ │ ├── 0.txt │ │ ├── 109.txt │ │ ├── 113.txt │ │ ├── 116.txt │ │ ├── 117.txt │ │ ├── 119.txt │ │ ├── 121.txt │ │ ├── 122.txt │ │ ├── 123.txt │ │ ├── 124.txt │ │ ├── 125.txt │ │ ├── 178.txt │ │ ├── 192.txt │ │ ├── 193.txt │ │ ├── 194.txt │ │ ├── 195.txt │ │ ├── 198.txt │ │ ├── 199.txt │ │ ├── 200.txt │ │ ├── 202.txt │ │ ├── 203.txt │ │ ├── 204.txt │ │ ├── 210.txt │ │ ├── 211.txt │ │ ├── 212.txt │ │ ├── 213.txt │ │ ├── 217.txt │ │ ├── 218.txt │ │ ├── 219.txt │ │ ├── 220.txt │ │ ├── 221.txt │ │ ├── 222.txt │ │ ├── 58.txt │ │ ├── 59.txt │ │ ├── 60.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 80.txt │ │ ├── 91.txt │ │ └── ipindex.dat │ └── mark │ │ └── mark.gif ├── service │ ├── advertisement │ │ ├── PwAd.php │ │ ├── dao │ │ │ └── PwAdDao.php │ │ ├── dm │ │ │ └── PwAdDm.php │ │ └── srv │ │ │ └── PwAdService.php │ ├── announce │ │ ├── PwAnnounce.php │ │ ├── dao │ │ │ └── PwAnnounceDao.php │ │ ├── dm │ │ │ └── PwAnnounceDm.php │ │ └── srv │ │ │ └── PwAnnounceService.php │ ├── attach │ │ ├── PwAttach.php │ │ ├── PwThreadAttach.php │ │ ├── PwThreadAttachBuy.php │ │ ├── PwThreadAttachDownload.php │ │ ├── dao │ │ │ ├── PwAttachDao.php │ │ │ ├── PwThreadAttachBuyDao.php │ │ │ ├── PwThreadAttachDao.php │ │ │ └── PwThreadAttachDownloadDao.php │ │ ├── dm │ │ │ ├── PwAttachDm.php │ │ │ ├── PwThreadAttachBuyDm.php │ │ │ └── PwThreadAttachDm.php │ │ └── srv │ │ │ └── PwAttachDisplay.php │ ├── attention │ │ ├── PwAttention.php │ │ ├── PwAttentionRecommendCron.php │ │ ├── PwAttentionRecommendFriends.php │ │ ├── PwAttentionRecommendRecord.php │ │ ├── PwAttentionType.php │ │ ├── PwFresh.php │ │ ├── PwFreshIndex.php │ │ ├── dao │ │ │ ├── PwAttentionDao.php │ │ │ ├── PwAttentionRecommendCronDao.php │ │ │ ├── PwAttentionRecommendFriendsDao.php │ │ │ ├── PwAttentionRecommendRecordDao.php │ │ │ ├── PwAttentionRelationDao.php │ │ │ ├── PwAttentionTypeDao.php │ │ │ ├── PwFreshDao.php │ │ │ ├── PwFreshIndexDao.php │ │ │ └── PwFreshRelationDao.php │ │ └── srv │ │ │ ├── PwAttentionRecommendFriendsService.php │ │ │ ├── PwAttentionService.php │ │ │ ├── PwFreshDisplay.php │ │ │ ├── PwFreshReplyList.php │ │ │ ├── PwFreshReplyPost.php │ │ │ ├── dataSource │ │ │ ├── PwFetchAttentionFresh.php │ │ │ ├── PwFetchAttentionFreshByUid.php │ │ │ ├── PwFetchFreshByTypeAndSrcId.php │ │ │ ├── PwFetchMyFresh.php │ │ │ ├── PwGetFreshById.php │ │ │ └── PwGetFreshByIds.php │ │ │ ├── freshDisplay │ │ │ └── PwFreshAttachDisplay.php │ │ │ ├── operation │ │ │ └── PwDeleteFresh.php │ │ │ ├── recommend │ │ │ ├── PwRecommendAttentionDo.php │ │ │ └── PwRecommendUserDo.php │ │ │ └── reply │ │ │ ├── PwFreshReplyByPost.php │ │ │ ├── PwFreshReplyByWeibo.php │ │ │ ├── PwFreshReplyListFromPost.php │ │ │ ├── PwFreshReplyListFromTopic.php │ │ │ ├── PwFreshReplyListFromWeibo.php │ │ │ └── weibo │ │ │ ├── PwWeiboDoBase.php │ │ │ └── PwWeiboDoWord.php │ ├── backup │ │ ├── PwBackup.php │ │ ├── dao │ │ │ └── PwBackupDao.php │ │ └── srv │ │ │ └── PwBackupService.php │ ├── cache │ │ └── srv │ │ │ └── PwCacheUpdateService.php │ ├── config │ │ ├── PwConfig.php │ │ ├── dao │ │ │ └── PwConfigDao.php │ │ └── srv │ │ │ └── PwConfigService.php │ ├── credit │ │ ├── PwCreditLog.php │ │ ├── bo │ │ │ └── PwCreditBo.php │ │ ├── dao │ │ │ ├── PwCreditLogDao.php │ │ │ └── PwCreditOperateLogDao.php │ │ ├── dm │ │ │ ├── PwCreditDm.php │ │ │ └── PwCreditLogDm.php │ │ ├── srv │ │ │ ├── PwCreditOperationConfig.php │ │ │ ├── PwCreditSetService.php │ │ │ └── operationConfig │ │ │ │ ├── baseconfig.php │ │ │ │ └── freshconfig.php │ │ └── vo │ │ │ └── PwCreditLogSc.php │ ├── cron │ │ ├── PwCron.php │ │ ├── dao │ │ │ └── PwCronDao.php │ │ ├── dm │ │ │ └── PwCronDm.php │ │ └── srv │ │ │ ├── PwCronService.php │ │ │ ├── base │ │ │ └── AbstractCronBase.php │ │ │ ├── do │ │ │ ├── PwCronDoClearForumTodayposts.php │ │ │ ├── PwCronDoClearOnline.php │ │ │ ├── PwCronDoDesign.php │ │ │ ├── PwCronDoMedal.php │ │ │ ├── PwCronDoRecommendUser.php │ │ │ └── PwCronDoUpdateHits.php │ │ │ └── system │ │ │ └── systemCron.php │ ├── design │ │ ├── PwDesignAsynImage.php │ │ ├── PwDesignBak.php │ │ ├── PwDesignComponent.php │ │ ├── PwDesignCron.php │ │ ├── PwDesignData.php │ │ ├── PwDesignModule.php │ │ ├── PwDesignPage.php │ │ ├── PwDesignPermissions.php │ │ ├── PwDesignPortal.php │ │ ├── PwDesignPush.php │ │ ├── PwDesignScript.php │ │ ├── PwDesignSegment.php │ │ ├── PwDesignShield.php │ │ ├── PwDesignStructure.php │ │ ├── bo │ │ │ ├── PwDesignModelBo.php │ │ │ ├── PwDesignModuleBo.php │ │ │ ├── PwDesignPageBo.php │ │ │ └── PwDesignStructureBo.php │ │ ├── dao │ │ │ ├── PwDesignBakDao.php │ │ │ ├── PwDesignComponentDao.php │ │ │ ├── PwDesignCronDao.php │ │ │ ├── PwDesignDataDao.php │ │ │ ├── PwDesignImageDao.php │ │ │ ├── PwDesignModuleDao.php │ │ │ ├── PwDesignPageDao.php │ │ │ ├── PwDesignPermissionsDao.php │ │ │ ├── PwDesignPortalDao.php │ │ │ ├── PwDesignPushDao.php │ │ │ ├── PwDesignScriptDao.php │ │ │ ├── PwDesignSegmentDao.php │ │ │ ├── PwDesignShieldDao.php │ │ │ └── PwDesignStructureDao.php │ │ ├── dm │ │ │ ├── PwDesignAsynImageDm.php │ │ │ ├── PwDesignDataDm.php │ │ │ ├── PwDesignModuleDm.php │ │ │ ├── PwDesignPageDm.php │ │ │ ├── PwDesignPortalDm.php │ │ │ ├── PwDesignPushDm.php │ │ │ └── PwDesignStructureDm.php │ │ └── srv │ │ │ ├── PwDesignAsynImageService.php │ │ │ ├── PwDesignCompile.php │ │ │ ├── PwDesignDefaultService.php │ │ │ ├── PwDesignExportTxt.php │ │ │ ├── PwDesignExportZip.php │ │ │ ├── PwDesignImage.php │ │ │ ├── PwDesignImportTxt.php │ │ │ ├── PwDesignImportZip.php │ │ │ ├── PwDesignPageSave.php │ │ │ ├── PwDesignPermissionsService.php │ │ │ ├── PwDesignService.php │ │ │ ├── PwDesignStyle.php │ │ │ ├── PwPageBakService.php │ │ │ ├── PwPortalCompile.php │ │ │ ├── PwPushService.php │ │ │ ├── PwRestoreService.php │ │ │ ├── PwSegmentService.php │ │ │ ├── data │ │ │ ├── PwAutoData.php │ │ │ ├── PwModuleData.php │ │ │ └── PwShieldData.php │ │ │ ├── display │ │ │ └── PwDesignDisplay.php │ │ │ ├── ftp │ │ │ └── PwDesignFtp.php │ │ │ ├── model │ │ │ ├── PwDesignModelBase.php │ │ │ ├── forum │ │ │ │ ├── PwDesignForumDataService.php │ │ │ │ └── config.php │ │ │ ├── html │ │ │ │ ├── PwDesignHtmlDataService.php │ │ │ │ └── config.php │ │ │ ├── image │ │ │ │ ├── PwDesignImageDataService.php │ │ │ │ └── config.php │ │ │ ├── link │ │ │ │ ├── PwDesignLinkDataService.php │ │ │ │ └── config.php │ │ │ ├── searchbar │ │ │ │ ├── PwDesignSearchbarDataService.php │ │ │ │ └── config.php │ │ │ ├── tag │ │ │ │ ├── PwDesignTagDataService.php │ │ │ │ └── config.php │ │ │ ├── thread │ │ │ │ ├── PwDesignThreadDataService.php │ │ │ │ ├── PwDesignThreadPushService.php │ │ │ │ └── config.php │ │ │ └── user │ │ │ │ ├── PwDesignUserDataService.php │ │ │ │ └── config.php │ │ │ ├── property │ │ │ └── PwDesignDoPropertyService.php │ │ │ ├── router │ │ │ ├── PwDesignRouter.php │ │ │ └── router.php │ │ │ ├── vo │ │ │ ├── PwDesignComponentSo.php │ │ │ ├── PwDesignDataSo.php │ │ │ ├── PwDesignModuleSo.php │ │ │ ├── PwDesignPermissionsSo.php │ │ │ ├── PwDesignPortalSo.php │ │ │ └── PwDesignPushSo.php │ │ │ └── xml │ │ │ └── PwXML.php │ ├── domain │ │ ├── PwDomain.php │ │ ├── PwSpaceDomain.php │ │ ├── dao │ │ │ ├── PwDomainDao.php │ │ │ └── PwSpaceDomainDao.php │ │ ├── dm │ │ │ └── PwDomainDm.php │ │ ├── domain.sql │ │ └── srv │ │ │ ├── PwDomainService.php │ │ │ └── helper │ │ │ └── PwDomainHelper.php │ ├── draft │ │ ├── PwDraft.php │ │ ├── dao │ │ │ └── PwDraftDao.php │ │ └── dm │ │ │ └── PwDraftDm.php │ ├── education │ │ ├── Manifest.xml │ │ ├── PwEducation.php │ │ ├── dao │ │ │ └── PwEducationDao.php │ │ ├── dm │ │ │ └── PwEducationDm.php │ │ ├── education.sql │ │ └── srv │ │ │ ├── PwEducationService.php │ │ │ ├── helper │ │ │ └── PwEducationHelper.php │ │ │ └── profile │ │ │ └── do │ │ │ └── PwSpaceProfileDoEducation.php │ ├── emotion │ │ ├── PwEmotion.php │ │ ├── PwEmotionCategory.php │ │ ├── dao │ │ │ ├── PwEmotionCategoryDao.php │ │ │ └── PwEmotionDao.php │ │ ├── dm │ │ │ ├── PwEmotionCategoryDm.php │ │ │ └── PwEmotionDm.php │ │ └── srv │ │ │ └── PwEmotionService.php │ ├── forum │ │ ├── PwForum.php │ │ ├── PwForumUser.php │ │ ├── PwOvertime.php │ │ ├── PwPostsReply.php │ │ ├── PwPostsTopped.php │ │ ├── PwSpecialSort.php │ │ ├── PwThread.php │ │ ├── PwThreadBuy.php │ │ ├── PwThreadCateIndex.php │ │ ├── PwThreadDigestIndex.php │ │ ├── PwThreadExpand.php │ │ ├── PwThreadIndex.php │ │ ├── PwTopicType.php │ │ ├── bo │ │ │ ├── PwForumBo.php │ │ │ └── PwThreadBo.php │ │ ├── cache │ │ │ ├── PwForumDbCache.php │ │ │ ├── PwPostDbCache.php │ │ │ └── PwThreadDbCache.php │ │ ├── dao │ │ │ ├── PwDesignForumDao.php │ │ │ ├── PwForumBaseDao.php │ │ │ ├── PwForumDao.php │ │ │ ├── PwForumExtraDao.php │ │ │ ├── PwForumStatisticsDao.php │ │ │ ├── PwForumUserDao.php │ │ │ ├── PwOvertimeDao.php │ │ │ ├── PwPostExpandDao.php │ │ │ ├── PwPostsDao.php │ │ │ ├── PwPostsReplyDao.php │ │ │ ├── PwPostsToppedDao.php │ │ │ ├── PwSpecialSortDao.php │ │ │ ├── PwThreadExpandDao.php │ │ │ ├── PwThreadMergeDao.php │ │ │ ├── PwThreadsBaseDao.php │ │ │ ├── PwThreadsBuyDao.php │ │ │ ├── PwThreadsCateIndexDao.php │ │ │ ├── PwThreadsContentDao.php │ │ │ ├── PwThreadsDao.php │ │ │ ├── PwThreadsDigestIndexDao.php │ │ │ ├── PwThreadsHitsDao.php │ │ │ ├── PwThreadsIndexDao.php │ │ │ └── PwTopicTypeDao.php │ │ ├── dm │ │ │ ├── PwForumDm.php │ │ │ ├── PwPostDm.php │ │ │ ├── PwPostsToppedDm.php │ │ │ ├── PwReplyDm.php │ │ │ ├── PwSpecialSortDm.php │ │ │ ├── PwThreadBuyDm.php │ │ │ ├── PwThreadDigestDm.php │ │ │ ├── PwThreadSortDm.php │ │ │ ├── PwTopicDm.php │ │ │ └── PwTopicTypeDm.php │ │ ├── srv │ │ │ ├── PwForumMiscService.php │ │ │ ├── PwForumService.php │ │ │ ├── PwForumUserService.php │ │ │ ├── PwOvertimeService.php │ │ │ ├── PwPost.php │ │ │ ├── PwThreadDisplay.php │ │ │ ├── PwThreadList.php │ │ │ ├── PwThreadManage.php │ │ │ ├── PwThreadService.php │ │ │ ├── PwThreadType.php │ │ │ ├── PwTopicTypeService.php │ │ │ ├── PwToppedService.php │ │ │ ├── dataSource │ │ │ │ ├── PwFetchReplyByPid.php │ │ │ │ ├── PwFetchReplyByTidAndPids.php │ │ │ │ ├── PwFetchReplyByUid.php │ │ │ │ ├── PwFetchTopicByFid.php │ │ │ │ ├── PwFetchTopicByFidAndUids.php │ │ │ │ ├── PwFetchTopicByTid.php │ │ │ │ ├── PwFetchTopicByUid.php │ │ │ │ └── PwGetTopicByUid.php │ │ │ ├── manage │ │ │ │ ├── PwThreadManageDo.php │ │ │ │ ├── PwThreadManageDoBan.php │ │ │ │ ├── PwThreadManageDoCopy.php │ │ │ │ ├── PwThreadManageDoDeleteReply.php │ │ │ │ ├── PwThreadManageDoDeleteTopic.php │ │ │ │ ├── PwThreadManageDoDigest.php │ │ │ │ ├── PwThreadManageDoDown.php │ │ │ │ ├── PwThreadManageDoHighlight.php │ │ │ │ ├── PwThreadManageDoInspect.php │ │ │ │ ├── PwThreadManageDoLock.php │ │ │ │ ├── PwThreadManageDoMove.php │ │ │ │ ├── PwThreadManageDoRemind.php │ │ │ │ ├── PwThreadManageDoShield.php │ │ │ │ ├── PwThreadManageDoTopped.php │ │ │ │ ├── PwThreadManageDoToppedReply.php │ │ │ │ ├── PwThreadManageDoType.php │ │ │ │ ├── PwThreadManageDoUp.php │ │ │ │ └── do │ │ │ │ │ ├── PwThreadManageCopyDoAtt.php │ │ │ │ │ ├── PwThreadManageCopyDoBase.php │ │ │ │ │ └── PwThreadManageCopyDoPoll.php │ │ │ ├── operation │ │ │ │ ├── PwDeleteForum.php │ │ │ │ ├── PwDeleteReply.php │ │ │ │ ├── PwDeleteTopic.php │ │ │ │ ├── PwPassReply.php │ │ │ │ ├── PwPassTopic.php │ │ │ │ ├── PwRevertReply.php │ │ │ │ ├── PwRevertTopic.php │ │ │ │ └── PwUniteForum.php │ │ │ ├── post │ │ │ │ ├── PwPostAction.php │ │ │ │ ├── PwReplyModify.php │ │ │ │ ├── PwReplyPost.php │ │ │ │ ├── PwTopicModify.php │ │ │ │ ├── PwTopicPost.php │ │ │ │ ├── do │ │ │ │ │ ├── PwPostDoAtt.php │ │ │ │ │ ├── PwPostDoBase.php │ │ │ │ │ ├── PwPostDoPoll.php │ │ │ │ │ ├── PwPostDoRemind.php │ │ │ │ │ ├── PwPostDoTag.php │ │ │ │ │ ├── PwPostDoWord.php │ │ │ │ │ ├── PwReplyDoNotice.php │ │ │ │ │ ├── PwReplyDoRemind.php │ │ │ │ │ └── PwReplyDoWord.php │ │ │ │ └── injector │ │ │ │ │ ├── PwPostDoAttInjector.php │ │ │ │ │ ├── PwPostDoPollInjector.php │ │ │ │ │ ├── PwPostDoTagInjector.php │ │ │ │ │ └── PwPostDoWordInjector.php │ │ │ ├── threadDisplay │ │ │ │ ├── PwCommonRead.php │ │ │ │ ├── PwReadDataSource.php │ │ │ │ ├── PwReplyRead.php │ │ │ │ ├── PwUserRead.php │ │ │ │ ├── do │ │ │ │ │ ├── PwThreadDisplayDoBase.php │ │ │ │ │ ├── PwThreadDisplayDoHits.php │ │ │ │ │ ├── PwThreadDisplayDoPoll.php │ │ │ │ │ └── PwThreadDisplayDoWord.php │ │ │ │ └── injector │ │ │ │ │ ├── PwThreadDisplayDoPollInjector.php │ │ │ │ │ ├── PwThreadDisplayDoTagInjector.php │ │ │ │ │ └── PwThreadDisplayDoWordInjector.php │ │ │ └── threadList │ │ │ │ ├── PwCateDigestThread.php │ │ │ │ ├── PwCateThread.php │ │ │ │ ├── PwCommonThread.php │ │ │ │ ├── PwDigestThread.php │ │ │ │ ├── PwMyForumThread.php │ │ │ │ ├── PwMyThread.php │ │ │ │ ├── PwNewForumThread.php │ │ │ │ ├── PwNewThread.php │ │ │ │ ├── PwSearchThread.php │ │ │ │ ├── PwSpaceThread.php │ │ │ │ ├── PwThreadDataSource.php │ │ │ │ ├── PwTypeThread.php │ │ │ │ └── do │ │ │ │ ├── PwThreadListDoBase.php │ │ │ │ └── PwThreadListDoHits.php │ │ └── vo │ │ │ ├── PwForumSo.php │ │ │ ├── PwPostSo.php │ │ │ └── PwThreadSo.php │ ├── hook │ │ ├── PwHookInject.php │ │ ├── PwHooks.php │ │ ├── dao │ │ │ ├── PwHookDao.php │ │ │ └── PwHookInjectDao.php │ │ ├── data.sql │ │ ├── dm │ │ │ ├── PwComponentDm.php │ │ │ ├── PwHookDm.php │ │ │ ├── PwHookInjectDm.php │ │ │ └── PwHookSo.php │ │ ├── sql.sql │ │ └── srv │ │ │ ├── PwComponentsService.php │ │ │ ├── PwHookInjectService.php │ │ │ └── PwHookRefresh.php │ ├── invite │ │ ├── PwInviteCode.php │ │ ├── dao │ │ │ └── PwInviteCodeDao.php │ │ ├── dm │ │ │ └── PwInviteCodeDm.php │ │ ├── invite.sql │ │ ├── readme │ │ ├── srv │ │ │ ├── PwInviteCodeService.php │ │ │ └── PwInviteFriendService.php │ │ └── vo │ │ │ └── PwInviteCodeSo.php │ ├── like │ │ ├── PwLikeContent.php │ │ ├── PwLikeLog.php │ │ ├── PwLikeRelations.php │ │ ├── PwLikeSource.php │ │ ├── PwLikeStatistics.php │ │ ├── PwLikeTag.php │ │ ├── dao │ │ │ ├── PwLikeContentDao.php │ │ │ ├── PwLikeLogDao.php │ │ │ ├── PwLikeRelationsDao.php │ │ │ ├── PwLikeSourceDao.php │ │ │ ├── PwLikeStatisticsDao.php │ │ │ └── PwLikeTagDao.php │ │ ├── dm │ │ │ ├── PwLikeDm.php │ │ │ ├── PwLikeLogDm.php │ │ │ ├── PwLikeSourceDm.php │ │ │ ├── PwLikeStatisticsDm.php │ │ │ └── PwLikeTagDm.php │ │ └── srv │ │ │ ├── PwBuildLikeService.php │ │ │ ├── PwLikeService.php │ │ │ ├── fresh │ │ │ ├── do │ │ │ │ └── PwLikeDoFresh.php │ │ │ └── injector │ │ │ │ └── PwLikeDoFreshInjector.php │ │ │ ├── reply │ │ │ ├── do │ │ │ │ └── PwLikeDoReply.php │ │ │ └── injector │ │ │ │ └── PwLikeDoReplyInjector.php │ │ │ └── threadDisplay │ │ │ ├── do │ │ │ └── PwThreadDisplayDoLike.php │ │ │ └── injector │ │ │ └── PwThreadDisplayDoLikeInjector.php │ ├── link │ │ ├── PwLink.php │ │ ├── dao │ │ │ ├── PwLinkDao.php │ │ │ ├── PwLinkRelationsDao.php │ │ │ ├── PwLinkSearchDao.php │ │ │ └── PwLinkTypeDao.php │ │ ├── dm │ │ │ └── PwLinkDm.php │ │ ├── srv │ │ │ └── PwLinkService.php │ │ └── vo │ │ │ └── PwLinkSo.php │ ├── log │ │ ├── PwLog.php │ │ ├── PwLogLogin.php │ │ ├── dao │ │ │ ├── PwLogDao.php │ │ │ └── PwLogLoginDao.php │ │ ├── dm │ │ │ ├── PwLogDm.php │ │ │ └── PwLogLoginDm.php │ │ ├── so │ │ │ └── PwLogSo.php │ │ └── srv │ │ │ ├── PwLogService.php │ │ │ ├── datasource │ │ │ ├── PwShieldTagDoReply.php │ │ │ ├── PwShieldTagDoTopic.php │ │ │ └── PwShieldTagDoWeibo.php │ │ │ └── operator │ │ │ └── PwAddTagShieldLog.php │ ├── medal │ │ ├── PwMedalInfo.php │ │ ├── PwMedalLog.php │ │ ├── PwMedalUser.php │ │ ├── bo │ │ │ └── PwUserMedalBo.php │ │ ├── dao │ │ │ ├── PwMedalInfoDao.php │ │ │ ├── PwMedalLogDao.php │ │ │ └── PwMedalUserDao.php │ │ ├── dm │ │ │ ├── PwMedalDm.php │ │ │ ├── PwMedalLogDm.php │ │ │ └── PwMedalUserDm.php │ │ └── srv │ │ │ ├── PwAutoAwardMedal.php │ │ │ ├── PwAutoRecoverMedal.php │ │ │ ├── PwMedalCache.php │ │ │ ├── PwMedalService.php │ │ │ ├── condition │ │ │ └── do │ │ │ │ ├── PwMedalFansDo.php │ │ │ │ ├── PwMedalLikeDo.php │ │ │ │ ├── PwMedalPostDo.php │ │ │ │ ├── PwMedalThreadDo.php │ │ │ │ └── PwMedalUserDo.php │ │ │ └── threadDisplay │ │ │ ├── do │ │ │ └── PwThreadDisplayDoMedal.php │ │ │ └── injector │ │ │ └── PwThreadDisplayDoMedalInjector.php │ ├── message │ │ ├── PwMessageMessages.php │ │ ├── PwMessageNotices.php │ │ ├── dao │ │ │ ├── PwMessageConfigDao.php │ │ │ └── PwMessageNoticesDao.php │ │ ├── dm │ │ │ └── PwMessageNoticesDm.php │ │ ├── readme │ │ └── srv │ │ │ ├── PwMessageService.php │ │ │ ├── PwNoticeService.php │ │ │ ├── do │ │ │ ├── PwMessageDoBase.php │ │ │ └── PwNoticeFansDo.php │ │ │ ├── notice │ │ │ ├── PwNoticeAction.php │ │ │ ├── PwNoticeApp.php │ │ │ ├── PwNoticeAttention.php │ │ │ ├── PwNoticeBan.php │ │ │ ├── PwNoticeCredit.php │ │ │ ├── PwNoticeDefault.php │ │ │ ├── PwNoticeMassmessage.php │ │ │ ├── PwNoticeMedal.php │ │ │ ├── PwNoticeMessage.php │ │ │ ├── PwNoticePostreply.php │ │ │ ├── PwNoticeRemind.php │ │ │ ├── PwNoticeReport.php │ │ │ ├── PwNoticeTask.php │ │ │ ├── PwNoticeThreadmanage.php │ │ │ └── PwNoticeThreadreply.php │ │ │ └── reply │ │ │ ├── do │ │ │ └── PwNoticeDoReply.php │ │ │ └── injector │ │ │ └── PwNoticeDoReplyInjector.php │ ├── misc │ │ └── behavior │ │ │ └── do │ │ │ ├── PwMiscLikeDo.php │ │ │ ├── PwMiscPostDo.php │ │ │ ├── PwMiscThreadDo.php │ │ │ └── PwMiscUserDo.php │ ├── mobile │ │ ├── config │ │ │ └── plat.php │ │ └── srv │ │ │ ├── PwMobileConfigService.php │ │ │ ├── PwMobileService.php │ │ │ ├── do │ │ │ └── PwVerifyMobileBase.php │ │ │ └── plat │ │ │ └── PwPlatAliyun.php │ ├── nav │ │ ├── PwNav.php │ │ ├── bo │ │ │ └── PwNavBo.php │ │ ├── dao │ │ │ └── PwNavDao.php │ │ ├── dm │ │ │ └── PwNavDm.php │ │ └── srv │ │ │ ├── PwNavInstall.php │ │ │ ├── PwNavService.php │ │ │ └── navtype │ │ │ └── system.php │ ├── online │ │ ├── PwGuestOnline.php │ │ ├── PwOnlineStatistics.php │ │ ├── PwUserOnline.php │ │ ├── dao │ │ │ ├── PwGuestOnlineDao.php │ │ │ ├── PwOnlineStatisticsDao.php │ │ │ └── PwUserOnlineDao.php │ │ ├── dm │ │ │ └── PwOnlineDm.php │ │ └── srv │ │ │ ├── PwOnlineCountService.php │ │ │ ├── PwOnlineService.php │ │ │ └── do │ │ │ ├── PwLoginDoUpdateOnline.php │ │ │ └── PwLogoutDoUpdateOnline.php │ ├── patch │ │ ├── PwPatch.php │ │ ├── PwUpgradeLog.php │ │ └── dao │ │ │ ├── PwPatchDao.php │ │ │ └── PwUpgradeLogDao.php │ ├── pay │ │ ├── PwOrder.php │ │ ├── dao │ │ │ └── PwOrderDao.php │ │ ├── dm │ │ │ └── PwOrderDm.php │ │ ├── srv │ │ │ ├── PwPayService.php │ │ │ ├── action │ │ │ │ └── PwPayAction1.php │ │ │ └── paymethod │ │ │ │ ├── PwAlipay.php │ │ │ │ ├── PwBill.php │ │ │ │ ├── PwPayAbstract.php │ │ │ │ ├── PwPaypal.php │ │ │ │ └── PwTenpay.php │ │ └── vo │ │ │ └── PwPayVo.php │ ├── poll │ │ ├── PwPoll.php │ │ ├── PwPollOption.php │ │ ├── PwPollVoter.php │ │ ├── PwThreadPoll.php │ │ ├── bo │ │ │ └── PwThreadPollBo.php │ │ ├── dao │ │ │ ├── PwPollDao.php │ │ │ ├── PwPollOptionDao.php │ │ │ ├── PwPollVoterDao.php │ │ │ └── PwThreadPollDao.php │ │ ├── dm │ │ │ ├── PwPollDm.php │ │ │ ├── PwPollOptionDm.php │ │ │ └── PwThreadPollDm.php │ │ └── srv │ │ │ ├── PwPollDisplay.php │ │ │ ├── PwPollService.php │ │ │ ├── PwPollVoterService.php │ │ │ └── dataSource │ │ │ ├── PwFetchPollByOrder.php │ │ │ ├── PwFetchPollByPollid.php │ │ │ ├── PwFetchPollByTime.php │ │ │ ├── PwFetchPollByUid.php │ │ │ └── PwFetchPollByUids.php │ ├── process │ │ ├── PwProcess.php │ │ ├── dao │ │ │ └── PwProcessDao.php │ │ └── srv │ │ │ └── PwProcessService.php │ ├── recycle │ │ ├── PwReplyRecycle.php │ │ ├── PwTopicRecycle.php │ │ ├── dao │ │ │ ├── PwReplyRecycleDao.php │ │ │ └── PwTopicRecycleDao.php │ │ ├── dm │ │ │ ├── PwReplyRecycleDm.php │ │ │ └── PwTopicRecycleDm.php │ │ └── vo │ │ │ ├── PwRecycleReplySo.php │ │ │ └── PwRecycleThreadSo.php │ ├── remind │ │ ├── PwRemind.php │ │ ├── dao │ │ │ └── PwRemindDao.php │ │ └── srv │ │ │ └── PwRemindService.php │ ├── report │ │ ├── PwReport.php │ │ ├── dao │ │ │ └── PwReportDao.php │ │ ├── dm │ │ │ └── PwReportDm.php │ │ └── srv │ │ │ ├── PwReportService.php │ │ │ └── report │ │ │ ├── PwReportAction.php │ │ │ ├── PwReportMessage.php │ │ │ ├── PwReportPhoto.php │ │ │ ├── PwReportPost.php │ │ │ └── PwReportThread.php │ ├── seo │ │ ├── PwSeo.php │ │ ├── bo │ │ │ └── PwSeoBo.php │ │ ├── dao │ │ │ └── PwSeoDao.php │ │ ├── dm │ │ │ └── PwSeoDm.php │ │ ├── seo.sql │ │ └── srv │ │ │ └── PwSeoService.php │ ├── site │ │ ├── PwBbsinfo.php │ │ ├── dao │ │ │ └── PwBbsinfoDao.php │ │ ├── dm │ │ │ └── PwBbsinfoDm.php │ │ └── srv │ │ │ └── PwSiteStatusService.php │ ├── space │ │ ├── PwSpace.php │ │ ├── bo │ │ │ ├── PwSpaceBo.php │ │ │ └── PwSpaceModel.php │ │ ├── dao │ │ │ └── PwSpaceDao.php │ │ ├── dm │ │ │ └── PwSpaceDm.php │ │ └── srv │ │ │ ├── PwPunchService.php │ │ │ ├── PwSpaceProfile.php │ │ │ ├── PwSpaceService.php │ │ │ └── profile │ │ │ ├── do │ │ │ └── PwSpaceProfileDoInterface.php │ │ │ └── injector │ │ │ └── PwSpaceProfileInjector.php │ ├── tag │ │ ├── PwTag.php │ │ ├── PwTagAttention.php │ │ ├── PwTagCateGory.php │ │ ├── PwTagSearch.php │ │ ├── dao │ │ │ ├── PwTagAttentionDao.php │ │ │ ├── PwTagCategoryDao.php │ │ │ ├── PwTagCategoryRelationDao.php │ │ │ ├── PwTagDao.php │ │ │ ├── PwTagRecordDao.php │ │ │ ├── PwTagRelationDao.php │ │ │ └── PwTagSearchDao.php │ │ ├── dm │ │ │ └── PwTagDm.php │ │ ├── srv │ │ │ ├── PwTagService.php │ │ │ └── action │ │ │ │ ├── PwTagAction.php │ │ │ │ └── PwTagThreads.php │ │ └── vo │ │ │ └── PwTagSo.php │ ├── task │ │ ├── Mainfest.xml │ │ ├── PwTask.php │ │ ├── PwTaskUser.php │ │ ├── ReadmeAboutExtends │ │ ├── dao │ │ │ ├── PwTaskCacheDao.php │ │ │ ├── PwTaskDao.php │ │ │ ├── PwTaskGroupDao.php │ │ │ └── PwTaskUserDao.php │ │ ├── dm │ │ │ ├── PwTaskDm.php │ │ │ ├── PwTaskDmFactory.php │ │ │ ├── PwTaskUserDm.php │ │ │ └── condition │ │ │ │ ├── PwTaskBbsLikeDm.php │ │ │ │ ├── PwTaskBbsPostDm.php │ │ │ │ ├── PwTaskBbsReplyDm.php │ │ │ │ ├── PwTaskMemberFansDm.php │ │ │ │ └── PwTaskMemberMsgDm.php │ │ ├── srv │ │ │ ├── PwTaskApply.php │ │ │ ├── PwTaskComplete.php │ │ │ ├── PwTaskGainReward.php │ │ │ ├── PwTaskService.php │ │ │ ├── base │ │ │ │ └── PwTaskCompleteInterface.php │ │ │ ├── condition │ │ │ │ ├── PwAutoTaskLoginDo.php │ │ │ │ ├── PwTaskBbsLikeDo.php │ │ │ │ ├── PwTaskBbsPostDo.php │ │ │ │ ├── PwTaskBbsThreadDo.php │ │ │ │ ├── PwTaskMemberAvatarDo.php │ │ │ │ ├── PwTaskMemberFansDo.php │ │ │ │ ├── PwTaskMemberMsgDo.php │ │ │ │ ├── PwTaskMemberPunchDo.php │ │ │ │ └── PwTaskProfileConditionDo.php │ │ │ ├── helper │ │ │ │ └── PwTaskTreeHelper.php │ │ │ └── reward │ │ │ │ ├── PwTaskCreditRewardDo.php │ │ │ │ ├── PwTaskGroupRewardDo.php │ │ │ │ └── PwTaskRewardDoBase.php │ │ └── task.sql │ ├── upload │ │ └── action │ │ │ ├── PwAttMultiUpload.php │ │ │ ├── PwAttReplaceUpload.php │ │ │ ├── PwAttUpload.php │ │ │ ├── PwAvatarUpload.php │ │ │ ├── PwDesignDataUpload.php │ │ │ ├── PwDesignImageUpload.php │ │ │ ├── PwDesignImportUpload.php │ │ │ ├── PwDesignUpload.php │ │ │ ├── PwForumUpload.php │ │ │ ├── PwIconUpload.php │ │ │ ├── PwMedalUpload.php │ │ │ ├── PwPollUpload.php │ │ │ ├── PwPortalUpload.php │ │ │ ├── PwSpaceUpload.php │ │ │ ├── PwTagUpload.php │ │ │ ├── PwTaskIconUpload.php │ │ │ └── PwWordUpload.php │ ├── user │ │ ├── PwUser.php │ │ ├── PwUserActiveCode.php │ │ ├── PwUserBan.php │ │ ├── PwUserBehavior.php │ │ ├── PwUserBelong.php │ │ ├── PwUserBlack.php │ │ ├── PwUserDataExpand.php │ │ ├── PwUserLoginIpRecode.php │ │ ├── PwUserMobile.php │ │ ├── PwUserMobileVerify.php │ │ ├── PwUserRegisterCheck.php │ │ ├── PwUserRegisterIp.php │ │ ├── PwUserSearch.php │ │ ├── PwUserVerify.php │ │ ├── bo │ │ │ └── PwUserBo.php │ │ ├── cache │ │ │ └── PwUserDbCache.php │ │ ├── dao │ │ │ ├── PwUserActiveCodeDao.php │ │ │ ├── PwUserBanDao.php │ │ │ ├── PwUserBehaviorDao.php │ │ │ ├── PwUserBelongDao.php │ │ │ ├── PwUserDao.php │ │ │ ├── PwUserDataDao.php │ │ │ ├── PwUserDataExpandDao.php │ │ │ ├── PwUserDefaultDao.php │ │ │ ├── PwUserInfoDao.php │ │ │ ├── PwUserLoginIpRecodeDao.php │ │ │ ├── PwUserMobileDao.php │ │ │ ├── PwUserMobileVerifyDao.php │ │ │ ├── PwUserRegisterCheckDao.php │ │ │ ├── PwUserRegisterIpDao.php │ │ │ ├── PwUserSearchDao.php │ │ │ └── PwUserVerifyDao.php │ │ ├── dm │ │ │ ├── PwUserBanInfoDm.php │ │ │ ├── PwUserInfoDm.php │ │ │ └── PwUserMobileDm.php │ │ ├── srv │ │ │ ├── PwBanBp.php │ │ │ ├── PwClearUserService.php │ │ │ ├── PwFindPassword.php │ │ │ ├── PwLoginService.php │ │ │ ├── PwRegisterService.php │ │ │ ├── PwTryPwdBp.php │ │ │ ├── PwUserBanService.php │ │ │ ├── PwUserMiscService.php │ │ │ ├── PwUserService.php │ │ │ ├── bantype │ │ │ │ ├── PwUserBanAvatar.php │ │ │ │ ├── PwUserBanSign.php │ │ │ │ ├── PwUserBanSpeak.php │ │ │ │ └── PwUserBanTypeInterface.php │ │ │ ├── login │ │ │ │ ├── PwUserLoginDoBase.php │ │ │ │ ├── do │ │ │ │ │ ├── PwLoginDoInviteFriend.php │ │ │ │ │ └── PwLoginDoUnbanCheck.php │ │ │ │ └── injector │ │ │ │ │ └── PwLoginDoInviteFriendInjector.php │ │ │ ├── logout │ │ │ │ ├── PwLogoutDoBase.php │ │ │ │ └── do │ │ │ │ │ └── PwLogoutDoUpdateLastvisit.php │ │ │ └── register │ │ │ │ ├── do │ │ │ │ ├── PwRegisterDoBase.php │ │ │ │ ├── PwRegisterDoInvite.php │ │ │ │ ├── PwRegisterDoInviteFriend.php │ │ │ │ ├── PwRegisterDoUpdateBbsInfo.php │ │ │ │ └── PwRegisterDoVerifyMobile.php │ │ │ │ └── injector │ │ │ │ ├── PwRegisterDoInviteFriendInjector.php │ │ │ │ ├── PwRegisterDoInviteInjector.php │ │ │ │ └── PwRegisterDoVerifyMobileInjector.php │ │ ├── user.sql │ │ ├── validator │ │ │ └── PwUserValidator.php │ │ └── vo │ │ │ ├── PwUserBanSo.php │ │ │ └── PwUserSo.php │ ├── usergroup │ │ ├── PwUserGroups.php │ │ ├── PwUserPermission.php │ │ ├── dao │ │ │ ├── PwUserGroupsDao.php │ │ │ └── PwUserPermissionGroupsDao.php │ │ ├── dm │ │ │ ├── PwUserGroupDm.php │ │ │ └── PwUserPermissionDm.php │ │ └── srv │ │ │ ├── PwPermissionService.php │ │ │ ├── PwUserGroupsService.php │ │ │ └── permission │ │ │ ├── permissionCategory.php │ │ │ └── permissions.php │ ├── usertag │ │ ├── PwUserTag.php │ │ ├── PwUserTagRelation.php │ │ ├── dao │ │ │ ├── PwUserTagDao.php │ │ │ └── PwUserTagRelationDao.php │ │ ├── dm │ │ │ └── PwUserTagDm.php │ │ ├── so │ │ │ └── PwUserTagSo.php │ │ ├── srv │ │ │ ├── PwUserTagService.php │ │ │ └── do │ │ │ │ └── PwDeleteRelationDoUpdateTag.php │ │ └── usertag.sql │ ├── verify │ │ ├── codetype │ │ │ └── verify.php │ │ └── srv │ │ │ ├── PwCheckVerifyService.php │ │ │ └── PwVerifyService.php │ ├── weibo │ │ ├── PwWeibo.php │ │ ├── dao │ │ │ ├── PwWeiboCommentDao.php │ │ │ └── PwWeiboDao.php │ │ ├── dm │ │ │ ├── PwWeiboCommnetDm.php │ │ │ └── PwWeiboDm.php │ │ └── srv │ │ │ ├── PwSendWeibo.php │ │ │ ├── PwWeiboService.php │ │ │ ├── dataSource │ │ │ └── PwFetchWeiboById.php │ │ │ └── operation │ │ │ └── PwDeleteWeibo.php │ ├── word │ │ ├── PwWord.php │ │ ├── dao │ │ │ └── PwWordDao.php │ │ ├── dm │ │ │ └── PwWordDm.php │ │ ├── srv │ │ │ ├── PwWordFilter.php │ │ │ ├── PwWordService.php │ │ │ └── filter │ │ │ │ ├── PwFilterAction.php │ │ │ │ └── PwFilterDfa.php │ │ └── vo │ │ │ └── PwWordSo.php │ └── work │ │ ├── Manifest.xml │ │ ├── PwWork.php │ │ ├── dao │ │ └── PwWorkDao.php │ │ ├── dm │ │ └── PwWorkDm.php │ │ ├── srv │ │ └── profile │ │ │ └── do │ │ │ └── PwSpaceProfileDoWork.php │ │ └── work.sql ├── wekit.php └── windid │ ├── WindidApi.php │ ├── api │ ├── local │ │ ├── WindidAppApi.php │ │ ├── WindidAreaApi.php │ │ ├── WindidAvatarApi.php │ │ ├── WindidConfigApi.php │ │ ├── WindidMessageApi.php │ │ ├── WindidNotifyApi.php │ │ ├── WindidSchoolApi.php │ │ └── WindidUserApi.php │ └── web │ │ ├── WindidAppApi.php │ │ ├── WindidAreaApi.php │ │ ├── WindidAvatarApi.php │ │ ├── WindidConfigApi.php │ │ ├── WindidMessageApi.php │ │ ├── WindidNotifyApi.php │ │ ├── WindidSchoolApi.php │ │ └── WindidUserApi.php │ ├── bootstrap.php │ ├── conf │ ├── config.php │ └── database.php │ └── service │ ├── app │ ├── WindidApp.php │ ├── dao │ │ └── WindidAppDao.php │ └── dm │ │ └── WindidAppDm.php │ ├── area │ ├── WindidArea.php │ ├── dao │ │ └── WindidAreaDao.php │ ├── dm │ │ └── WindidAreaDm.php │ └── srv │ │ └── WindidAreaService.php │ ├── base │ ├── WindidBaseDao.php │ ├── WindidError.php │ ├── WindidNotifyConf.php │ └── WindidUtility.php │ ├── config │ ├── WindidConfig.php │ ├── dao │ │ └── WindidConfigDao.php │ └── srv │ │ ├── WindidConfigSet.php │ │ ├── WindidCreditSetService.php │ │ └── WindidStoreService.php │ ├── hook │ ├── PwHookInject.php │ ├── PwHooks.php │ ├── dao │ │ ├── PwHookDao.php │ │ └── PwHookInjectDao.php │ ├── data.sql │ ├── dm │ │ ├── PwComponentDm.php │ │ ├── PwHookDm.php │ │ ├── PwHookInjectDm.php │ │ └── PwHookSo.php │ ├── sql.sql │ └── srv │ │ ├── PwComponentsService.php │ │ ├── PwHookInjectService.php │ │ └── PwHookRefresh.php │ ├── mail │ └── WindidMail.php │ ├── message │ ├── WindidMessage.php │ ├── dao │ │ ├── WindidMessageDao.php │ │ ├── WindidMessageDialogDao.php │ │ └── WindidMessageRelationDao.php │ ├── dm │ │ └── WindidMessageDm.php │ └── srv │ │ ├── WindidBoxMessage.php │ │ ├── WindidMessageService.php │ │ └── vo │ │ └── WindidMessageSo.php │ ├── notify │ ├── WindidNotify.php │ ├── WindidNotifyLog.php │ ├── dao │ │ ├── WindidNotifyDao.php │ │ └── WindidNotifyLogDao.php │ ├── dm │ │ └── WindidNotifyLogDm.php │ └── srv │ │ ├── WindidNotifyServer.php │ │ └── WindidNotifyService.php │ ├── school │ ├── WindidSchool.php │ ├── dao │ │ └── WindidSchoolDao.php │ ├── dm │ │ └── WindidSchoolDm.php │ ├── srv │ │ └── WindidSchoolService.php │ └── vo │ │ └── WindidSchoolSo.php │ ├── upload │ └── action │ │ └── WindidAvatarUpload.php │ └── user │ ├── WindidUser.php │ ├── WindidUserBlack.php │ ├── dao │ ├── WindidUserBlackDao.php │ ├── WindidUserDao.php │ ├── WindidUserDataDao.php │ ├── WindidUserDefaultDao.php │ ├── WindidUserInfoDao.php │ ├── WindidUserInterface.php │ └── WindidUserSearchDao.php │ ├── dm │ ├── WindidCreditDm.php │ └── WindidUserDm.php │ ├── srv │ └── WindidUserService.php │ ├── validator │ └── WindidUserValidator.php │ └── vo │ └── WindidUserSo.php ├── wind ├── Wind.php ├── base │ ├── AbstractWindApplication.php │ ├── AbstractWindBootstrap.php │ ├── AbstractWindFrontController.php │ ├── IWindApplication.php │ ├── IWindController.php │ ├── IWindRequest.php │ ├── IWindResponse.php │ ├── WindActionException.php │ ├── WindEnableValidateModule.php │ ├── WindError.php │ ├── WindErrorMessage.php │ ├── WindException.php │ ├── WindFactory.php │ ├── WindFinalException.php │ ├── WindForwardException.php │ └── WindModule.php ├── cache │ ├── AbstractWindCache.php │ ├── IWindCacheDependency.php │ ├── dependency │ │ └── WindResolvedCrashDependency.php │ ├── exception │ │ └── WindCacheException.php │ └── strategy │ │ ├── WindApcCache.php │ │ ├── WindDbCache.php │ │ ├── WindEacceleratorCache.php │ │ ├── WindFileCache.php │ │ ├── WindMemCache.php │ │ ├── WindMemCached.php │ │ ├── WindRedisCache.php │ │ ├── WindWinCache.php │ │ ├── WindXCache.php │ │ └── WindZendCache.php ├── command │ ├── WindCommandApplication.php │ ├── WindCommandController.php │ ├── WindCommandError.php │ ├── WindCommandFrontController.php │ ├── WindCommandRequest.php │ └── WindCommandResponse.php ├── convert │ ├── IWindConverter.php │ ├── WindGeneralConverter.php │ └── encode │ │ ├── big5-gb.table │ │ ├── encode.table │ │ └── gb-big5.table ├── dao │ ├── WindDao.php │ ├── WindDaoFactory.php │ ├── exception │ │ └── WindDaoException.php │ └── listener │ │ └── WindDaoCacheListener.php ├── db │ ├── AbstractWindPdoAdapter.php │ ├── WindConnection.php │ ├── WindConnectionManager.php │ ├── WindResultSet.php │ ├── WindSqlStatement.php │ ├── exception │ │ └── WindDbException.php │ └── mysql │ │ └── WindMysqlPdoAdapter.php ├── filter │ ├── WindActionFilter.php │ ├── WindEnhancedListener.php │ ├── WindHandlerInterceptor.php │ ├── WindHandlerInterceptorChain.php │ ├── WindSimpleHandlerInterceptor.php │ └── proxy │ │ ├── WindClassProxy.php │ │ └── WindEnhancedClassProxy.php ├── ftp │ ├── AbstractWindFtp.php │ ├── WindFtp.php │ ├── WindSocketFtp.php │ └── exception │ │ └── WindFtpException.php ├── http │ ├── IWindHttpContainer.php │ ├── cookie │ │ └── WindNormalCookie.php │ ├── mime │ │ ├── WindMimeType.php │ │ └── mime │ ├── session │ │ ├── WindSession.php │ │ └── handler │ │ │ └── WindSessionHandler.php │ └── transfer │ │ ├── AbstractWindHttp.php │ │ ├── WindHttpCurl.php │ │ ├── WindHttpSocket.php │ │ ├── WindHttpStream.php │ │ └── WindHttpTransferException.php ├── i18n │ ├── IWindLangResource.php │ ├── WindI18nException.php │ └── WindLangResource.php ├── log │ ├── WindDebug.php │ └── WindLogger.php ├── mail │ ├── IWindMailEncoder.php │ ├── WindMail.php │ ├── encode │ │ ├── WindMailBase64.php │ │ ├── WindMailBinary.php │ │ └── WindMailQp.php │ ├── exception │ │ └── WindMailException.php │ ├── protocol │ │ ├── WindImap.php │ │ ├── WindPop3.php │ │ ├── WindSmtp.php │ │ └── WindSocket.php │ └── sender │ │ ├── IWindSendMail.php │ │ ├── WindPhpMail.php │ │ ├── WindSendMail.php │ │ └── WindSmtpMail.php ├── parser │ ├── IWindConfigParser.php │ ├── WindConfigParser.php │ ├── WindIniParser.php │ ├── WindPropertiesParser.php │ └── WindXmlParser.php ├── readme ├── router │ ├── AbstractWindRouter.php │ ├── WindCommandRouter.php │ ├── WindMultiAppRouter.php │ ├── WindRouter.php │ └── route │ │ ├── AbstractWindRoute.php │ │ └── WindRewriteRoute.php ├── security │ ├── IWindSecurity.php │ ├── WindMcryptCbc.php │ └── WindXxtea.php ├── token │ ├── IWindSecurityToken.php │ └── WindSecurityToken.php ├── upload │ ├── AbstractWindUpload.php │ ├── WindFormUpload.php │ └── WindFtpUpload.php ├── utility │ ├── WindArray.php │ ├── WindConvert.php │ ├── WindCookie.php │ ├── WindDate.php │ ├── WindFile.php │ ├── WindFolder.php │ ├── WindGeneralDate.php │ ├── WindImage.php │ ├── WindJson.php │ ├── WindPack.php │ ├── WindSecurity.php │ ├── WindString.php │ ├── WindUrlHelper.php │ ├── WindUtility.php │ └── WindValidator.php ├── viewer │ ├── AbstractWindTemplateCompiler.php │ ├── AbstractWindViewTemplate.php │ ├── IWindView.php │ ├── IWindViewerResolver.php │ ├── WindLayout.php │ ├── WindView.php │ ├── compiler │ │ ├── WindTemplateCompilerAction.php │ │ ├── WindTemplateCompilerComponent.php │ │ ├── WindTemplateCompilerCss.php │ │ ├── WindTemplateCompilerEcho.php │ │ ├── WindTemplateCompilerInternal.php │ │ ├── WindTemplateCompilerLang.php │ │ ├── WindTemplateCompilerScript.php │ │ ├── WindTemplateCompilerTemplate.php │ │ ├── WindTemplateCompilerToken.php │ │ └── WindViewTemplate.php │ ├── exception │ │ └── WindViewException.php │ └── resolver │ │ ├── WindNormalViewerResolver.php │ │ └── WindViewerResolver.php └── web │ ├── WindController.php │ ├── WindDispatcher.php │ ├── WindErrorHandler.php │ ├── WindForward.php │ ├── WindHttpRequest.php │ ├── WindHttpResponse.php │ ├── WindSimpleController.php │ ├── WindUrlHelper.php │ ├── WindWebApplication.php │ ├── WindWebError.php │ ├── WindWebFrontController.php │ ├── filter │ └── WindFormFilter.php │ └── view │ ├── close.htm │ ├── error.htm │ └── erroraction.htm └── www ├── .htaccess ├── aCloud ├── index.html └── index.php ├── admin.php ├── attachment └── index.html ├── crossdomain.xml ├── favicon.ico ├── html └── index.html ├── humans.txt ├── index.php ├── install.php ├── pay ├── alipay.php ├── pay99bill.php ├── paypal.php └── tenpay.php ├── read.php ├── res ├── css │ ├── admin_layout.css │ ├── admin_login.css │ ├── admin_style.css │ ├── article.css │ ├── demo.css │ ├── editor_content.css │ ├── install.css │ └── portal.css ├── images │ ├── admin │ │ ├── appcenter │ │ │ └── arrow.png │ │ ├── bg.jpg │ │ ├── content │ │ │ ├── app_bg.png │ │ │ ├── btn.png │ │ │ ├── btn_add.png │ │ │ ├── btn_wrap.png │ │ │ ├── close.png │ │ │ ├── down.png │ │ │ ├── file_up.png │ │ │ ├── gray_mini_tips.png │ │ │ ├── high_light.png │ │ │ ├── hr.png │ │ │ ├── icon_list.png │ │ │ ├── input_hd.png │ │ │ ├── install_schedule.png │ │ │ ├── link_add.png │ │ │ ├── loading.gif │ │ │ ├── next.png │ │ │ ├── pre.png │ │ │ ├── return.png │ │ │ ├── select_down.png │ │ │ ├── small.png │ │ │ ├── thumb_up.png │ │ │ ├── transparent.png │ │ │ ├── up.png │ │ │ ├── yarnball.png │ │ │ └── zip.png │ │ ├── layout │ │ │ ├── bg.jpg │ │ │ ├── bg.png │ │ │ ├── logo.png │ │ │ └── nav_cur.png │ │ ├── login │ │ │ ├── bg.jpg │ │ │ ├── btn.png │ │ │ └── logo.png │ │ ├── none.png │ │ ├── tips │ │ │ ├── light.png │ │ │ ├── light_mini.png │ │ │ ├── pop_showmsg.png │ │ │ ├── success.gif │ │ │ ├── tips_follow.png │ │ │ └── warning.gif │ │ └── yy.png │ ├── article │ │ └── icon.png │ ├── audio.swf │ ├── blank.gif │ ├── crossdomain.xml │ ├── editor │ │ ├── blockquote.png │ │ ├── del.png │ │ ├── file_icon.png │ │ └── return.png │ ├── emotion │ │ └── taodoll │ │ │ ├── 01.gif │ │ │ ├── 02.gif │ │ │ ├── 03.gif │ │ │ ├── 04.gif │ │ │ ├── 05.gif │ │ │ ├── 06.gif │ │ │ ├── 07.gif │ │ │ ├── 08.gif │ │ │ ├── 09.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ └── 26.gif │ ├── face │ │ ├── ban_big.jpg │ │ ├── ban_middle.jpg │ │ ├── ban_small.jpg │ │ ├── face_big.jpg │ │ ├── face_middle.jpg │ │ └── face_small.jpg │ ├── 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 │ ├── level │ │ ├── 0.gif │ │ ├── 1.gif │ │ ├── 10.gif │ │ ├── 11.gif │ │ ├── 12.gif │ │ ├── 13.gif │ │ ├── 14.gif │ │ ├── 15.gif │ │ ├── 16.gif │ │ ├── 17.gif │ │ ├── 18.gif │ │ ├── 19.gif │ │ ├── 2.gif │ │ ├── 20.gif │ │ ├── 3.gif │ │ ├── 4.gif │ │ ├── 5.gif │ │ ├── 6.gif │ │ ├── 7.gif │ │ ├── 8.gif │ │ └── 9.gif │ ├── management │ │ ├── arrow_down.png │ │ └── arrow_up.png │ ├── medal │ │ ├── big │ │ │ ├── rongyuhuiyuan.gif │ │ │ ├── shequjumin.gif │ │ │ ├── shequlaomo.gif │ │ │ ├── shequmingxing.gif │ │ │ ├── viphuiyuan.gif │ │ │ ├── xihuandaren.gif │ │ │ ├── youxiubanzhu.gif │ │ │ ├── yuanchuangxieshou.gif │ │ │ ├── zhongshihuiyuan.gif │ │ │ ├── zhuixingyizu.gif │ │ │ └── zuiaishafa.gif │ │ └── icon │ │ │ ├── rongyuhuiyuan.gif │ │ │ ├── shequjumin.gif │ │ │ ├── shequlaomo.gif │ │ │ ├── shequmingxing.gif │ │ │ ├── viphuiyuan.gif │ │ │ ├── xihuandaren.gif │ │ │ ├── youxiubanzhu.gif │ │ │ ├── yuanchuangxieshou.gif │ │ │ ├── zhongshihuiyuan.gif │ │ │ ├── zhuixingyizu.gif │ │ │ └── zuiaishafa.gif │ ├── myspace │ │ ├── close.png │ │ ├── lock.png │ │ └── themes_pages.png │ ├── portal │ │ └── thumb_up.png │ └── transparent.png └── js │ └── dev │ ├── jquery.js │ ├── pages │ ├── admin │ │ ├── auth_manage.js │ │ ├── common │ │ │ ├── common.js │ │ │ ├── forumTree_table.js │ │ │ └── windId.js │ │ └── role_manage.js │ ├── announce │ │ └── admin │ │ │ └── announceSub.js │ ├── appcenter │ │ └── admin │ │ │ ├── appcenter_iframeHeightAuto.js │ │ │ ├── appcenter_manage.js │ │ │ └── setUpApp.js │ ├── bbs │ │ ├── buyRecords.js │ │ ├── media_play.js │ │ ├── postGuide.js │ │ ├── postVote.js │ │ ├── read.js │ │ ├── readVote.js │ │ ├── threadManage.js │ │ └── topicType.js │ ├── common │ │ ├── checkListGroup.js │ │ ├── freshRead.js │ │ ├── global.js │ │ ├── headMain.js │ │ ├── insertEmotions.js │ │ ├── likePlus.js │ │ ├── quickLogin.js │ │ ├── report.js │ │ ├── sendMsgPop.js │ │ ├── sidebarMain.js │ │ ├── userAt.js │ │ └── userTag.js │ ├── config │ │ └── admin │ │ │ └── schoolData.js │ ├── design │ │ └── design_index.js │ ├── medal │ │ ├── admin │ │ │ └── medal_manage.js │ │ └── medal.js │ ├── message │ │ └── message_index.js │ ├── my │ │ ├── fansFollow.js │ │ └── freshFast.js │ ├── mylike │ │ └── like_index.js │ ├── profile │ │ ├── profileAvatarNormal.js │ │ ├── profileCredit.js │ │ ├── profileEducation.js │ │ ├── profileIndex.js │ │ ├── profilePwdQa.js │ │ ├── profileRecharge.js │ │ ├── profileRights.js │ │ ├── profileTag.js │ │ └── profileWork.js │ ├── pwadmin │ │ └── rightsCpoy.js │ ├── recycle │ │ └── recycle_index.js │ ├── space │ │ └── space_index.js │ ├── tag │ │ └── tag_index.js │ ├── task │ │ ├── admin │ │ │ └── task_manage.js │ │ └── task_index.js │ ├── u │ │ └── regMobileCheck.js │ └── vote │ │ ├── vote_index.js │ │ └── vote_post.js │ ├── ui_libs │ ├── chosen │ │ ├── chosen-sprite.png │ │ ├── chosen.css │ │ └── chosen.js │ ├── colorPicker │ │ ├── colorPicker.js │ │ ├── images │ │ │ ├── color_panel.png │ │ │ └── color_picker.png │ │ └── style.css │ ├── datePicker │ │ ├── bg.png │ │ ├── datePicker.js │ │ └── style.css │ ├── dialog │ │ └── dialog.js │ ├── dropdown │ │ └── dropdown.js │ ├── region │ │ └── region.js │ ├── school │ │ └── school.js │ ├── tabs │ │ └── tabs.js │ └── tips │ │ └── tips.js │ ├── util_libs │ ├── ajaxForm.js │ ├── bgiframe.js │ ├── dateSelect.js │ ├── dragUpload.js │ ├── draggable.js │ ├── dragsort.js │ ├── emailAutoMatch.js │ ├── gallerySlide.js │ ├── hotkeys.js │ ├── hoverdelay.js │ ├── jPlayer │ │ ├── Jplayer.swf │ │ ├── add-on │ │ │ ├── jplayer.playlist.min.js │ │ │ └── jquery.jplayer.inspector.js │ │ ├── jplayer.js │ │ └── skin │ │ │ ├── blue.monday │ │ │ ├── jplayer.blue.monday.css │ │ │ ├── jplayer.blue.monday.jpg │ │ │ ├── jplayer.blue.monday.seeking.gif │ │ │ └── jplayer.blue.monday.video.play.png │ │ │ └── pink.flag │ │ │ ├── jplayer.pink.flag.css │ │ │ ├── jplayer.pink.flag.jpg │ │ │ ├── jplayer.pink.flag.seeking.gif │ │ │ └── jplayer.pink.flag.video.play.png │ ├── lazySlide.js │ ├── lazyload.js │ ├── localStorage.js │ ├── masonry.js │ ├── pjax.js │ ├── rangeInsert.js │ ├── requestFullScreen.js │ ├── scrollFixed.js │ ├── slidePlayer.js │ ├── slides.js │ ├── swfobject │ │ ├── expressInstall.swf │ │ └── swfobject.js │ ├── swfupload │ │ ├── Flash │ │ │ ├── SWFUpload.as │ │ │ └── swfupload.swf │ │ ├── button80x25.png │ │ ├── plugins │ │ │ ├── swfupload.cookies.js │ │ │ ├── swfupload.pluginMain.js │ │ │ ├── swfupload.queue.js │ │ │ ├── swfupload.speed.js │ │ │ └── swfupload.swfobject.js │ │ └── swfupload.js │ ├── syntaxHihglighter │ │ ├── scripts │ │ │ ├── clipboard.swf │ │ │ └── shCore.js │ │ └── styles │ │ │ ├── help.png │ │ │ ├── magnifier.png │ │ │ ├── page_white_code.png │ │ │ ├── page_white_copy.png │ │ │ ├── printer.png │ │ │ ├── shCoreDefault.css │ │ │ └── wrapping.png │ ├── textCopy │ │ ├── textCopy.js │ │ └── zeroClipboard │ │ │ ├── ZeroClipboard.js │ │ │ ├── ZeroClipboard10.as │ │ │ ├── ZeroClipboard10.fla │ │ │ └── ZeroClipboard10.swf │ ├── timeago.js │ ├── uploadPreview.js │ └── validate.js │ ├── wind.js │ └── windeditor │ ├── i18n │ └── zh-CN.js │ ├── plugins │ ├── atremind │ │ └── plugin.js │ ├── bbcode │ │ └── plugin.js │ ├── codemirror │ │ ├── codemirror │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ └── plugin.js │ ├── dragDropUpload │ │ └── plugin.js │ ├── insertCode │ │ ├── plugin.js │ │ └── syntaxHihglighter │ │ │ ├── scripts │ │ │ └── shCore.js │ │ │ └── styles │ │ │ └── shCoreDefault.css │ ├── insertEmoticons │ │ └── plugin.js │ ├── insertFile │ │ └── plugin.js │ ├── insertHide │ │ └── plugin.js │ ├── insertMusic │ │ └── plugin.js │ ├── insertPhoto │ │ └── plugin.js │ ├── insertSell │ │ └── plugin.js │ ├── insertVideo │ │ └── plugin.js │ └── openApp │ │ └── plugin.js │ ├── themes │ ├── buyiui │ │ ├── blank.gif │ │ ├── buyiui.css │ │ ├── down.png │ │ ├── music_48.png │ │ ├── pic.jpg │ │ ├── rar.png │ │ ├── toolbar.png │ │ └── video_48.png │ └── default │ │ ├── blank.gif │ │ ├── btn.png │ │ ├── checkbox.png │ │ ├── color_picker.png │ │ ├── default.css │ │ ├── del.png │ │ ├── down.png │ │ ├── edit_menu_upfile_bg.png │ │ ├── edit_tips.png │ │ ├── file_icon.png │ │ ├── music_48.png │ │ ├── photo_edit.png │ │ ├── pic.jpg │ │ ├── pop_close.png │ │ ├── rar.png │ │ ├── toolbar.png │ │ ├── video_48.png │ │ └── zip.gif │ └── windeditor.js ├── robots.txt ├── template ├── admin │ ├── auth_add.htm │ ├── auth_edit.htm │ ├── auth_run.htm │ ├── common │ │ ├── error.htm │ │ ├── footer.htm │ │ ├── head.htm │ │ └── message.htm │ ├── custom_run.htm │ ├── find_run.htm │ ├── founder_add.htm │ ├── founder_edit.htm │ ├── founder_run.htm │ ├── home_run.htm │ ├── index_login.htm │ ├── index_run.htm │ ├── role_add.htm │ ├── role_edit.htm │ ├── role_run.htm │ ├── safe_run.htm │ └── storage_ftp.htm ├── announce │ ├── admin │ │ ├── announce_add.htm │ │ ├── announce_run.htm │ │ └── announce_update.htm │ ├── announce.htm │ └── index_run.htm ├── appcenter │ ├── admin │ │ ├── app_hook.htm │ │ ├── app_install.htm │ │ ├── app_run.htm │ │ ├── develop_addhook.htm │ │ ├── develop_edit.htm │ │ ├── develop_edithook.htm │ │ ├── develop_editxml.htm │ │ ├── develop_run.htm │ │ ├── fixup_ftp.htm │ │ ├── fixup_run.htm │ │ ├── head_css.htm │ │ ├── installForm.htm │ │ ├── server_appcenter.htm │ │ ├── server_run.htm │ │ ├── style_generate.htm │ │ ├── style_install.htm │ │ ├── style_manage.htm │ │ ├── style_run.htm │ │ ├── upgrade_check.htm │ │ ├── upgrade_db.htm │ │ ├── upgrade_doupgrade.htm │ │ ├── upgrade_download.htm │ │ ├── upgrade_end.htm │ │ ├── upgrade_file.htm │ │ ├── upgrade_list.htm │ │ └── upgrade_run.htm │ ├── app_index_run.htm │ └── apps_run.htm ├── backup │ └── admin │ │ ├── backup_restore.htm │ │ └── backup_run.htm ├── bbs │ ├── admin │ │ ├── article_searchreply.htm │ │ ├── article_searchreply_advanced.htm │ │ ├── article_searchthread.htm │ │ ├── article_searchthread_advanced.htm │ │ ├── cache_run.htm │ │ ├── configbbs_run.htm │ │ ├── contentcheck_reply.htm │ │ ├── contentcheck_run.htm │ │ ├── message_run.htm │ │ ├── message_send.htm │ │ ├── recycle_reply.htm │ │ ├── recycle_run.htm │ │ ├── setbbs_read.htm │ │ ├── setbbs_run.htm │ │ ├── setbbs_thread.htm │ │ ├── setforum_edit.htm │ │ ├── setforum_editname.htm │ │ ├── setforum_run.htm │ │ └── setforum_unite.htm │ ├── buythread_record.htm │ ├── cate_run.htm │ ├── forum_list.htm │ ├── forum_list_table.htm │ ├── forum_my.htm │ ├── forum_password.htm │ ├── forum_run.htm │ ├── index_run.htm │ ├── layout_manage_threads.htm │ ├── manage_threads.htm │ ├── masingle_threads.htm │ ├── mine_tab.htm │ ├── post_fastreply.htm │ ├── post_poll.htm │ ├── post_replylist.htm │ ├── post_run.htm │ ├── read_floor.htm │ ├── read_log.htm │ ├── read_reply_floor.htm │ ├── read_run.htm │ ├── read_vote.htm │ ├── remind_friend.htm │ ├── thread_run.htm │ ├── user_run.htm │ ├── widget_forum.htm │ ├── widget_thread.htm │ ├── widget_thread_page.htm │ └── wind_editor.htm ├── common │ ├── card_run.htm │ ├── error.htm │ ├── footer.htm │ ├── head.htm │ ├── header.htm │ ├── header_login.htm │ ├── layout_error.htm │ ├── page.htm │ ├── page_vertical.htm │ ├── sidebar_1.htm │ ├── sidebar_2.htm │ ├── sidebar_mod_app.htm │ ├── sidebar_mod_forum.htm │ ├── sidebar_mod_my.htm │ ├── sidebar_mod_my_forum.htm │ ├── sidebar_mod_thread.htm │ ├── sidebar_mod_user.htm │ ├── widgets │ │ ├── checkbox.htm │ │ ├── font.htm │ │ ├── radio.htm │ │ ├── select.htm │ │ ├── text.htm │ │ ├── textarea.htm │ │ └── timezone.htm │ └── windweb │ │ ├── close.htm │ │ ├── error.htm │ │ └── erroraction.htm ├── config │ └── admin │ │ ├── attachment_run.htm │ │ ├── attachment_storage.htm │ │ ├── attachment_thumb.htm │ │ ├── config_run.htm │ │ ├── config_site.htm │ │ ├── editor_run.htm │ │ ├── email_run.htm │ │ ├── email_send.htm │ │ ├── message_run.htm │ │ ├── mobile_run.htm │ │ ├── mobile_set.htm │ │ ├── notice_run.htm │ │ ├── pay_run.htm │ │ ├── punch_run.htm │ │ ├── regist_guide.htm │ │ ├── regist_login.htm │ │ ├── regist_run.htm │ │ ├── security_run.htm │ │ ├── storage_ftp.htm │ │ ├── storage_run.htm │ │ ├── watermark_run.htm │ │ └── watermark_set.htm ├── credit │ └── admin │ │ ├── credit_exchange.htm │ │ ├── credit_headtab.htm │ │ ├── credit_log.htm │ │ ├── credit_recharge.htm │ │ ├── credit_run.htm │ │ ├── credit_strategy.htm │ │ └── credit_transfer.htm ├── cron │ └── admin │ │ ├── cron_add.htm │ │ ├── cron_edit.htm │ │ └── cron_run.htm ├── design │ ├── admin │ │ ├── component_add1.htm │ │ ├── component_add2.htm │ │ ├── component_edit.htm │ │ ├── component_run.htm │ │ ├── data_edit.htm │ │ ├── data_push.htm │ │ ├── data_run.htm │ │ ├── module_api.htm │ │ ├── module_run.htm │ │ ├── module_script.htm │ │ ├── page_run.htm │ │ ├── permissions_module.htm │ │ ├── permissions_page.htm │ │ ├── permissions_run.htm │ │ ├── permissions_view.htm │ │ ├── portal_run.htm │ │ ├── property_add1.htm │ │ ├── property_add2.htm │ │ ├── property_edit.htm │ │ ├── push_run.htm │ │ ├── push_shield.htm │ │ ├── push_status.htm │ │ └── template_edit.htm │ ├── api_script.htm │ ├── data_add.htm │ ├── data_edit.htm │ ├── data_push.htm │ ├── data_run.htm │ ├── portal_add.htm │ ├── portal_edit.htm │ ├── property │ │ ├── image.htm │ │ └── user_area.htm │ ├── property_add.htm │ ├── property_edit.htm │ ├── push_add.htm │ ├── segment │ │ ├── component.htm │ │ ├── data_edit.htm │ │ ├── data_push.htm │ │ ├── data_run.htm │ │ ├── module.htm │ │ ├── property.htm │ │ ├── structure.htm │ │ ├── style.htm │ │ ├── title.htm │ │ ├── toolbar.htm │ │ └── toolbar_lock.htm │ ├── structure_edit.htm │ ├── structure_style.htm │ ├── structure_title.htm │ ├── style_edit.htm │ ├── template_edit.htm │ └── title_edit.htm ├── emotion │ └── admin │ │ ├── emotion_emotion.htm │ │ └── emotion_run.htm ├── hook │ └── admin │ │ ├── inject_add.htm │ │ ├── inject_detail.htm │ │ ├── inject_edit.htm │ │ ├── manage_add.htm │ │ ├── manage_detail.htm │ │ ├── manage_edit.htm │ │ ├── manage_run.htm │ │ └── nextpage.htm ├── install │ ├── common │ │ └── error.htm │ ├── footer.htm │ ├── header.htm │ ├── index_check.htm │ ├── index_finish.htm │ ├── index_info.htm │ ├── index_run.htm │ ├── index_table.htm │ ├── index_tpl.htm │ ├── upgrade_avatar.htm │ └── upgrade_finish.htm ├── like │ ├── like_run.htm │ ├── mylike_run.htm │ └── mylike_ta.htm ├── link │ ├── admin │ │ ├── link_add.htm │ │ ├── link_addtype.htm │ │ ├── link_check.htm │ │ ├── link_edit.htm │ │ ├── link_edittype.htm │ │ ├── link_run.htm │ │ ├── link_tab.htm │ │ └── link_types.htm │ ├── index_run.htm │ └── link.htm ├── log │ └── admin │ │ ├── manage_admin.htm │ │ ├── manage_login.htm │ │ └── manage_run.htm ├── manage │ ├── content_reply.htm │ ├── content_run.htm │ ├── manage_layout.htm │ ├── managelog_run.htm │ ├── menubar_left.htm │ ├── recycle_reply.htm │ ├── recycle_run.htm │ ├── report_run.htm │ ├── user_email.htm │ └── user_run.htm ├── medal │ ├── admin │ │ ├── medal_add.htm │ │ ├── medal_addaward.htm │ │ ├── medal_approval.htm │ │ ├── medal_award.htm │ │ ├── medal_edit.htm │ │ ├── medal_run.htm │ │ └── medal_set.htm │ ├── index_center.htm │ ├── index_order.htm │ ├── index_run.htm │ ├── index_show.htm │ └── read_medal.htm ├── message │ ├── admin │ │ ├── manage_run.htm │ │ └── manage_send.htm │ ├── layout_notice_minilist.htm │ ├── message_add.htm │ ├── message_dialog.htm │ ├── message_header.htm │ ├── message_pop.htm │ ├── message_run.htm │ ├── message_search.htm │ ├── message_searchdialog.htm │ ├── message_set.htm │ ├── notice_detail.htm │ ├── notice_detaillist.htm │ ├── notice_minilist.htm │ ├── notice_minitop.htm │ ├── notice_run.htm │ ├── notice_segment_app.htm │ ├── notice_segment_attention.htm │ ├── notice_segment_ban.htm │ ├── notice_segment_credit.htm │ ├── notice_segment_default.htm │ ├── notice_segment_massmessage.htm │ ├── notice_segment_medal.htm │ ├── notice_segment_message.htm │ ├── notice_segment_postreply.htm │ ├── notice_segment_remind.htm │ ├── notice_segment_report.htm │ ├── notice_segment_task.htm │ ├── notice_segment_threadmanage.htm │ └── notice_segment_threadreply.htm ├── my │ ├── article_reply.htm │ ├── article_run.htm │ ├── fans_run.htm │ ├── follow_run.htm │ ├── fresh_doreply.htm │ ├── fresh_floor.htm │ ├── fresh_post.htm │ ├── fresh_reply.htm │ ├── fresh_run.htm │ ├── friend_friend.htm │ ├── friend_run.htm │ ├── friend_search.htm │ ├── invite_friend.htm │ ├── invite_run.htm │ ├── invite_statistics.htm │ ├── recommend_mod_user.htm │ ├── recommend_same_user.htm │ ├── visitor_run.htm │ └── visitor_tovisit.htm ├── nav │ └── admin │ │ ├── nav_edit.htm │ │ ├── nav_run.htm │ │ └── nav_tab.htm ├── profile │ ├── education_run.htm │ ├── extends_run.htm │ ├── profile_avatar.htm │ ├── profile_black.htm │ ├── profile_contact.htm │ ├── profile_credit.htm │ ├── profile_credit_log.htm │ ├── profile_credit_order.htm │ ├── profile_credit_recharge.htm │ ├── profile_credit_tab.htm │ ├── profile_editemail.htm │ ├── profile_layout.htm │ ├── profile_left.htm │ ├── profile_password.htm │ ├── profile_question.htm │ ├── profile_right.htm │ ├── profile_run.htm │ ├── profile_run_tab.htm │ ├── profile_secret.htm │ ├── profile_tag.htm │ ├── verify_run.htm │ └── work_run.htm ├── pwadmin │ └── home_run.htm ├── report │ ├── admin │ │ ├── manage_receiverlist.htm │ │ └── manage_run.htm │ └── index_report.htm ├── rewrite │ └── admin │ │ ├── domain_run.htm │ │ └── rewrite_run.htm ├── seo │ └── admin │ │ ├── areaseo_run.htm │ │ ├── likeseo_run.htm │ │ ├── manage_bbs.bak.htm │ │ ├── manage_bbs.htm │ │ ├── seoTab.htm │ │ ├── seofooter.htm │ │ └── topicseo_run.htm ├── space │ ├── ban_run.htm │ ├── common │ │ ├── nav.htm │ │ ├── sidebar.htm │ │ └── sidebar_more.htm │ ├── fans_run.htm │ ├── follows_run.htm │ ├── index_fresh.htm │ ├── index_reply.htm │ ├── index_run.htm │ ├── myspace_doreply.htm │ ├── myspace_run.htm │ ├── profile_extend.htm │ ├── profile_run.htm │ ├── punch_friend.htm │ ├── thread_post.htm │ └── thread_run.htm ├── special │ ├── default │ │ ├── Manifest.xml │ │ ├── css │ │ │ └── style.css │ │ ├── help.txt │ │ └── template │ │ │ └── index.htm │ ├── index.htm │ └── index_run.htm ├── tag │ ├── admin │ │ ├── manage_add.htm │ │ ├── manage_category.htm │ │ ├── manage_edit.htm │ │ ├── manage_editcategory.htm │ │ ├── manage_merge.htm │ │ ├── manage_move.htm │ │ └── manage_run.htm │ ├── common_hot_model.htm │ ├── index_card.htm │ ├── index_hot_model.htm │ ├── index_my.htm │ ├── index_my_model.htm │ ├── index_run.htm │ ├── index_view.htm │ └── post_tag.htm ├── task │ ├── admin │ │ ├── condition │ │ │ ├── bbs_like.htm │ │ │ ├── bbs_post.htm │ │ │ ├── bbs_reply.htm │ │ │ ├── member_avatar.htm │ │ │ ├── member_fans.htm │ │ │ ├── member_msg.htm │ │ │ ├── member_profile.htm │ │ │ └── member_punch.htm │ │ ├── manage_add.htm │ │ ├── manage_edit.htm │ │ ├── manage_run.htm │ │ └── reward │ │ │ ├── reward_credit.htm │ │ │ └── reward_group.htm │ ├── index_applicable.htm │ ├── index_complete.htm │ └── index_run.htm ├── u │ ├── admin │ │ ├── check_email.htm │ │ ├── check_run.htm │ │ ├── forbidden_auto.htm │ │ ├── forbidden_list.htm │ │ ├── forbidden_run.htm │ │ ├── groups_edit.htm │ │ ├── groups_run.htm │ │ ├── groups_setright.htm │ │ ├── manage_add.htm │ │ ├── manage_clear.htm │ │ ├── manage_edit.htm │ │ ├── manage_editcredit.htm │ │ ├── manage_editgroup.htm │ │ ├── manage_run.htm │ │ ├── permission_html_segments.htm │ │ ├── permission_type_segments.htm │ │ ├── tag_run.htm │ │ └── upgrade_run.htm │ ├── findpwd_bymail.htm │ ├── findpwd_bymobile.htm │ ├── findpwd_close.htm │ ├── findpwd_resetpwd.htm │ ├── findpwd_run.htm │ ├── findpwd_way.htm │ ├── login.htm │ ├── login_fast.htm │ ├── login_logout.htm │ ├── login_question.htm │ ├── login_setquestion.htm │ ├── login_welcome.htm │ ├── register.htm │ ├── register_about.htm │ ├── register_close.htm │ ├── register_emailactive.htm │ └── register_segment_needfields.htm ├── verify │ └── admin │ │ ├── verify_run.htm │ │ └── verify_set.htm ├── vote │ ├── admin │ │ ├── manage_editforum.htm │ │ └── manage_run.htm │ ├── hot_run.htm │ ├── listcommon.htm │ ├── my_create.htm │ ├── my_run.htm │ ├── sidebar.htm │ ├── ta_create.htm │ └── ta_run.htm ├── windid │ └── admin │ │ ├── areadata_run.htm │ │ ├── client_add.htm │ │ ├── client_edit.htm │ │ ├── client_run.htm │ │ ├── credit_run.htm │ │ ├── messages_run.htm │ │ ├── notify_run.htm │ │ ├── regist_run.htm │ │ ├── schooldata_run.htm │ │ ├── site_run.htm │ │ ├── storage_run.htm │ │ ├── user_add.htm │ │ ├── user_edit.htm │ │ ├── user_editcredit.htm │ │ └── user_run.htm ├── windidadmin │ └── home_run.htm ├── windidclient │ └── admin │ │ ├── areadata_run.htm │ │ ├── client_add.htm │ │ ├── client_edit.htm │ │ ├── client_run.htm │ │ ├── notify_run.htm │ │ ├── schooldata_run.htm │ │ └── windid_run.htm └── word │ └── admin │ ├── manage_add.htm │ ├── manage_batchedit.htm │ ├── manage_edit.htm │ ├── manage_import.htm │ └── manage_run.htm ├── themes ├── forum │ └── default │ │ ├── Manifest.xml │ │ ├── css │ │ └── dev │ │ │ ├── forum.css │ │ │ └── post.css │ │ ├── images │ │ ├── forum │ │ │ ├── bg.png │ │ │ ├── lock.gif │ │ │ ├── new.gif │ │ │ ├── not_followforum.png │ │ │ ├── old.gif │ │ │ ├── pop_read_like_hd.png │ │ │ ├── signature.png │ │ │ └── speaker.png │ │ ├── post │ │ │ ├── arrow.png │ │ │ └── image_up.png │ │ └── preview.jpg │ │ └── template │ │ └── bbs │ │ ├── thread_run.htm │ │ └── widget_thread.htm ├── site │ └── default │ │ ├── Manifest.xml │ │ ├── css │ │ └── dev │ │ │ ├── announce.css │ │ │ ├── app.css │ │ │ ├── article.css │ │ │ ├── core.css │ │ │ ├── fans.css │ │ │ ├── forum.css │ │ │ ├── fresh.css │ │ │ ├── invite.css │ │ │ ├── like.css │ │ │ ├── logout.css │ │ │ ├── medal.css │ │ │ ├── message.css │ │ │ ├── post.css │ │ │ ├── profile.css │ │ │ ├── register.css │ │ │ ├── style.css │ │ │ ├── tag.css │ │ │ ├── task.css │ │ │ └── vote.css │ │ └── images │ │ ├── app │ │ └── app_bg.png │ │ ├── article │ │ └── icon.png │ │ ├── common │ │ ├── blank.gif │ │ ├── core_bg.png │ │ ├── core_icon.png │ │ ├── header_dorp.png │ │ ├── hook.png │ │ ├── loading.gif │ │ ├── message.png │ │ ├── next.cur │ │ ├── pay.png │ │ ├── pre.cur │ │ ├── radio_disabled.png │ │ ├── style_bg.png │ │ └── style_icon.png │ │ ├── design │ │ ├── li_bg_50.png │ │ ├── light.png │ │ ├── mode_h_bg.png │ │ ├── sort.png │ │ └── sort_50.png │ │ ├── fans │ │ ├── add.png │ │ └── mnfollow.png │ │ ├── forum │ │ ├── bg.png │ │ ├── lock.gif │ │ ├── new.gif │ │ ├── not_followforum.png │ │ ├── old.gif │ │ ├── pop_read_like_hd.png │ │ ├── signature.png │ │ └── speaker.png │ │ ├── fresh │ │ ├── close_white.png │ │ ├── post_icon.png │ │ └── select.png │ │ ├── like │ │ ├── add.png │ │ ├── heart.png │ │ ├── like_button.png │ │ └── not_tips.png │ │ ├── logo.png │ │ ├── main_bg.png │ │ ├── medal │ │ ├── arrow.png │ │ ├── pre_next.png │ │ └── rank_list.png │ │ ├── message │ │ ├── msg.mp3 │ │ ├── msg.wav │ │ └── search.png │ │ ├── post │ │ ├── arrow.png │ │ └── image_up.png │ │ ├── preview.jpg │ │ ├── profile │ │ ├── add_blue.png │ │ ├── arrow.png │ │ ├── contrast.png │ │ ├── current.png │ │ ├── judgment.png │ │ ├── lock.png │ │ ├── my_group_h2.png │ │ └── type.png │ │ ├── register │ │ ├── arrow_reg.png │ │ ├── mail_64.png │ │ ├── phone_64.png │ │ └── pwd_strength.png │ │ ├── tags │ │ ├── add.png │ │ ├── default.png │ │ └── hot_list.png │ │ ├── task │ │ ├── none.png │ │ └── progress.png │ │ ├── tips │ │ ├── big.png │ │ ├── gray_big.png │ │ ├── gray_middle.png │ │ ├── middle.png │ │ └── small.png │ │ └── vote │ │ ├── new_list.png │ │ ├── none_thumb.jpg │ │ └── progress_bg.png └── space │ └── default │ ├── Manifest.xml │ ├── css │ └── dev │ │ └── style.css │ └── images │ ├── add_fans_sort.png │ ├── bg.png │ ├── design_space_edit.png │ ├── fans_follow.png │ ├── gray_big.png │ ├── gray_middle.png │ ├── mini_add.png │ ├── mini_mail.png │ ├── mnfollow.png │ ├── posts_icon.png │ └── preview.jpg ├── thumb.php ├── windid.php └── windid ├── admin.php ├── attachment └── index.html ├── crossdomain.xml ├── index.php └── res ├── css ├── admin_layout.css ├── admin_login.css └── admin_style.css ├── images ├── admin │ ├── content │ │ ├── btn.png │ │ ├── btn_wrap.png │ │ ├── close.png │ │ ├── file_up.png │ │ ├── hr.png │ │ ├── input_hd.png │ │ ├── install_schedule.png │ │ ├── link_add.png │ │ ├── loading.gif │ │ ├── return.png │ │ └── yarnball.png │ ├── layout │ │ ├── bg.jpg │ │ ├── bg.png │ │ ├── logo.png │ │ └── nav_cur.png │ ├── login │ │ ├── bg.jpg │ │ ├── btn.png │ │ └── logo.png │ └── tips │ │ └── tips_follow.png └── face │ ├── face_big.jpg │ ├── face_middle.jpg │ └── face_small.jpg ├── js └── dev │ ├── jquery.js │ ├── pages │ ├── admin │ │ ├── auth_manage.js │ │ ├── common │ │ │ ├── common.js │ │ │ ├── forumTree_table.js │ │ │ └── windId.js │ │ └── role_manage.js │ ├── appcenter │ │ └── admin │ │ │ └── setUpApp.js │ └── config │ │ └── admin │ │ └── schoolData.js │ ├── ui_libs │ ├── datePicker │ │ ├── bg.png │ │ ├── datePicker.js │ │ └── style.css │ ├── dialog │ │ └── dialog.js │ └── region │ │ └── region.js │ ├── util_libs │ ├── ajaxForm.js │ ├── draggable.js │ └── swfupload │ │ ├── Flash │ │ ├── SWFUpload.as │ │ └── swfupload.swf │ │ ├── button80x25.png │ │ ├── plugins │ │ ├── swfupload.cookies.js │ │ ├── swfupload.pluginMain.js │ │ ├── swfupload.queue.js │ │ ├── swfupload.speed.js │ │ └── swfupload.swfobject.js │ │ └── swfupload.js │ └── wind.js └── swf └── avatar ├── avatar.swf └── face ├── .actionScriptProperties ├── .project ├── .settings └── com.adobe.flexbuilder.flashbridge.prefs ├── AuthortimeSharedAssets.fla ├── Crop.as ├── Crop.fla ├── com ├── adobe │ ├── air │ │ └── logging │ │ │ └── FileTarget.as │ ├── crypto │ │ ├── HMAC.as │ │ ├── MD5.as │ │ ├── MD5Stream.as │ │ ├── SHA1.as │ │ ├── SHA224.as │ │ ├── SHA256.as │ │ └── WSSEUsernameToken.as │ ├── errors │ │ └── IllegalStateError.as │ ├── fileformats │ │ └── vcard │ │ │ ├── Address.as │ │ │ ├── Email.as │ │ │ ├── Phone.as │ │ │ ├── VCard.as │ │ │ └── VCardParser.as │ ├── images │ │ ├── BitString.as │ │ ├── JPGEncoder.as │ │ └── PNGEncoder.as │ ├── net │ │ ├── DynamicURLLoader.as │ │ ├── IURIResolver.as │ │ ├── MimeTypeMap.as │ │ ├── URI.as │ │ ├── URIEncodingBitmap.as │ │ └── proxies │ │ │ └── RFC2817Socket.as │ ├── protocols │ │ └── dict │ │ │ ├── Database.as │ │ │ ├── Definition.as │ │ │ ├── Dict.as │ │ │ ├── DictionaryServer.as │ │ │ ├── MatchStrategy.as │ │ │ ├── Response.as │ │ │ ├── events │ │ │ ├── ConnectedEvent.as │ │ │ ├── DatabaseEvent.as │ │ │ ├── DefinitionEvent.as │ │ │ ├── DefinitionHeaderEvent.as │ │ │ ├── DictionaryServerEvent.as │ │ │ ├── DisconnectedEvent.as │ │ │ ├── ErrorEvent.as │ │ │ ├── MatchEvent.as │ │ │ ├── MatchStrategiesEvent.as │ │ │ └── NoMatchEvent.as │ │ │ └── util │ │ │ ├── CompleteResponseEvent.as │ │ │ └── SocketHelper.as │ ├── serialization │ │ └── json │ │ │ ├── JSON.as │ │ │ ├── JSONDecoder.as │ │ │ ├── JSONEncoder.as │ │ │ ├── JSONParseError.as │ │ │ ├── JSONToken.as │ │ │ ├── JSONTokenType.as │ │ │ └── JSONTokenizer.as │ ├── utils │ │ ├── ArrayUtil.as │ │ ├── DateUtil.as │ │ ├── DictionaryUtil.as │ │ ├── IntUtil.as │ │ ├── NumberFormatter.as │ │ ├── StringUtil.as │ │ └── XMLUtil.as │ └── webapis │ │ ├── ServiceBase.as │ │ ├── URLLoaderBase.as │ │ └── events │ │ └── ServiceEvent.as └── phpwind │ ├── avatar │ ├── DragBox.as │ ├── EditWindow.as │ ├── GIFEditWindow.as │ ├── Gripper.as │ ├── GripperBitmapData.as │ ├── IEditWindow.as │ └── Upload.as │ └── util │ ├── FileUploadModel.as │ ├── MouseCursor.as │ └── UploadPostHelper.as ├── face.fla └── org └── bytearray └── gif ├── decoder └── GIFDecoder.as ├── encoder ├── GIFEncoder.as ├── LZWEncoder.as └── NeuQuant.as ├── errors └── FileTypeError.as ├── events ├── FileTypeEvent.as ├── FrameEvent.as ├── GIFPlayerEvent.as └── TimeoutEvent.as ├── frames └── GIFFrame.as └── player └── GIFPlayer.as /AUTHORS: -------------------------------------------------------------------------------- 1 | # This is the official list of people who have contributed to phpwind 2 | # Names should be added to this file as 3 | # Name or Organization 4 | # The email address is not required for organizations. 5 | 6 | # Please keep the list sorted. 7 | 8 | Zerol Lin 9 | Jianmin Chen 10 | LinHao 11 | xiaoxia.xu 12 | JinLong Pan 13 | Gao Wang 14 | Shi Long -------------------------------------------------------------------------------- /conf/application/acloud.php: -------------------------------------------------------------------------------- 1 | array( 9 | 'acloud' => array( 10 | ) 11 | ) 12 | ); -------------------------------------------------------------------------------- /conf/application/windidclient.php: -------------------------------------------------------------------------------- 1 | array( 10 | 'windidclient' => array( 11 | 'default-module' => 'windidclient', 12 | 'root-path' => 'APPS:windidclient', 13 | 'modules' => array() 14 | ) 15 | ) 16 | ); -------------------------------------------------------------------------------- /conf/application/windidnotify.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'windidnotify' => array( 7 | 'root-path' => 'APPS:windidnotify', 8 | 'modules' => array( 9 | 'default' => array( 10 | 'controller-path' => 'APPS:windidnotify.controller', 11 | 'controller-suffix' => 'Controller', 12 | 'template-path' => 'TPL:windidnotify', 13 | 'compile-path' => 'DATA:compile.template.windidnotify', 14 | ) 15 | ) 16 | ) 17 | ) 18 | ); -------------------------------------------------------------------------------- /conf/cacheService.php: -------------------------------------------------------------------------------- 1 | 'user.cache.PwUserDbCache', 9 | 'PwForum' => 'forum.cache.PwForumDbCache', 10 | 'PwThread' => 'forum.cache.PwThreadDbCache', 11 | 'forum.dao.PwPostsDao' => 'forum.cache.PwPostDbCache' 12 | ); -------------------------------------------------------------------------------- /conf/entrance.php: -------------------------------------------------------------------------------- 1 | 'bbs/read/run', 4 | 'pay/alipay.php' => 'bbs/alipay/run', 5 | 'pay/paypal.php' => 'bbs/paypal/run', 6 | 'pay/pay99bill.php' => 'bbs/pay99bill/run', 7 | 'pay/tenpay.php' => 'bbs/tenpay/run', 8 | ); -------------------------------------------------------------------------------- /conf/publish.php: -------------------------------------------------------------------------------- 1 | '', 15 | 'PUBLIC_ATTACH' => '/attachment', 16 | 'PUBLIC_HTML' => '/html', 17 | 'PUBLIC_RES' => '/res', 18 | 'PUBLIC_THEMES' => '/themes', 19 | 20 | 21 | /**=====配置结束于此=====**/ 22 | ); -------------------------------------------------------------------------------- /conf/pwcomponents.php: -------------------------------------------------------------------------------- 1 | 2010-11-2 4 | * @link http://www.phpwind.com 5 | * @copyright Copyright © 2003-2010 phpwind.com 6 | * @license 7 | */ 8 | 9 | return array( 10 | 'link' => array( 11 | 'class' => 'SRV:link.srv.PwLinkService', 12 | 'method' => 'getLinksByType', 13 | ), 14 | 'announce' => array( 15 | 'class' => 'SRV:announce.srv.PwAnnounceService', 16 | 'method' => 'getAnnounceForBbsScroll', 17 | ) 18 | ); -------------------------------------------------------------------------------- /conf/windid/database.php: -------------------------------------------------------------------------------- 1 | 'mysql:host=localhost;dbname=nextwind10;port=3306', 5 | 'user' => 'root', 6 | 'pwd' => '', 7 | 'charset' => 'utf8', 8 | 'tableprefix' => 'pw_windid_', 9 | 'engine' => 'MyISAM', 10 | ); 11 | */ 12 | 13 | $database = include WINDID_PATH.'/../../conf/database.php'; 14 | $database['tableprefix'] .= 'windid_'; 15 | return $database; 16 | ?> -------------------------------------------------------------------------------- /data/index.html: -------------------------------------------------------------------------------- 1 | Hello,phpwind! -------------------------------------------------------------------------------- /src/aCloud/api/common/v1/ACloudApiCommonGeneralApi.php: -------------------------------------------------------------------------------- 1 | buildSelectSql ( $apiSetting, $request ); 8 | if (! $sql) 9 | return array (4006, array () ); 10 | $data = ACloudSysCoreCommon::loadSystemClass ( 'generaldata', 'config.service' )->executeSql ( $sql ); 11 | return ($data === false) ? array (4007, array () ) : array (0, $data ); 12 | } 13 | } -------------------------------------------------------------------------------- /src/aCloud/api/common/v1/ACloudApiCommonSearch.php: -------------------------------------------------------------------------------- 1 | getVersionCommonSearch ()->getHotwords (); 8 | } 9 | 10 | private function getVersionCommonSearch() { 11 | return ACloudVerCommonFactory::getInstance ()->getVersionCommonSearch (); 12 | } 13 | } -------------------------------------------------------------------------------- /src/aCloud/app/search/ACloudAppSearchDefine.php: -------------------------------------------------------------------------------- 1 | fetchAll ( $sql ); 11 | } 12 | } -------------------------------------------------------------------------------- /src/aCloud/system/config/service/ACloudSysConfigServiceReset.php: -------------------------------------------------------------------------------- 1 | deleteAll (); 8 | ACloudSysCoreCommon::loadSystemClass ( 'apps', 'config.dao' )->deleteAll (); 9 | ACloudSysCoreCommon::loadSystemClass ( 'app.configs', 'config.dao' )->deleteAll (); 10 | return true; 11 | } 12 | } -------------------------------------------------------------------------------- /src/aCloud/system/core/ACloudSysCoreOauth.php: -------------------------------------------------------------------------------- 1 | $fields ) { 10 | if (ACloudSysCoreS::isArray ( $fields )) 11 | unset ( $fields ['password'], $fields ['safecv'] ); 12 | $result [$key] = $fields; 13 | } 14 | return $result; 15 | } 16 | } -------------------------------------------------------------------------------- /src/aCloud/version/phpwind/core/ACloudVerConfigDao.php: -------------------------------------------------------------------------------- 1 | charset; 12 | $data ['site_name'] = $data ['info.name']; 13 | $data ['site_time'] = time (); 14 | return $data; 15 | } 16 | } -------------------------------------------------------------------------------- /src/applications/admin/conf/openplatformurl.php: -------------------------------------------------------------------------------- 1 | 6 | * @copyright ©2003-2103 phpwind.com 7 | * @license http://www.windframework.com 8 | * @version $Id: codetemplates(windframework_docs_zend_8.0).xml 2781 2011-09-22 03:59:17Z yishuo $ 9 | * @package wind 10 | */ 11 | interface IAdminUserBo { 12 | 13 | public function getUid(); 14 | 15 | public function getUsername(); 16 | 17 | public function isExists(); 18 | } 19 | 20 | ?> -------------------------------------------------------------------------------- /src/applications/announce/conf/announcemenu.php: -------------------------------------------------------------------------------- 1 | array('运营', array()), 5 | 'announce_announce' => array('公告管理', 'announce/announce/*', '', '', 'operations'), 6 | ); -------------------------------------------------------------------------------- /src/applications/appcenter/conf/cloudplatformurl.php: -------------------------------------------------------------------------------- 1 | 6 | * @copyright ©2003-2103 phpwind.com 7 | * @license http://www.windframework.com 8 | * @version $Id: PwDbUpdate.php 21071 2012-11-27 06:34:14Z long.shi $ 9 | * @package appcenter 10 | */ 11 | class PwDbUpdate { 12 | 13 | /** 14 | * 在线升级数据库回调 15 | * 16 | */ 17 | public function update() { 18 | 19 | } 20 | } 21 | 22 | ?> -------------------------------------------------------------------------------- /src/applications/appcenter/service/data/hook.admin: -------------------------------------------------------------------------------- 1 | 7 | * @copyright {{website}} 8 | * @license {{website}} 9 | */ 10 | class {{classname}} { 11 | 12 | /** 13 | * 获取{{name}}后台菜单 14 | * 15 | * @param array $config 16 | * @return array 17 | */ 18 | public function getAdminMenu($config) { 19 | $config += array( 20 | 'ext_{{alias}}' => array('{{name}}', 'app/manage/*?app={{alias}}', '', '', 'appcenter'), 21 | ); 22 | return $config; 23 | } 24 | } 25 | 26 | ?> -------------------------------------------------------------------------------- /src/applications/appcenter/service/data/servicehook: -------------------------------------------------------------------------------- 1 | 8 | * @copyright {{website}} 9 | * @license {{website}} 10 | */ 11 | class {{classname}} {{extends}} { 12 | /* 13 | * @see {{interfacename}} 14 | */ 15 | 16 | } 17 | ?> -------------------------------------------------------------------------------- /src/applications/appcenter/service/data/simplehook: -------------------------------------------------------------------------------- 1 | 7 | * @copyright {{website}} 8 | * @license {{website}} 9 | */ 10 | class {{classname}} { 11 | 12 | /** 13 | * {{document}} 14 | */ 15 | public function {{method}}({{param}}) { 16 | //TODO do your job! 17 | } 18 | } 19 | 20 | ?> -------------------------------------------------------------------------------- /src/applications/appcenter/service/data/source/admin/ManageController.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/applications/appcenter/service/data/source/conf/data.sql: -------------------------------------------------------------------------------- 1 | --安装或更新时需要注册的sql写在这里-- -------------------------------------------------------------------------------- /src/applications/appcenter/service/data/source/controller/IndexController.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/applications/appcenter/service/data/source/res/images/face_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/applications/appcenter/service/data/source/res/images/face_big.jpg -------------------------------------------------------------------------------- /src/applications/appcenter/service/data/source/res/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/applications/appcenter/service/data/source/res/images/logo.jpg -------------------------------------------------------------------------------- /src/applications/appcenter/service/data/source/template/index_run.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 系统标准应用 6 | 7 | 8 |

Hello World!

9 |

10 | 调用包内图片:hello
11 |

12 |

13 | 调用代码:'); ?> 14 |

15 | 16 | -------------------------------------------------------------------------------- /src/applications/appcenter/service/srv/helper/PwFtpSave.php: -------------------------------------------------------------------------------- 1 | 8 | * @copyright ©2003-2103 phpwind.com 9 | * @license http://www.windframework.com 10 | * @version $Id: PwFtpSave.php 22490 2012-12-25 03:05:09Z long.shi $ 11 | * @package appcenter 12 | */ 13 | class PwFtpSave extends WindSocketFtp { 14 | 15 | protected function checkFile($filename) { 16 | return false; 17 | } 18 | } 19 | 20 | ?> -------------------------------------------------------------------------------- /src/applications/backup/conf/backupmenu.php: -------------------------------------------------------------------------------- 1 | array('数据', array()), 5 | 'database_backup' => array('数据库', 'backup/backup/*', '', '', 'database'), 6 | ); -------------------------------------------------------------------------------- /src/applications/bbs/controller/UploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/applications/bbs/controller/UploadController.php -------------------------------------------------------------------------------- /src/applications/credit/conf/creditmenu.php: -------------------------------------------------------------------------------- 1 | array('积分设置', 'credit/credit/*', '', '', 'config', 'config_verifycode'), 4 | ); -------------------------------------------------------------------------------- /src/applications/cron/conf/cronmenu.php: -------------------------------------------------------------------------------- 1 | array('运营', array()), 5 | 'cron_operations' => array('计划任务', 'cron/cron/*', '', '', 'operations'), 6 | ); -------------------------------------------------------------------------------- /src/applications/emotion/conf/emotionmenu.php: -------------------------------------------------------------------------------- 1 | array('表情管理', 'emotion/emotion/*', '', '', 'config', 'config_security'), 4 | ); -------------------------------------------------------------------------------- /src/applications/guide/controller/AttentionController.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright ©2003-2103 phpwind.com 8 | * @license http://www.windframework.com 9 | * @version $Id: AttentionController.php 5544 2012-03-06 09:55:31Z xiaoxia.xuxx $ 10 | * @package src.modules.guide.controller 11 | */ 12 | class AttentionController extends PwBaseController { 13 | 14 | /* (non-PHPdoc) 15 | * @see WindController::run() 16 | */ 17 | public function run() { 18 | 19 | } 20 | } -------------------------------------------------------------------------------- /src/applications/guide/controller/InterestController.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright ©2003-2103 phpwind.com 8 | * @license http://www.windframework.com 9 | * @version $Id: InterestController.php 5544 2012-03-06 09:55:31Z xiaoxia.xuxx $ 10 | * @package src.modules.guide.controller 11 | */ 12 | class InterestController extends PwBaseController { 13 | 14 | /* (non-PHPdoc) 15 | * @see WindController::run() 16 | */ 17 | public function run() { 18 | 19 | } 20 | } -------------------------------------------------------------------------------- /src/applications/install/lang/demo_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/applications/install/lang/demo_data.sql -------------------------------------------------------------------------------- /src/applications/install/lang/demo_threads.php: -------------------------------------------------------------------------------- 1 | array('运营', array()), 5 | 'link_link' => array('友情链接', 'link/link/*', '', '', 'operations'), 6 | ); -------------------------------------------------------------------------------- /src/applications/medal/conf/medalmenu.php: -------------------------------------------------------------------------------- 1 | array('勋章管理', 'medal/medal/*', '', '', 'appcenter'), 5 | ); -------------------------------------------------------------------------------- /src/applications/message/conf/messagemenu.php: -------------------------------------------------------------------------------- 1 | array('私信管理', 'message/manage/*', '', '', 'contents'), 5 | 'operations_link' => array('消息群发', 'message/manage/send', '', '', 'operations'), 6 | ); -------------------------------------------------------------------------------- /src/applications/my/controller/IndexController.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright ©2003-2103 phpwind.com 8 | * @license http://www.windframework.com 9 | * @version $Id: IndexController.php 19275 2012-10-12 07:18:44Z xiaoxia.xuxx $ 10 | * @package wind 11 | */ 12 | class IndexController extends PwBaseController { 13 | 14 | /* (non-PHPdoc) 15 | * @see WindController::run() 16 | */ 17 | public function run() { 18 | $this->forwardRedirect(WindUrlHelper::createUrl('my/fresh/run')); 19 | } 20 | } -------------------------------------------------------------------------------- /src/applications/nav/conf/navmenu.php: -------------------------------------------------------------------------------- 1 | array('导航设置', 'nav/nav/*', '', '', 'config', 'config_verifycode'), 6 | ); -------------------------------------------------------------------------------- /src/applications/report/conf/reportmenu.php: -------------------------------------------------------------------------------- 1 | array('举报管理', 'report/manage/*', '', '', 'contents'), 5 | ); -------------------------------------------------------------------------------- /src/applications/rewrite/conf/domain.php: -------------------------------------------------------------------------------- 1 | 4 | * @link http://www.phpwind.com 5 | * @copyright Copyright © 2003-2010 phpwind.com 6 | * @license 7 | */ 8 | /* 9 | * 别名 => array(名称, 'm/c/a', array(m/c/a)) 10 | * */ 11 | return array( 12 | 'default' => array('默认', ''), 13 | 'forum' => array('论坛', 'bbs/index/run'), 14 | 'space' => array('空间', 'space/index/run'), 15 | 'special' => array('门户', 'special/index/run'), 16 | 'tag' => array('话题', '') 17 | ); -------------------------------------------------------------------------------- /src/applications/rewrite/conf/entrance.php: -------------------------------------------------------------------------------- 1 | 'bbs/read/run', 4 | 'pay/alipay.php' => 'bbs/alipay/run', 5 | 'pay/paypal.php' => 'bbs/paypal/run', 6 | 'pay/pay99bill.php' => 'bbs/pay99bill/run', 7 | 'pay/tenpay.php' => 'bbs/tenpay/run', 8 | ); -------------------------------------------------------------------------------- /src/applications/rewrite/conf/rewritemenu.php: -------------------------------------------------------------------------------- 1 | 2010-11-2 4 | * @link http://www.phpwind.com 5 | * @copyright Copyright © 2003-2010 phpwind.com 6 | * @license 7 | */ 8 | return array( 9 | 'config_rewrite' => array('URL伪静态', 'rewrite/rewrite/*', '', '', 'config', 'config_seo'), 10 | 'config_domain' => array('二级域名', 'rewrite/domain/*', '', '', 'config', 'config_rewrite'), 11 | ); -------------------------------------------------------------------------------- /src/applications/search/controller/SController.php: -------------------------------------------------------------------------------- 1 | getInput('keyword'); 7 | if (!Wekit::C('site', 'search.isopen')) { 8 | $this->forwardRedirect(WindUrlHelper::createUrl('search/search/run', array('keyword' => $keywords))); 9 | } 10 | $this->forwardAction('app/index/run?app=search',array('keywords' => $keywords)); 11 | } 12 | 13 | } -------------------------------------------------------------------------------- /src/applications/search/controller/SearchController.php: -------------------------------------------------------------------------------- 1 | array('SEO优化', 'seo/manage/*', '', '', 'config', 'config_security'), 5 | ); -------------------------------------------------------------------------------- /src/applications/tag/conf/tagmenu.php: -------------------------------------------------------------------------------- 1 | array('内容', array()), 5 | 'contents_tag' => array('话题管理', 'tag/manage/*', '', '', 'contents'), 6 | ); -------------------------------------------------------------------------------- /src/applications/task/conf/taskmenu.php: -------------------------------------------------------------------------------- 1 | 2010-11-2 4 | * @link http://www.phpwind.com 5 | * @copyright Copyright ©2003-2010 phpwind.com 6 | * @license 7 | */ 8 | return array( 9 | 'appcenter_task' => array('任务中心', 'task/manage,taskConditionBbs,taskConditionCntv,taskConditionMember,taskReward/*', '', '', 'appcenter'), 10 | ); -------------------------------------------------------------------------------- /src/applications/u/conf/punchmenu.php: -------------------------------------------------------------------------------- 1 | array('每日打卡', 'config/punch/*', '', '', 'operations'), 5 | ); -------------------------------------------------------------------------------- /src/applications/verify/conf/verifymenu.php: -------------------------------------------------------------------------------- 1 | array('验证码设置', 'verify/verify/*', '', '', 'config', 'config_register'), 6 | ); -------------------------------------------------------------------------------- /src/applications/vote/conf/votemenu.php: -------------------------------------------------------------------------------- 1 | array('应用中心', array()), 5 | 'appcenter_vote' => array('投票管理', 'vote/manage/*', '', '', 'appcenter'), 6 | ); -------------------------------------------------------------------------------- /src/applications/windidclient/controller/IndexController.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/applications/windidserver/api/controller/IndexController.php: -------------------------------------------------------------------------------- 1 | 7 | * @license http://www.phpwind.com 8 | * @version $Id: IndexController.php 24460 2013-01-30 11:17:17Z jieyin $ 9 | * @package forum 10 | */ 11 | 12 | class IndexController extends PwBaseController { 13 | 14 | public function run() { 15 | 16 | echo '这里是windid系统API中心';exit; 17 | } 18 | } -------------------------------------------------------------------------------- /src/applications/windidserver/windid/controller/IndexController.php: -------------------------------------------------------------------------------- 1 | 7 | * @license http://www.phpwind.com 8 | * @version $Id: IndexController.php 24686 2013-02-05 04:39:28Z jieyin $ 9 | * @package forum 10 | */ 11 | 12 | class IndexController extends PwBaseController { 13 | 14 | public function run() { 15 | header("Content-type:text/html;charset=" . Wekit::V('charset')); 16 | echo '这里是windid系统服务中心';exit; 17 | } 18 | } -------------------------------------------------------------------------------- /src/applications/word/conf/wordmenu.php: -------------------------------------------------------------------------------- 1 | array('敏感词管理', 'word/manage/*', '', '', 'bbs_contentcheck'), 5 | ); -------------------------------------------------------------------------------- /src/bootstrap/acloudBoot.php: -------------------------------------------------------------------------------- 1 | 9 | * @version $Id: acloudBoot.php 21644 2012-12-12 05:12:46Z jieyin $ 10 | * @package wekit 11 | */ 12 | class acloudBoot extends phpwindBoot { 13 | 14 | } -------------------------------------------------------------------------------- /src/bootstrap/windidnotifyBoot.php: -------------------------------------------------------------------------------- 1 | 7 | * @version $Id: windidnotifyBoot.php 24193 2013-01-22 14:43:42Z jieyin $ 8 | * @package wekit 9 | */ 10 | class windidnotifyBoot extends phpwindBoot { 11 | 12 | /* (non-PHPdoc) 13 | * @see phpwind::runApps() 14 | */ 15 | public function runApps($front = null) { 16 | } 17 | 18 | /* (non-PHPdoc) 19 | * @see phpwind::_initUser() 20 | */ 21 | protected function _initUser() { 22 | 23 | } 24 | } -------------------------------------------------------------------------------- /src/extensions/demo/conf: -------------------------------------------------------------------------------- 1 | '1', 4 | 'maxalbum' => '3', 5 | 'testcheck' => array( 6 | '0' => '1', 7 | '1' => '2', 8 | ), 9 | ); 10 | ?> -------------------------------------------------------------------------------- /src/extensions/demo/controller/IndexController.php: -------------------------------------------------------------------------------- 1 | 6 | * @copyright ©2003-2103 phpwind.com 7 | * @license http://www.windframework.com 8 | * @version $Id: IndexController.php 21266 2012-12-03 10:40:28Z long.shi $ 9 | * @package demo 10 | */ 11 | class IndexController extends PwBaseController { 12 | 13 | public function run() { 14 | $app_name = 'demo'; 15 | $this->setOutput($app_name, 'name'); 16 | } 17 | } 18 | 19 | ?> -------------------------------------------------------------------------------- /src/extensions/demo/readme: -------------------------------------------------------------------------------- 1 | 此文件夹是用来帮你快速开始开发一个应用! 2 | 3 | 你可以通过拷贝一份作为你开发的基础。可实现功能:独立插件页面,前台应用列表显示,后台应用管理菜单。 4 | 5 | 拷贝完要做的事: 6 | 1、修改文件夹名为你的准备开发的应用别名,将会用于系统唯一标识该应用, 7 | 格式为(公司或个人名_英文别名),例如phpwind_bank。 8 | 2、修改Manifest.xml中alias值为你刚刚修改的文件夹名,搜索包里的代码把这个值替换为更改后的值 9 | 3、开始开发吧~ 10 | 11 | /admin(后台模块),/controller(前台模块),/template(模板),/res(静态资源),/conf(配置目录)都是可选目录, 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/extensions/demo/resource/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/extensions/demo/resource/images/icon.png -------------------------------------------------------------------------------- /src/extensions/demo/resource/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/extensions/demo/resource/images/logo.jpg -------------------------------------------------------------------------------- /src/extensions/demo/resource/test.js: -------------------------------------------------------------------------------- 1 | /* 2 | * PHPWind 3 | * @Copyright : Copyright 2012, phpwind.com 4 | * @Author : 5 | * @Depend : jquery.js(1.8.0) : 6 | */ 7 | //test.js -------------------------------------------------------------------------------- /src/extensions/demo/template/index_run.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | demo应用 6 | 7 | 8 |

Hello World!

9 |

10 | 调用包内图片:hello
11 |

12 |

13 | 调用代码:'); ?> 14 |

15 | 16 | -------------------------------------------------------------------------------- /src/hooks/PwThreadType/PwThreadTypeDoDebate.php: -------------------------------------------------------------------------------- 1 | 8 | * @copyright ©2003-2103 phpwind.com 9 | * @license http://www.phpwind.com 10 | * @version $Id: PwThreadTypeDoDebate.php 10060 2012-05-16 06:51:05Z jieyin $ 11 | * @package forum 12 | */ 13 | 14 | class PwThreadTypeDoDebate { 15 | 16 | public function getTtype($tType) { 17 | $tType['4'] = array('辩论帖', '发起辩论', true); 18 | return $tType; 19 | } 20 | } -------------------------------------------------------------------------------- /src/i18n/zh_cn/admin/area.lang: -------------------------------------------------------------------------------- 1 | areaid.error=请选择需要删除的地区 2 | parentid.error=非法操作 3 | level.limit=地区只支持三级 4 | delete.success=删除成功 5 | delete.error.has.children=请先删除该级的下级数据 6 | 7 | error.0=操作失败 8 | error.-1=地区的ID不能为空 9 | error.-2=地区的名称不能为空 10 | error.-3="提交的内容不能包含{flag}" -------------------------------------------------------------------------------- /src/i18n/zh_cn/admin/att.lang: -------------------------------------------------------------------------------- 1 | 2 | storage.type.not.exit = 存储类型不存在 3 | storage.config.fail = 存储类型配置错误 -------------------------------------------------------------------------------- /src/i18n/zh_cn/admin/email.lang: -------------------------------------------------------------------------------- 1 | test.toemail.require=收件人地址不能为空 2 | test.error="测试邮件发送失败:{error}" 3 | test.success=测试邮件发送成功 4 | server.error="服务器错误,请检查配置是否正确" 5 | server.config.error="请检查SMTP服务器及端口配置是否正确" 6 | server.response.error="SMTP服务器返回结果不可用" 7 | close=邮件服务已关闭 -------------------------------------------------------------------------------- /src/i18n/zh_cn/admin/nav.lang: -------------------------------------------------------------------------------- 1 | add.fail.strlen.type = 导航类型错误 2 | add.fail.strlen.name = 导航名称错误 3 | add.fail.empty.navid = 导航不存在 4 | del.fail.have.child = 请先删除二级导航 5 | out.link=外部链接不可设置为首页 6 | my.prefix = 我的 -------------------------------------------------------------------------------- /src/i18n/zh_cn/admin/school.lang: -------------------------------------------------------------------------------- 1 | schoolid.error=非法操作 2 | delete.success=删除成功 3 | error.0=操作失败 4 | error.-1=学校的ID不能为空 5 | error.-2=学校的名字不能为空 6 | error.-3=学校的地区不能为空 7 | error.-4=学校的类型错误 -------------------------------------------------------------------------------- /src/i18n/zh_cn/admin/verify.lang: -------------------------------------------------------------------------------- 1 | answer.empty = "问题答案不能为空" 2 | flash.not.allow = "flash需要Ming库支持" -------------------------------------------------------------------------------- /src/i18n/zh_cn/advertisement/message.lang: -------------------------------------------------------------------------------- 1 | type.error = 展示类型错误! 2 | position.error = 广告位ID错误! 3 | add.fail = 添加广告位失败! 4 | position.exists = 广告位已经存在,不要重复添加! 5 | position.not.exists = 广告位不存在,不能编辑! 6 | position.status.error = 广告位状态值错误! 7 | position.exists = 广告位已存在! -------------------------------------------------------------------------------- /src/i18n/zh_cn/announce/message.lang: -------------------------------------------------------------------------------- 1 | date.error = "有效时间不合法" 2 | subject.require=公告标题不能为空 3 | typeid,require=公告类别不能为空 4 | content.require=公告内容不能为空 5 | url.require=公告链接不能为空 -------------------------------------------------------------------------------- /src/i18n/zh_cn/backup/message.lang: -------------------------------------------------------------------------------- 1 | name.empty="请选择要操作的对象" 2 | bakup_import="正在导入第{i}卷备份文件,程序将自动导入余下备份文件..." 3 | bakup_step="正在备份数据库表 {currentTableName}: 已经备份至 {currentPos} 条记录。已生成 {createdFileNum} 个备份文件,程序将自动备份余下部分" 4 | bakup_success="备份完成,保存路径{path}" 5 | site.isopen="备份数据库前请先关闭站点" -------------------------------------------------------------------------------- /src/i18n/zh_cn/bbs/digest.lang: -------------------------------------------------------------------------------- 1 | tid.require=非法帖子操作 2 | dm.data.format.error=数据格式错误 -------------------------------------------------------------------------------- /src/i18n/zh_cn/bbs/draft.lang: -------------------------------------------------------------------------------- 1 | user.not.login="请先登录" 2 | content.empty="内容或标题为空" 3 | num.max="草稿箱数量不能超过10条哦!" 4 | operater.error="非法操作" -------------------------------------------------------------------------------- /src/i18n/zh_cn/bbs/like.lang: -------------------------------------------------------------------------------- 1 | success = 操作成功 2 | fail = 操作失败 3 | user.not.login = 请先登录 4 | fail.uid.empty = 用户ID不能为空 5 | fail.already.liked = 已经喜欢过了 6 | fail.myself.post = 不要太自恋哦~! 7 | tagname.not.empty = 分类名不能为空 8 | tagname.is.already = 分类名已存在 9 | tagname.is.short = 分类名至少为两个字 10 | tagname.is.lenth = 分类名不能超过10个字 11 | like.flesh = 我很喜欢这个帖子,大家都来看看吧! 12 | fail.already.tagname = 分类名不能重复! 13 | tagname.empty = 分类不存在 14 | permissions.fail = 无操作权限 -------------------------------------------------------------------------------- /src/i18n/zh_cn/bbs/recycle.lang: -------------------------------------------------------------------------------- 1 | right.error="您没有权限哦!" 2 | -------------------------------------------------------------------------------- /src/i18n/zh_cn/bbs/remind.lang: -------------------------------------------------------------------------------- 1 | remind_open.error="@提醒功能未开启" 2 | remind_max_num.error="每天最多@{maxNum}个用户" -------------------------------------------------------------------------------- /src/i18n/zh_cn/bbs/vote.lang: -------------------------------------------------------------------------------- 1 | fail.mostvotes = "请正确选择投票选项" 2 | fail.errorOption = "选择选项错误" 3 | is.single.selection = "投票选项为单选" 4 | thread.success = "恭喜投票成功" 5 | thread.fail = "抱歉投票失败" 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/i18n/zh_cn/config.lang: -------------------------------------------------------------------------------- 1 | setting.success = "设置保存成功" 2 | login.type.require="用户登录方式不能为空" -------------------------------------------------------------------------------- /src/i18n/zh_cn/exception/dependance.lang: -------------------------------------------------------------------------------- 1 | 2 | admin.userservice = 依赖异常,当前访问的 {service} 依赖于用户服务接口 {userservice},请检查依赖的服务包是否存在或类型是否正确. -------------------------------------------------------------------------------- /src/i18n/zh_cn/exception/final.lang: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | default = '系统异常,程序终止' -------------------------------------------------------------------------------- /src/i18n/zh_cn/exception/message.lang: -------------------------------------------------------------------------------- 1 | 2 | 3 | template.path.fail = "模板路径错误{parm1},不能打开路径文件{parm2}或该路径文件不存在。" 4 | 5 | method.not.exit = "类方法不存在异常{parm1},类{parm2}没有{parm3}方法。" 6 | 7 | class.not.exit = "类不存在异常{parm1},类{parm2}加载失败,该类不存在。" 8 | class.path.fail = "类不存在异常{parm1},类 {parm2} 加载失败,该类不存在或者类路径 {parm3} 错误。" 9 | class.type.fail = "类型异常{parm1},这里需要一个 {parm2} 类型的对象,但是却得到了 {parm3}。" 10 | -------------------------------------------------------------------------------- /src/i18n/zh_cn/link/message.lang: -------------------------------------------------------------------------------- 1 | linkname.len.error="分类名称长度错误,不能超过6个字" 2 | type.exist="此分类名称已存在" 3 | edit.success="操作成功,请更新网站对应的调用代码" 4 | require_empty="带*的必填项不能为空" 5 | link.lenerror="站点名称长度错误" -------------------------------------------------------------------------------- /src/i18n/zh_cn/message.lang: -------------------------------------------------------------------------------- 1 | success="操作成功" 2 | operate.success="操作成功" 3 | operate.fail="操作失败" 4 | operate.select="请选择操作对象" 5 | login.not="您还没有登录" 6 | fail.empty="不能为空" 7 | data.error="您访问的数据不存在或已被删除" 8 | subject.empty.fail="标题不能为空" 9 | file.empty.fail="文件不能为空" 10 | page.status.404 = "访问的页面不存在" 11 | ban="您已被禁止发布" 12 | 13 | download.fail.login.not = "游客无法下载,请登录后操作" -------------------------------------------------------------------------------- /src/i18n/zh_cn/onlinepay.lang: -------------------------------------------------------------------------------- 1 | settings.alipay.error = "支付宝设置有错误" 2 | settings.tenpay.error = "财付通设置有错误" 3 | settings.paypal.error = "贝宝设置有错误" 4 | settings.99bill.error = "快钱设置有错误" 5 | 6 | paymethod.select = "请选择支付方式" 7 | tenpay.bargainorid.error = "错误的商户号" 8 | 9 | order.exists.not = "订单不存在" 10 | order.paid = "该订单已支付" 11 | 12 | success = "支付成功" 13 | fail = "支付失败" 14 | 15 | auth.fail = "验证签名失败" -------------------------------------------------------------------------------- /src/i18n/zh_cn/report/message.lang: -------------------------------------------------------------------------------- 1 | user.empty="接收提醒用户添加失败,用户名不能为空" 2 | user.not.presence="该用户不存在" 3 | receiver.num.error="您添加太多了" 4 | type.undefined="该举报类型没有定义" 5 | data.error="数据错误" 6 | right.error="您没有权限哦!" -------------------------------------------------------------------------------- /src/i18n/zh_cn/rewrite/message.lang: -------------------------------------------------------------------------------- 1 | file.write_fail="文件写入失败,请检查#0目录权限" 2 | format.empty="url格式不可为空" 3 | format.conflict="#0格式可能造成冲突" 4 | default.not_open="需要同时开启默认规则" 5 | default.empty="需要先设置默认域名,例如www.phpwind.net" 6 | 7 | domain_type_null="域名类型不可为空" 8 | domain.hold="域名不能包含类似#0" 9 | domain.length="域名长度必须在3到15位之间" 10 | domain.first.illegal="域名首位必须是字母" 11 | domain.char.num="域名只能由字母和数字组成" 12 | domain.exist="域名已存在" 13 | domain.same="#0域名重复" 14 | cookie.domain.fail="cookie作用域设置有误" 15 | url.incomplete="#0 不是完整url" 16 | 17 | root.empty="空间根域名不可为空" 18 | root.same="空间根域名和其他根域名不可重复" -------------------------------------------------------------------------------- /src/i18n/zh_cn/site/message.lang: -------------------------------------------------------------------------------- 1 | refresh.fast="啊哦,你刷新太频繁啦!" 2 | source.error="数据来源错误" 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/i18n/zh_cn/space/message.lang: -------------------------------------------------------------------------------- 1 | success = "操作成功" 2 | fail = "操作失败" 3 | info.error = "提交错误" 4 | space.not.exist = "页面不存在" 5 | space.guest = "该用户以游客身份发帖,不能查看个人空间" 6 | user.not.login = "请先登录" 7 | not.allow.visit = "不允许访问" 8 | domain.is.used = "域名已被使用" 9 | spacename.filter.fail = "空间名称包含敏感词" 10 | descrip.filter.fail = "空间简介包含敏感词" -------------------------------------------------------------------------------- /src/i18n/zh_cn/space/punch.lang: -------------------------------------------------------------------------------- 1 | not.open="亲,该功能没有开启哦" 2 | today.punch="您今天已经打卡了哦,明天再来吧" 3 | friend.num.error="每天只能帮助{num}个好友打卡哦" 4 | -------------------------------------------------------------------------------- /src/i18n/zh_cn/upload.lang: -------------------------------------------------------------------------------- 1 | success = "上传成功" 2 | fail = "上传失败" 3 | 4 | ext.error = "不允许上传{ext}文件" 5 | size.less = "不允许上传空文件" 6 | size.over = "文件大小不能超过{size}KB" 7 | content.error = "文件内容非法" 8 | size.error = "文件大小错误" 9 | ftp.error = "ftp连接失败" -------------------------------------------------------------------------------- /src/i18n/zh_cn/user/attention.lang: -------------------------------------------------------------------------------- 1 | add.isFollowed="你已经关注了该用户" 2 | add.self=不能关注自己 3 | add.fail=关注失败 4 | del.fail="您还没有关注Ta" 5 | type.count.error="您的分类太多了吧" 6 | type.name.empty=分组名称不能为空 7 | type.name.length.over=分组名称不能超过10个字 8 | type.repeat="不要添加重复的分类哦" 9 | type.delete.self=您没有权限删除他人的分组 10 | type.edit.self=您没有权限修改他人的分组 11 | private.black="对方已把你加入黑名单,无法关注" 12 | uid.empty="请选择操作对象" -------------------------------------------------------------------------------- /src/i18n/zh_cn/user/ban.lang: -------------------------------------------------------------------------------- 1 | success="禁止成功" 2 | delete.success="解除禁止成功" 3 | error.data.format="非法数据" 4 | reason.require="禁止理由不能为空" 5 | type.require="请至少选择一项禁止类型" 6 | user.require="请填写需要禁止的用户" 7 | user.illegal="禁止对象不存在" 8 | auto.credit.num.require="积分依据的数值不能为空" 9 | auto.set.success="设置成功" 10 | 11 | banuser.forbidden="禁止失败,不允许禁止管理组用户" 12 | 13 | -------------------------------------------------------------------------------- /src/i18n/zh_cn/user/education.lang: -------------------------------------------------------------------------------- 1 | illegal.datatype="错误的数据类型" 2 | illegal.request="非法请求" 3 | illegal.uid="非法的用户ID" 4 | 5 | update.school.require="学校不能为空" 6 | update.start_time.require="入学时间不能为空" 7 | update.degree.error="学历错误" 8 | 9 | add.success="添加成功" 10 | delete.success="删除成功" 11 | update.success="修改成功" -------------------------------------------------------------------------------- /src/i18n/zh_cn/user/invite.lang: -------------------------------------------------------------------------------- 1 | close=邀请注册功能已关闭 2 | data.format.error=数据格式错误 3 | 4 | friend.code.illage=非法的邀请链接 5 | code.illage=非法的邀请码 6 | code.require=邀请码不能为空 7 | 8 | code.error=邀请码不正确 9 | code.isused=邀请码已经被使用,请更换 10 | code.expired=邀请码已经过期 11 | code.check.success="邀请码可以使用,邀请人:{username}" 12 | 13 | buy.num.error=数值不得少于1 14 | buy.forbidden=您所在的用户组不允许购买邀请码 15 | buy.num.24h.limit="您所在的用户组24小时之内只能购买{num}个,您已经购买了{readynum}个" 16 | buy.credit.no.enough="您所拥有的积分({num})不足已购买{buynum}个邀请码" 17 | buy.success=邀请码购买成功 18 | 19 | friend.code.invitedUid.error=邀请码错误 20 | friend.invite.self=不能邀请自己 -------------------------------------------------------------------------------- /src/i18n/zh_cn/user/profile.lang: -------------------------------------------------------------------------------- 1 | constellation.aquarius = "水瓶座" 2 | constellation.pisces = "双鱼座" 3 | constellation.aries = "白羊座" 4 | constellation.taurus = "金牛座" 5 | constellation.gemini = "双子座" 6 | constellation.cancer = "巨蟹座" 7 | constellation.leo = "狮子座" 8 | constellation.virgo = "处女座" 9 | constellation.libra = "天秤座" 10 | constellation.scorpio = "天蝎座" 11 | constellation.sagittarius = "射手座" 12 | constellation.capricorn = "摩羯座" 13 | constellation.no = "未知星座" 14 | secret.username.error = "您输入的用户名不存在" 15 | secret.username.num.error="黑名单数量不能超过50个" 16 | 17 | extends.noexists="未知的扩展" -------------------------------------------------------------------------------- /src/i18n/zh_cn/user/tag.lang: -------------------------------------------------------------------------------- 1 | id.require = 非法请求 2 | illega.format=数据格式错误 3 | name.require = 标签不能为空 4 | 5 | uid.require=非法的用户ID 6 | add.success=添加成功 7 | delete.success=删除成功 8 | 9 | ids.require=请选择需要操作的标签 10 | delete.success=删除成功 11 | sethot.success=设置成功 12 | 13 | name.length.error=标签名称的长度为1 - 8个字 14 | name.format.error=标签名称只支持中文、字母、数字、下划线和小数点哦 15 | owntag.limit.over="标签的最大数量为{num}个" 16 | 17 | relation.exists=已有同类标签 -------------------------------------------------------------------------------- /src/i18n/zh_cn/user/work.lang: -------------------------------------------------------------------------------- 1 | illegal.datatype="错误的数据类型" 2 | illegal.request="非法请求" 3 | illegal.uid="非法的用户ID" 4 | 5 | update.company.require="单位名称不能为空" 6 | update.start_time.require="入职时间不能为空" 7 | 8 | add.success="添加成功" 9 | delete.success="删除成功" 10 | update.success="修改成功" -------------------------------------------------------------------------------- /src/library/dataSource/iPwDataSource.php: -------------------------------------------------------------------------------- 1 | 8 | * @license http://www.phpwind.com 9 | * @version $Id: iPwDataSource.php 5976 2012-03-15 03:16:10Z jieyin $ 10 | * @package forum 11 | */ 12 | interface iPwDataSource { 13 | public function getData(); 14 | } -------------------------------------------------------------------------------- /src/library/dataSource/iPwDataSource2.php: -------------------------------------------------------------------------------- 1 | 8 | * @license http://www.phpwind.com 9 | * @version $Id: iPwDataSource2.php 5976 2012-03-15 03:16:10Z jieyin $ 10 | * @package forum 11 | */ 12 | interface iPwDataSource2 { 13 | public function getData($ids); 14 | } -------------------------------------------------------------------------------- /src/repository/audio/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/1.mp3 -------------------------------------------------------------------------------- /src/repository/audio/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/2.mp3 -------------------------------------------------------------------------------- /src/repository/audio/3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/3.mp3 -------------------------------------------------------------------------------- /src/repository/audio/4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/4.mp3 -------------------------------------------------------------------------------- /src/repository/audio/5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/5.mp3 -------------------------------------------------------------------------------- /src/repository/audio/6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/6.mp3 -------------------------------------------------------------------------------- /src/repository/audio/7.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/7.mp3 -------------------------------------------------------------------------------- /src/repository/audio/8.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/8.mp3 -------------------------------------------------------------------------------- /src/repository/audio/9.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/9.mp3 -------------------------------------------------------------------------------- /src/repository/audio/B.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/B.mp3 -------------------------------------------------------------------------------- /src/repository/audio/C.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/C.mp3 -------------------------------------------------------------------------------- /src/repository/audio/E.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/E.mp3 -------------------------------------------------------------------------------- /src/repository/audio/F.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/F.mp3 -------------------------------------------------------------------------------- /src/repository/audio/G.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/G.mp3 -------------------------------------------------------------------------------- /src/repository/audio/H.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/H.mp3 -------------------------------------------------------------------------------- /src/repository/audio/J.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/J.mp3 -------------------------------------------------------------------------------- /src/repository/audio/K.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/K.mp3 -------------------------------------------------------------------------------- /src/repository/audio/M.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/M.mp3 -------------------------------------------------------------------------------- /src/repository/audio/P.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/P.mp3 -------------------------------------------------------------------------------- /src/repository/audio/Q.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/Q.mp3 -------------------------------------------------------------------------------- /src/repository/audio/R.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/R.mp3 -------------------------------------------------------------------------------- /src/repository/audio/T.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/T.mp3 -------------------------------------------------------------------------------- /src/repository/audio/V.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/V.mp3 -------------------------------------------------------------------------------- /src/repository/audio/W.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/W.mp3 -------------------------------------------------------------------------------- /src/repository/audio/X.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/X.mp3 -------------------------------------------------------------------------------- /src/repository/audio/Y.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/Y.mp3 -------------------------------------------------------------------------------- /src/repository/audio/Z.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/Z.mp3 -------------------------------------------------------------------------------- /src/repository/audio/audio.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/audio/audio.swf -------------------------------------------------------------------------------- /src/repository/bg/bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/bg/bg-1.jpg -------------------------------------------------------------------------------- /src/repository/bg/bg-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/bg/bg-10.jpg -------------------------------------------------------------------------------- /src/repository/bg/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/bg/bg-2.jpg -------------------------------------------------------------------------------- /src/repository/bg/bg-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/bg/bg-3.jpg -------------------------------------------------------------------------------- /src/repository/bg/bg-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/bg/bg-4.jpg -------------------------------------------------------------------------------- /src/repository/bg/bg-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/bg/bg-5.jpg -------------------------------------------------------------------------------- /src/repository/bg/bg-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/bg/bg-6.jpg -------------------------------------------------------------------------------- /src/repository/bg/bg-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/bg/bg-7.jpg -------------------------------------------------------------------------------- /src/repository/bg/bg-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/bg/bg-8.jpg -------------------------------------------------------------------------------- /src/repository/bg/bg-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/bg/bg-9.jpg -------------------------------------------------------------------------------- /src/repository/demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/demo/demo.jpg -------------------------------------------------------------------------------- /src/repository/font/en_arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/font/en_arial.ttf -------------------------------------------------------------------------------- /src/repository/ipdata/ipindex.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/ipdata/ipindex.dat -------------------------------------------------------------------------------- /src/repository/mark/mark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/repository/mark/mark.gif -------------------------------------------------------------------------------- /src/service/attach/dm/PwAttachDm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/service/attach/dm/PwAttachDm.php -------------------------------------------------------------------------------- /src/service/attach/dm/PwThreadAttachDm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/service/attach/dm/PwThreadAttachDm.php -------------------------------------------------------------------------------- /src/service/attention/srv/dataSource/PwFetchAttentionFresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/service/attention/srv/dataSource/PwFetchAttentionFresh.php -------------------------------------------------------------------------------- /src/service/attention/srv/dataSource/PwFetchFreshByTypeAndSrcId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/service/attention/srv/dataSource/PwFetchFreshByTypeAndSrcId.php -------------------------------------------------------------------------------- /src/service/attention/srv/dataSource/PwGetFreshById.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/service/attention/srv/dataSource/PwGetFreshById.php -------------------------------------------------------------------------------- /src/service/attention/srv/dataSource/PwGetFreshByIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/service/attention/srv/dataSource/PwGetFreshByIds.php -------------------------------------------------------------------------------- /src/service/attention/srv/reply/weibo/PwWeiboDoBase.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright ©2003-2103 phpwind.com 8 | * @license http://www.phpwind.com 9 | * @version $Id$ 10 | * @package wind 11 | */ 12 | abstract class PwWeiboDoBase { 13 | 14 | public function check($dm) { 15 | return true; 16 | } 17 | 18 | /** 19 | * 回复发布成功后调用 20 | * 21 | * @param int $weiboId 22 | */ 23 | public function addWeibo($weiboId) { 24 | 25 | } 26 | } -------------------------------------------------------------------------------- /src/service/cron/srv/base/AbstractCronBase.php: -------------------------------------------------------------------------------- 1 | 4 | * @author $Author$ Foxsee@aliyun.com 5 | * @copyright ?2003-2103 phpwind.com 6 | * @license http://www.phpwind.com 7 | * @version $Id$ 8 | * @package 9 | */ 10 | abstract class AbstractCronBase { 11 | 12 | abstract public function run($cronId); 13 | } 14 | ?> -------------------------------------------------------------------------------- /src/service/cron/srv/do/PwCronDoClearForumTodayposts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/service/cron/srv/do/PwCronDoClearForumTodayposts.php -------------------------------------------------------------------------------- /src/service/design/srv/model/html/config.php: -------------------------------------------------------------------------------- 1 | 'html', 5 | 'name'=>'自定义html', 6 | 'type'=>'other', 7 | 'refresh'=>false, 8 | 'tab'=>array('title','style','property','delete'), 9 | 'sign'=>array( 10 | array('{html|html}', '自定义html','html'), 11 | ), 12 | 'standardSign'=>array('sTitle'=>'{html}','sUrl'=>'','sFromId'=>'','sIntro'=>''), 13 | 'special'=>array( 14 | ), 15 | 16 | 'normal'=>array( 17 | 'html' =>array('textarea','自定义html','限10000字节','',''), 18 | ), 19 | ); 20 | ?> -------------------------------------------------------------------------------- /src/service/design/srv/model/searchbar/config.php: -------------------------------------------------------------------------------- 1 | 'searchbar', 5 | 'name'=>'搜索条', 6 | 'type'=>'other', 7 | 'refresh'=>false, 8 | 'tab'=>array('title','style','property','delete'), 9 | 'sign'=>array( 10 | array('{html|html}', '搜索条','html'), 11 | ), 12 | 'standardSign'=>array('sTitle'=>'{html}','sUrl'=>'','sFromId'=>'','sIntro'=>''), 13 | 'special'=>array( 14 | ), 15 | 16 | 'normal'=>array( 17 | 'html'=>array('textarea','搜索条','','searchbar|html',''), 18 | ), 19 | ); 20 | ?> -------------------------------------------------------------------------------- /src/service/domain/domain.sql: -------------------------------------------------------------------------------- 1 | drop table if exists `pw_domain`; 2 | create table `pw_domain` ( 3 | `domain_key` VARCHAR(100) NOT NULL DEFAULT '', 4 | `domain_type` VARCHAR(15) NOT NULL DEFAULT '', 5 | `domain` VARCHAR(15) NOT NULL DEFAULT '', 6 | `root` VARCHAR(45) NOT NULL DEFAULT '', 7 | `first` char(1) NOT NULL DEFAULT '', 8 | PRIMARY KEY (`domain_key`) 9 | )ENGINE=MYISAM DEFAULT CHARSET=utf8; -------------------------------------------------------------------------------- /src/service/education/Manifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 用户教育经历扩展 4 | 教育经历 5 | 6 | -------------------------------------------------------------------------------- /src/service/forum/srv/manage/do/PwThreadManageCopyDoBase.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright ©2003-2103 phpwind.com 8 | * @license http://www.phpwind.com 9 | * @version $Id$ 10 | * @package wind 11 | */ 12 | abstract class PwThreadManageCopyDoBase { 13 | 14 | public function copyThread(PwTopicDm $topicDm, $newTid) { 15 | 16 | } 17 | } -------------------------------------------------------------------------------- /src/service/invite/readme: -------------------------------------------------------------------------------- 1 | 邀请注册相关 -------------------------------------------------------------------------------- /src/service/message/srv/do/PwMessageDoBase.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright ©2003-2103 phpwind.com 8 | * @license http://www.phpwind.com 9 | * @version $Id$ 10 | * @package wind 11 | */ 12 | abstract class PwMessageDoBase { 13 | 14 | public function check($fromUid, $content,$uid=0) { 15 | return true; 16 | } 17 | 18 | public function addMessage($uid, $fromUid, $content) { 19 | 20 | } 21 | } -------------------------------------------------------------------------------- /src/service/mobile/config/plat.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright ©2003-2103 phpwind.com 8 | * @license http://www.phpwind.com 9 | * @version $Id$ 10 | * @package wind 11 | */ 12 | return array( 13 | 'aliyun' => array( 14 | 'name' => '阿里云短信平台', 15 | 'alias' => 'aliyun', 16 | 'managelink' => '', 17 | 'description' => '欢迎使用阿里云短信平台', 18 | 'components' => array('path' => 'SRV:mobile.srv.plat.PwPlatAliyun') 19 | ), 20 | 21 | ); -------------------------------------------------------------------------------- /src/service/mobile/srv/do/PwVerifyMobileBase.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright ©2003-2103 phpwind.com 8 | * @license http://www.phpwind.com 9 | * @version $Id$ 10 | * @package wind 11 | */ 12 | abstract class PwVerifyMobileBase { 13 | 14 | public function verifyMobile($mobile) { 15 | 16 | } 17 | } -------------------------------------------------------------------------------- /src/service/report/srv/report/PwReportAction.php: -------------------------------------------------------------------------------- 1 | 5 | * @author $Author: gao.wanggao $ Foxsee@aliyun.com 6 | * @copyright ©2003-2103 phpwind.com 7 | * @license http://www.phpwind.com 8 | * @version $Id: PwSpaceProfileDoInterface.php 6183 2012-03-19 05:18:47Z gao.wanggao $ 9 | * @package 10 | */ 11 | interface PwSpaceProfileDoInterface { 12 | 13 | public function createHtml($spaceBo); 14 | } -------------------------------------------------------------------------------- /src/service/tag/srv/action/PwTagAction.php: -------------------------------------------------------------------------------- 1 | Dec 13, 2011 6 | * @link http://www.phpwind.com 7 | * @copyright 2011 phpwind.com 8 | * @license 9 | * @version $Id: PwTagAction.php 3440 2012-01-12 08:25:36Z peihong.zhangph $ 10 | */ 11 | 12 | abstract class PwTagAction{ 13 | 14 | /** 15 | * 16 | * 获取某话题的最新内容 17 | * @param array $ids 18 | */ 19 | abstract function getContents($ids); 20 | 21 | } -------------------------------------------------------------------------------- /src/service/task/Mainfest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/service/user/srv/logout/PwLogoutDoBase.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright ©2003-2103 phpwind.com 8 | * @license http://www.windframework.com 9 | * @version $Id: PwLogoutDoBase.php 15902 2012-08-15 07:41:10Z xiaoxia.xuxx $ 10 | * @package src.service.user.srv.logout 11 | */ 12 | abstract class PwLogoutDoBase { 13 | /** 14 | * 用户退出之前的更新 15 | * 16 | * @param PwUserBo $bo 17 | */ 18 | abstract public function beforeLogout(PwUserBo $bo); 19 | } -------------------------------------------------------------------------------- /src/service/weibo/srv/dataSource/PwFetchWeiboById.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/src/service/weibo/srv/dataSource/PwFetchWeiboById.php -------------------------------------------------------------------------------- /src/service/word/srv/filter/PwFilterAction.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 用户工作经历插件 4 | 工作经历 5 | u_profile_tab 6 | work 7 | SRV:user.hooks.profile_work.srv.injector.PwUserWorkExperenceInjector 8 | run 9 | hooktype==work 10 | -------------------------------------------------------------------------------- /src/windid/conf/config.php: -------------------------------------------------------------------------------- 1 | 'db', //db为本地连接 http远程连接 如为db,请同时配置database.php里的数据库设置 5 | 'serverUrl' => 'http://www.p9.cn/windid', //服务端访问地址. 如:http://www.phpwind.net 6 | 'clientId' => '1', //该客户端在WindID里的id 7 | 'clientKey' => '111222', //通信密钥,请保持与WindID里的一致 8 | 'charset' => 'utf8', //客户端使用的字符编码 9 | ); 10 | ?> -------------------------------------------------------------------------------- /src/windid/conf/database.php: -------------------------------------------------------------------------------- 1 | 'mysql:host=localhost;dbname=nextwind10;port=3306', //数据库地址|库名|端口 11 | 'user' => 'root', //数据库用户名 12 | 'pwd' => '', //数据库密码 13 | 'charset' => 'utf8', //数据库编码方式 14 | 'tableprefix' => 'pw_windid_' //表前缀 15 | ); 16 | 17 | ?> -------------------------------------------------------------------------------- /src/windid/service/base/WindidBaseDao.php: -------------------------------------------------------------------------------- 1 | 2010-11-2 7 | * @license http://www.phpwind.com 8 | * @version $Id: WindidBaseDao.php 23671 2013-01-14 09:02:16Z jieyin $ 9 | * @package Windid.library.base 10 | */ 11 | abstract class WindidBaseDao extends PwBaseDao { 12 | 13 | public function __construct() { 14 | $this->setDelayAttributes(array('connection' => array('ref' => 'windiddb'))); 15 | } 16 | } -------------------------------------------------------------------------------- /wind/base/IWindController.php: -------------------------------------------------------------------------------- 1 | 6 | * @copyright ©2003-2103 phpwind.com 7 | * @license http://www.windframework.com 8 | * @version $Id: codetemplates(windframework_docs_zend_8.0).xml 2781 2011-09-22 03:59:17Z yishuo $ 9 | * @package wind 10 | */ 11 | interface IWindController { 12 | 13 | /** 14 | * @param AbstractWindRouter $handlerAdapter 15 | * @return WindForward 16 | */ 17 | public function doAction($handlerAdapter); 18 | } 19 | 20 | ?> -------------------------------------------------------------------------------- /wind/cache/exception/WindCacheException.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Qiong Wu 7 | * @copyright ©2003-2103 phpwind.com 8 | * @license http://www.windframework.com 9 | * @version $Id: WindCacheException.php 2973 2011-10-15 19:22:48Z yishuo $ 10 | * @package cache 11 | * @subpackage exception 12 | */ 13 | class WindCacheException extends WindException { 14 | 15 | 16 | } 17 | 18 | ?> -------------------------------------------------------------------------------- /wind/convert/IWindConverter.php: -------------------------------------------------------------------------------- 1 | 2011-10-19 6 | * @copyright ©2003-2103 phpwind.com 7 | * @license http://www.windframework.com 8 | * @version $Id: IWindConverter.php 3016 2011-10-20 02:23:08Z yishuo $ 9 | * @package convert 10 | */ 11 | interface IWindConverter { 12 | 13 | /** 14 | * 编码转化 15 | * 16 | * 对输入的字符串进行从原编码到目标编码的转化,请确定原编码与目标编码 17 | * @param string $srcText 18 | * @return string 转化后的编码 19 | */ 20 | public function convert($str); 21 | } 22 | 23 | ?> -------------------------------------------------------------------------------- /wind/convert/encode/big5-gb.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/wind/convert/encode/big5-gb.table -------------------------------------------------------------------------------- /wind/convert/encode/encode.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/wind/convert/encode/encode.table -------------------------------------------------------------------------------- /wind/convert/encode/gb-big5.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/wind/convert/encode/gb-big5.table -------------------------------------------------------------------------------- /wind/http/transfer/WindHttpTransferException.php: -------------------------------------------------------------------------------- 1 | 2012-4-5 4 | * @copyright ©2003-2103 phpwind.com 5 | * @license http://www.phpwind.com/license.php 6 | * @version $Id$ 7 | * @package http 8 | * @subpackage transfer 9 | */ 10 | class WindHttpTransferException extends WindException { 11 | 12 | } 13 | 14 | ?> -------------------------------------------------------------------------------- /wind/i18n/IWindLangResource.php: -------------------------------------------------------------------------------- 1 | 6 | * @copyright ©2003-2103 phpwind.com 7 | * @license http://www.windframework.com 8 | * @version $Id: IWindLangResource.php 3131 2011-11-17 02:48:33Z yishuo $ 9 | * @package i18n 10 | */ 11 | interface IWindLangResource { 12 | 13 | /** 14 | * 翻译接口 15 | * 16 | * @param string $message 17 | * @param array $params 18 | */ 19 | public function getMessage($message, $params = array()); 20 | } 21 | -------------------------------------------------------------------------------- /wind/i18n/WindI18nException.php: -------------------------------------------------------------------------------- 1 | 2011-11-16 4 | * @copyright ©2003-2103 phpwind.com 5 | * @license http://www.windframework.com 6 | * @version $Id$ 7 | * @package i18n 8 | */ 9 | class WindI18nException extends WindException { 10 | 11 | 12 | } 13 | 14 | ?> -------------------------------------------------------------------------------- /wind/mail/exception/WindMailException.php: -------------------------------------------------------------------------------- 1 | 2011-12-21 4 | * @copyright ©2003-2103 phpwind.com 5 | * @license http://www.windframework.com 6 | * @version $Id$ 7 | * @package mail 8 | * @subpackage exception 9 | */ 10 | class WindMailException extends WindException { 11 | 12 | /* (non-PHPdoc) 13 | * @see WindException::messageMapper() 14 | */ 15 | protected function messageMapper($code) { 16 | return ''; 17 | } 18 | } 19 | 20 | ?> -------------------------------------------------------------------------------- /wind/mail/sender/IWindSendMail.php: -------------------------------------------------------------------------------- 1 | 4 | * @copyright ©2003-2103 phpwind.com 5 | * @license http://www.windframework.com 6 | * @version $Id: IWindSendMail.php 3298 2012-01-06 12:48:26Z yishuo $ 7 | * @package mail 8 | * @subpackage sender 9 | */ 10 | interface IWindSendMail { 11 | 12 | /** 13 | * 发送邮件 14 | * 15 | * @param WindMail $mail 邮件消息封装对象 16 | * @return boolean 17 | */ 18 | public function send($mail, $config = array()); 19 | } -------------------------------------------------------------------------------- /www/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | 3 | RewriteBase / 4 | RewriteCond %{REQUEST_FILENAME} !-f 5 | RewriteCond %{REQUEST_FILENAME} !-d 6 | RewriteRule !.(js|ico|gif|jpe?g|bmp|png|css)$ /index.php [NC,L] 7 | -------------------------------------------------------------------------------- /www/aCloud/index.html: -------------------------------------------------------------------------------- 1 | Hello,phpwind! -------------------------------------------------------------------------------- /www/admin.php: -------------------------------------------------------------------------------- 1 | array('config' => array('module' => array('default-value' => 'default'), 'routes' => array('admin' => array('class' => 'LIB:route.PwAdminRoute','default' => true))))); 7 | Wekit::run('pwadmin', $components); -------------------------------------------------------------------------------- /www/attachment/index.html: -------------------------------------------------------------------------------- 1 | Hello,phpwind! -------------------------------------------------------------------------------- /www/crossdomain.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/favicon.ico -------------------------------------------------------------------------------- /www/html/index.html: -------------------------------------------------------------------------------- 1 | Hello,phpwind! -------------------------------------------------------------------------------- /www/humans.txt: -------------------------------------------------------------------------------- 1 | phpwind产品介绍 2 | --------------- 3 | phpwind秉承“快”的技术口碑,结合互联网发展和站长实际运营需求,具备“快、轻、多变”的产品特色。 4 | 通过自主研发的WindFramework框架,提供丰富组件、自定义模板标签、多模板引擎、视图化管理等。 5 | 以论坛作为整个社区网站的核心,其用户和内容体系被重点打造优化。 6 | 勋章、任务、消息、道具、认证等功能进一步加强了用户的互动、关怀、营销体系。 7 | 话题、我的版块、我的关注、粉丝、论坛新帖等功能解决用户指向性阅读和随意性阅读需求。 8 | 同时搭载云平台,整合第三方开发的插件、模板、云工具以及无线端产品和电子商务产品。 9 | 云平台支持应用的在线安装、升级和卸载,完善而易用的模板体系能很好的兼容各种产品形态展现。 10 | 11 | 感谢 12 | ---- 13 | 感谢站长们对phpwind的信任与选择!感谢所有参与并关注phpwind产品发展的同学们! 14 | 15 | 官方网站为 http://www.phpwind.com,官方论坛为 http://www.phpwind.net, 16 | 版权所有 www.phpwind.com,授权协议请查看 http://www.phpwind.com/license.php 17 | -------------------------------------------------------------------------------- /www/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /www/res/images/editor/blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/editor/blockquote.png -------------------------------------------------------------------------------- /www/res/images/editor/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/editor/del.png -------------------------------------------------------------------------------- /www/res/images/editor/file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/editor/file_icon.png -------------------------------------------------------------------------------- /www/res/images/editor/return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/editor/return.png -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/01.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/02.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/03.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/04.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/05.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/06.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/07.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/08.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/09.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/09.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/10.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/11.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/12.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/13.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/14.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/15.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/16.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/17.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/18.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/19.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/20.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/21.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/22.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/23.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/24.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/25.gif -------------------------------------------------------------------------------- /www/res/images/emotion/taodoll/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/emotion/taodoll/26.gif -------------------------------------------------------------------------------- /www/res/images/face/ban_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/face/ban_big.jpg -------------------------------------------------------------------------------- /www/res/images/face/ban_middle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/face/ban_middle.jpg -------------------------------------------------------------------------------- /www/res/images/face/ban_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/face/ban_small.jpg -------------------------------------------------------------------------------- /www/res/images/face/face_big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/face/face_big.jpg -------------------------------------------------------------------------------- /www/res/images/face/face_middle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/face/face_middle.jpg -------------------------------------------------------------------------------- /www/res/images/face/face_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/face/face_small.jpg -------------------------------------------------------------------------------- /www/res/images/install/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/bg.png -------------------------------------------------------------------------------- /www/res/images/install/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/btn.png -------------------------------------------------------------------------------- /www/res/images/install/complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/complete.png -------------------------------------------------------------------------------- /www/res/images/install/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/header.png -------------------------------------------------------------------------------- /www/res/images/install/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/icon.png -------------------------------------------------------------------------------- /www/res/images/install/icon_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/icon_install.png -------------------------------------------------------------------------------- /www/res/images/install/icon_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/icon_update.png -------------------------------------------------------------------------------- /www/res/images/install/ignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/ignore.png -------------------------------------------------------------------------------- /www/res/images/install/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/loading.gif -------------------------------------------------------------------------------- /www/res/images/install/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/logo.png -------------------------------------------------------------------------------- /www/res/images/install/pop_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/pop_loading.gif -------------------------------------------------------------------------------- /www/res/images/install/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/step.png -------------------------------------------------------------------------------- /www/res/images/install/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/tab.png -------------------------------------------------------------------------------- /www/res/images/install/tips_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/install/tips_system.png -------------------------------------------------------------------------------- /www/res/images/level/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/0.gif -------------------------------------------------------------------------------- /www/res/images/level/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/1.gif -------------------------------------------------------------------------------- /www/res/images/level/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/10.gif -------------------------------------------------------------------------------- /www/res/images/level/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/11.gif -------------------------------------------------------------------------------- /www/res/images/level/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/12.gif -------------------------------------------------------------------------------- /www/res/images/level/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/13.gif -------------------------------------------------------------------------------- /www/res/images/level/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/14.gif -------------------------------------------------------------------------------- /www/res/images/level/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/15.gif -------------------------------------------------------------------------------- /www/res/images/level/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/16.gif -------------------------------------------------------------------------------- /www/res/images/level/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/17.gif -------------------------------------------------------------------------------- /www/res/images/level/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/18.gif -------------------------------------------------------------------------------- /www/res/images/level/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/19.gif -------------------------------------------------------------------------------- /www/res/images/level/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/2.gif -------------------------------------------------------------------------------- /www/res/images/level/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/20.gif -------------------------------------------------------------------------------- /www/res/images/level/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/3.gif -------------------------------------------------------------------------------- /www/res/images/level/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/4.gif -------------------------------------------------------------------------------- /www/res/images/level/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/5.gif -------------------------------------------------------------------------------- /www/res/images/level/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/6.gif -------------------------------------------------------------------------------- /www/res/images/level/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/7.gif -------------------------------------------------------------------------------- /www/res/images/level/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/8.gif -------------------------------------------------------------------------------- /www/res/images/level/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/level/9.gif -------------------------------------------------------------------------------- /www/res/images/management/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/management/arrow_down.png -------------------------------------------------------------------------------- /www/res/images/management/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/management/arrow_up.png -------------------------------------------------------------------------------- /www/res/images/medal/big/rongyuhuiyuan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/big/rongyuhuiyuan.gif -------------------------------------------------------------------------------- /www/res/images/medal/big/shequjumin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/big/shequjumin.gif -------------------------------------------------------------------------------- /www/res/images/medal/big/shequlaomo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/big/shequlaomo.gif -------------------------------------------------------------------------------- /www/res/images/medal/big/shequmingxing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/big/shequmingxing.gif -------------------------------------------------------------------------------- /www/res/images/medal/big/viphuiyuan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/big/viphuiyuan.gif -------------------------------------------------------------------------------- /www/res/images/medal/big/xihuandaren.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/big/xihuandaren.gif -------------------------------------------------------------------------------- /www/res/images/medal/big/youxiubanzhu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/big/youxiubanzhu.gif -------------------------------------------------------------------------------- /www/res/images/medal/big/yuanchuangxieshou.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/big/yuanchuangxieshou.gif -------------------------------------------------------------------------------- /www/res/images/medal/big/zhongshihuiyuan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/big/zhongshihuiyuan.gif -------------------------------------------------------------------------------- /www/res/images/medal/big/zhuixingyizu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/big/zhuixingyizu.gif -------------------------------------------------------------------------------- /www/res/images/medal/big/zuiaishafa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/big/zuiaishafa.gif -------------------------------------------------------------------------------- /www/res/images/medal/icon/rongyuhuiyuan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/icon/rongyuhuiyuan.gif -------------------------------------------------------------------------------- /www/res/images/medal/icon/shequjumin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/icon/shequjumin.gif -------------------------------------------------------------------------------- /www/res/images/medal/icon/shequlaomo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/icon/shequlaomo.gif -------------------------------------------------------------------------------- /www/res/images/medal/icon/shequmingxing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/icon/shequmingxing.gif -------------------------------------------------------------------------------- /www/res/images/medal/icon/viphuiyuan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/icon/viphuiyuan.gif -------------------------------------------------------------------------------- /www/res/images/medal/icon/xihuandaren.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/icon/xihuandaren.gif -------------------------------------------------------------------------------- /www/res/images/medal/icon/youxiubanzhu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/icon/youxiubanzhu.gif -------------------------------------------------------------------------------- /www/res/images/medal/icon/yuanchuangxieshou.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/icon/yuanchuangxieshou.gif -------------------------------------------------------------------------------- /www/res/images/medal/icon/zhongshihuiyuan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/icon/zhongshihuiyuan.gif -------------------------------------------------------------------------------- /www/res/images/medal/icon/zhuixingyizu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/icon/zhuixingyizu.gif -------------------------------------------------------------------------------- /www/res/images/medal/icon/zuiaishafa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/medal/icon/zuiaishafa.gif -------------------------------------------------------------------------------- /www/res/images/myspace/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/myspace/close.png -------------------------------------------------------------------------------- /www/res/images/myspace/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/myspace/lock.png -------------------------------------------------------------------------------- /www/res/images/myspace/themes_pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/myspace/themes_pages.png -------------------------------------------------------------------------------- /www/res/images/portal/thumb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/portal/thumb_up.png -------------------------------------------------------------------------------- /www/res/images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/images/transparent.png -------------------------------------------------------------------------------- /www/res/js/dev/pages/appcenter/admin/appcenter_manage.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * PHPWind PAGE JS 3 | * @Copyright Copyright 2011, phpwind.com 4 | * @Descript: 后台-应用中心 5 | * @Author : linhao87@gmail.com 6 | * @Depend : jquery.js(1.7 or later), dialog 7 | * $Id$ 8 | */ 9 | 10 | ;(function(){ 11 | 12 | })(); -------------------------------------------------------------------------------- /www/res/js/dev/ui_libs/chosen/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/ui_libs/chosen/chosen-sprite.png -------------------------------------------------------------------------------- /www/res/js/dev/ui_libs/colorPicker/images/color_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/ui_libs/colorPicker/images/color_panel.png -------------------------------------------------------------------------------- /www/res/js/dev/ui_libs/colorPicker/images/color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/ui_libs/colorPicker/images/color_picker.png -------------------------------------------------------------------------------- /www/res/js/dev/ui_libs/datePicker/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/ui_libs/datePicker/bg.png -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/jPlayer/Jplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/jPlayer/Jplayer.swf -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/jPlayer/skin/blue.monday/jplayer.blue.monday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/jPlayer/skin/blue.monday/jplayer.blue.monday.jpg -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/jPlayer/skin/blue.monday/jplayer.blue.monday.seeking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/jPlayer/skin/blue.monday/jplayer.blue.monday.seeking.gif -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/jPlayer/skin/blue.monday/jplayer.blue.monday.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/jPlayer/skin/blue.monday/jplayer.blue.monday.video.play.png -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/jPlayer/skin/pink.flag/jplayer.pink.flag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/jPlayer/skin/pink.flag/jplayer.pink.flag.jpg -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/jPlayer/skin/pink.flag/jplayer.pink.flag.seeking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/jPlayer/skin/pink.flag/jplayer.pink.flag.seeking.gif -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/jPlayer/skin/pink.flag/jplayer.pink.flag.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/jPlayer/skin/pink.flag/jplayer.pink.flag.video.play.png -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/swfobject/expressInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/swfobject/expressInstall.swf -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/swfupload/Flash/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/swfupload/Flash/swfupload.swf -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/swfupload/button80x25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/swfupload/button80x25.png -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/swfupload/swfupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/swfupload/swfupload.js -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/syntaxHihglighter/scripts/clipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/syntaxHihglighter/scripts/clipboard.swf -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/syntaxHihglighter/styles/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/syntaxHihglighter/styles/help.png -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/syntaxHihglighter/styles/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/syntaxHihglighter/styles/magnifier.png -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/syntaxHihglighter/styles/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/syntaxHihglighter/styles/page_white_code.png -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/syntaxHihglighter/styles/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/syntaxHihglighter/styles/page_white_copy.png -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/syntaxHihglighter/styles/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/syntaxHihglighter/styles/printer.png -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/syntaxHihglighter/styles/wrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/syntaxHihglighter/styles/wrapping.png -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/textCopy/zeroClipboard/ZeroClipboard10.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/textCopy/zeroClipboard/ZeroClipboard10.fla -------------------------------------------------------------------------------- /www/res/js/dev/util_libs/textCopy/zeroClipboard/ZeroClipboard10.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/util_libs/textCopy/zeroClipboard/ZeroClipboard10.swf -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | //编辑器的in18i配置文件 -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/plugins/dragDropUpload/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/plugins/dragDropUpload/plugin.js -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/buyiui/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/buyiui/blank.gif -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/buyiui/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/buyiui/down.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/buyiui/music_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/buyiui/music_48.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/buyiui/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/buyiui/pic.jpg -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/buyiui/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/buyiui/rar.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/buyiui/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/buyiui/toolbar.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/buyiui/video_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/buyiui/video_48.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/blank.gif -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/btn.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/checkbox.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/color_picker.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/del.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/down.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/edit_menu_upfile_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/edit_menu_upfile_bg.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/edit_tips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/edit_tips.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/file_icon.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/music_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/music_48.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/photo_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/photo_edit.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/pic.jpg -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/pop_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/pop_close.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/rar.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/toolbar.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/video_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/video_48.png -------------------------------------------------------------------------------- /www/res/js/dev/windeditor/themes/default/zip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpwind/nextwind/cfc5d9bcfb2a401cc404d2fd5d4050e7c3cff83a/www/res/js/dev/windeditor/themes/default/zip.gif -------------------------------------------------------------------------------- /www/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /aCloud/ 3 | Disallow: /conf/ 4 | Disallow: /data/ 5 | Disallow: /pay/ 6 | Disallow: /res/ 7 | Disallow: /src/ 8 | Disallow: /template/ 9 | Disallow: /themes/ 10 | Disallow: /wind/ 11 | Disallow: /install.php 12 | Disallow: /thumb.php -------------------------------------------------------------------------------- /www/template/admin/common/footer.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /www/template/appcenter/admin/server_appcenter.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |