在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → 杰奇小说1.80 完整版可用

杰奇小说1.80 完整版可用

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:4.55M
  • 下载次数:18
  • 浏览次数:162
  • 发布时间:2022-10-18
  • 实例类别:PHP语言基础
  • 发 布 人:srqs
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 杰奇1.8

实例介绍

【实例简介】杰奇小说1.80 完整版可用

如需解压,密码为:4X7g$BjPPCm%twRr

1、服务器运行环境需要升级到PHP5.3系列,详细需求为:

PHP 5.3.x

Zend Guard Loader (Runtime for PHP 5.3)

MySQL 5.0 以上

2、增加原创作品共享及代理销售功能。具体流程为:

2.1 杰奇网络与原创小说网站达成合作协议,将原创作品共享作品到杰奇书盟平台 http://book.jieqi.com

2.2 杰奇小说连载系统1.8用户通过内置接口实现共享作品在本站同步更新,显示及收费订阅功能。

2.3 使用本接口需要单独申请,加盟站可根据销售额获得销售分成。

2.4 VIP章节阅读无需跳转到来源站,而是采用页内调用来源站图片方式显示章节内容。

3、增加一键登录接口,支持QQ、新浪微博和淘宝账号。

使用本功能,需要分别向服务网站申请合作账号和密钥,然后设置在本站 /api/***/config.inc.php 中

4、优化内容模板的自定义显示功能,可在具体页面的内容模板顶部加入以下标签(不需要修改theme.html):

4.1 自定义载入区块配置文件。

例如:以下配置表示载入 /configs/article/infoblocks.php

{?set jieqi_blocks_module = "article"?}

{?set jieqi_blocks_config = "infoblocks"?}

4.2 定义列表页面每页显示几行,只对分页列表有效。

例如:在小说分类列表页模板(/modules/article/templates/articlelist.html)加上

{?set jieqi_page_rows = "50"?}

4.3 自定义调用theme功能,默认所有页面都调用系统定义的theme.html,显示成统一的页头页尾。

如果单独某个页面需要不同的theme,那么需要定义一个新的theme模板,然后在内容模板里面指定这个theme。

例如:以下设置表示本页面调用的是指定路径的theme文件

{?set jieqi_page_template = "themes/jieqi/theme1.html"?}

4.4 自定义html头部的title和keywords,description。

如以下定义:后面引号中是定义显示的内容,可以直接写文字,也可以调用本页有的标签。只是写法上,模板中<{$articlename}>这里写成{$articlename}

{?set $jieqi_pagetitle = "{$articlename}-{$author}-{$jieqi_sitename}"?}

{?set $meta_keywords = "{$articlename} {$author} {$sort}"?}

{?set $meta_description = "{$articlename} {$author} {$sort}"?}

5、模板中关于时间格式的调整。

鉴于不同用户对时间显示格式要求不同,所以默认模板中的时间格式为数字类型,模板中调用date函数来显示成常用时间格式。

例如:小说列表中的更新时间,标签为 {?$articlerows[i].lastupdate?},实际模板中显示成时间格式可改成:

{?$articlerows[i].lastupdate|date:'Y-m-d H:i:s'?} ,模板中输出类似: 2013-10-28 16:01:20

这里的 YmdHis 六个字母分别表示,年月日时分秒,比如只需要显示年月日,以上标签改成 {?$articlerows[i].lastupdate|date:'Y-m-d'?}

其它模板中,若发现时间显示变成一串数字了,皆使用以上方法修改。

6、优化小说伪静态规则,增加独立的全本伪静态以及小说分类拼音目录的伪静态。具体伪静态写法可参考后台参数设置的示例。

例如:/fulltop/<{$order}>/<{$page}>.html

指向:/modules/article/toplist.php?fullflag=1&order=$order&page=$page

表示:全本小说排行榜

例如:/sort/<{$sortcode}>/<{$page}>.html

指向:/modules/article/articlelist.php?sortcode=$sortcode&page=$page

表示:分类列表伪静态,<{$sortcode}>为设置在/configs/article/sort.php 中的分类拼音

7、小说信息页面修改:

7.1 默认模板增加小说评分功能(在小说信息页面,点击五角星进行评分)。后台可以设置评分最大值已经每天最多评分几次。

7.2 去掉了默认的最新评论赋值,如要显示最新评论改成调用区块的方式。

例如:直接在模板/modules/article/templates/articleinfo.html中调用最新书评

{?block bid="0" blockname="最新书评" module="article" filename="block_areviews" classname="BlockArticleAreviews" side="-1" title="最新书评" vars="10,0,0,id" template="block_areviews.html" contenttype="4" custom="0" publish="3" hasvars="1"?}

7.3 增加了章节目录的区块,如果要在小说信息页显示最开始几个章节或者最后几个章节,都可以调用该区块。

例如:在模板中调用开始5个章节

{?block bid="0" blockname="前五章节" module="article" filename="block_achapters" classname="BlockArticleAchapters" side="-1" title="前五章节" vars="chapterorder,5,1,id,1" template="block_achapters.html" contenttype="4" custom="0" publish="3" hasvars="1"?}

8、小说目录页模板修改(/modules/article/templates/index.html):

1.7及以前版本目录页章节变量为 $indexrows,比如 $indexrows[i].cname1, $indexrows[i].cname2 分别表示一行里面第1和第2列的章节名。

1.8开始取消了列的概念,所有章节赋值在数组 $chapterrows,其变量含义为

$chapterrows[i].chaptertype 章节还是分卷标志,0-章节 1-分卷

$chapterrows[i].chapterid   章节ID

$chapterrows[i].chaptername 章节名称

$chapterrows[i].isvip       是否VIP章节,0-免费 1-VIP

$chapterrows[i].saleprice   章节售价(虚拟币值)

$chapterrows[i].url_chapter 章节阅读页网址

$chapterrows[i].size_c      章节字数

$chapterrows[i].lastupdate  章节更新时间,数字类型,显示成时间格式改成 {?$chapterrows[i].lastupdate|date:'Y-m-d H:i:s'?}

【实例截图】

from clipboard
【核心代码】

.
├── jieqi1.80wzb_downzz.com
│   ├── 301.php
│   ├── 404.php
│   ├── adclick.php
│   ├── addfriends.php
│   ├── admin
│   │   ├── blockedit.php
│   │   ├── blockfiles.php
│   │   ├── blocks.php
│   │   ├── blockupdate.php
│   │   ├── changegroup.php
│   │   ├── cleancache.php
│   │   ├── configs.php
│   │   ├── dblogin.php
│   │   ├── dbmanage.php
│   │   ├── dboptimize.php
│   │   ├── dbquery.php
│   │   ├── faq.php
│   │   ├── footer.php
│   │   ├── groups.php
│   │   ├── header.php
│   │   ├── honors.php
│   │   ├── index.php
│   │   ├── left.php
│   │   ├── license.php
│   │   ├── login.php
│   │   ├── logs.php
│   │   ├── main.php
│   │   ├── managemodules.php
│   │   ├── message.php
│   │   ├── messagedetail.php
│   │   ├── messagelist.php
│   │   ├── newmessage.php
│   │   ├── online.php
│   │   ├── power.php
│   │   ├── ptopiclist.php
│   │   ├── reportdetail.php
│   │   ├── reportlist.php
│   │   ├── right.php
│   │   ├── sysinfo.php
│   │   ├── topuser.php
│   │   ├── userlog.php
│   │   ├── usermanage.php
│   │   └── users.php
│   ├── api
│   │   ├── qq
│   │   │   ├── bind.php
│   │   │   ├── config.inc.php
│   │   │   ├── lang_api.php
│   │   │   ├── login.php
│   │   │   ├── loginback.php
│   │   │   └── templates
│   │   │       └── bind.html
│   │   ├── qqt
│   │   │   ├── bind.php
│   │   │   ├── config.inc.php
│   │   │   ├── lang_api.php
│   │   │   ├── login.php
│   │   │   ├── loginback.php
│   │   │   └── templates
│   │   │       └── bind.html
│   │   ├── taobao
│   │   │   ├── bind.php
│   │   │   ├── config.inc.php
│   │   │   ├── lang_api.php
│   │   │   ├── login.php
│   │   │   ├── loginback.php
│   │   │   └── templates
│   │   │       └── bind.html
│   │   ├── uc.php
│   │   ├── ucenter
│   │   │   ├── client.php
│   │   │   ├── config.inc.php
│   │   │   ├── control
│   │   │   │   ├── app.php
│   │   │   │   ├── cache.php
│   │   │   │   ├── domain.php
│   │   │   │   ├── feed.php
│   │   │   │   ├── friend.php
│   │   │   │   ├── index.htm
│   │   │   │   ├── mail.php
│   │   │   │   ├── pm.php
│   │   │   │   ├── tag.php
│   │   │   │   └── user.php
│   │   │   ├── data
│   │   │   │   ├── cache
│   │   │   │   │   ├── apps.php
│   │   │   │   │   ├── badwords.php
│   │   │   │   │   ├── index.htm
│   │   │   │   │   └── settings.php
│   │   │   │   └── index.htm
│   │   │   ├── index.htm
│   │   │   ├── lib
│   │   │   │   ├── db.class.php
│   │   │   │   ├── index.htm
│   │   │   │   ├── sendmail.inc.php
│   │   │   │   ├── uccode.class.php
│   │   │   │   └── xml.class.php
│   │   │   └── model
│   │   │       ├── app.php
│   │   │       ├── base.php
│   │   │       ├── cache.php
│   │   │       ├── domain.php
│   │   │       ├── friend.php
│   │   │       ├── index.htm
│   │   │       ├── mail.php
│   │   │       ├── misc.php
│   │   │       ├── note.php
│   │   │       ├── pm.php
│   │   │       ├── tag.php
│   │   │       └── user.php
│   │   └── weibo
│   │       ├── bind.php
│   │       ├── config.inc.php
│   │       ├── lang_api.php
│   │       ├── login.php
│   │       ├── loginback.php
│   │       └── templates
│   │           └── bind.html
│   ├── autosave.php
│   ├── avatar.php
│   ├── blocks
│   │   ├── block_custom.php
│   │   ├── block_fileget.php
│   │   ├── block_grouplist.php
│   │   ├── block_login.php
│   │   ├── block_message.php
│   │   ├── block_searchuser.php
│   │   ├── block_topuser.php
│   │   ├── block_ufriends.php
│   │   ├── block_uinfo.php
│   │   ├── block_ulinks.php
│   │   ├── block_uptopics.php
│   │   ├── block_userbox.php
│   │   ├── block_usercommend.php
│   │   ├── block_userlist.php
│   │   ├── block_userset.php
│   │   └── block_userstatus.php
│   ├── blockshow.php
│   ├── cache
│   ├── checkcode.php
│   ├── class
│   │   ├── attachs.php
│   │   ├── blocks.php
│   │   ├── configs.php
│   │   ├── friends.php
│   │   ├── groups.php
│   │   ├── honors.php
│   │   ├── logs.php
│   │   ├── message.php
│   │   ├── modules.php
│   │   ├── online.php
│   │   ├── posts.php
│   │   ├── power.php
│   │   ├── pposts.php
│   │   ├── ptopics.php
│   │   ├── registerip.php
│   │   ├── report.php
│   │   ├── right.php
│   │   ├── topics.php
│   │   ├── userlink.php
│   │   ├── userlog.php
│   │   └── users.php
│   ├── compiled
│   ├── configs
│   │   ├── action.php
│   │   ├── adminmenu.php
│   │   ├── article
│   │   │   ├── action.php
│   │   │   ├── adminmenu.php
│   │   │   ├── authorblocks.php
│   │   │   ├── collectsite.php
│   │   │   ├── configs.php
│   │   │   ├── credit.php
│   │   │   ├── deny.php
│   │   │   ├── filter.php
│   │   │   ├── guideblocks.php
│   │   │   ├── indexblocks.php
│   │   │   ├── infoblocks.php
│   │   │   ├── listblocks.php
│   │   │   ├── option.php
│   │   │   ├── power.php
│   │   │   ├── right.php
│   │   │   ├── sort.php
│   │   │   ├── sortblocks.php
│   │   │   ├── top.php
│   │   │   └── topblocks.php
│   │   ├── besp.php
│   │   ├── blockfiles.php
│   │   ├── blocks.php
│   │   ├── configs.php
│   │   ├── customblocks.php
│   │   ├── define.php
│   │   ├── deny.php
│   │   ├── forum
│   │   │   ├── adminmenu.php
│   │   │   ├── configs.php
│   │   │   ├── forumcatset.php
│   │   │   ├── forumsset.php
│   │   │   ├── forumtops.php
│   │   │   └── power.php
│   │   ├── groups.php
│   │   ├── honors.php
│   │   ├── indexblocks.php
│   │   ├── lsort.php
│   │   ├── memberblocks.php
│   │   ├── mimes.php
│   │   ├── modules.php
│   │   ├── obook
│   │   │   ├── adminmenu.php
│   │   │   ├── authorblocks.php
│   │   │   ├── configs.php
│   │   │   ├── guideblocks.php
│   │   │   ├── indexblocks.php
│   │   │   ├── option.php
│   │   │   ├── page.css
│   │   │   ├── pagebottom.js
│   │   │   ├── pagetop.js
│   │   │   ├── pagetop_big5.js
│   │   │   ├── pagetop_gb2312.js
│   │   │   ├── pagetop_gbk.js
│   │   │   ├── power.php
│   │   │   ├── publisher.php
│   │   │   ├── readcode.php
│   │   │   └── sort.php
│   │   ├── option.php
│   │   ├── pay
│   │   │   ├── adminmenu.php
│   │   │   ├── configs.php
│   │   │   ├── option.php
│   │   │   ├── payblocks.php
│   │   │   ├── paytype.php
│   │   │   └── power.php
│   │   ├── power.php
│   │   ├── right.php
│   │   ├── rsort.php
│   │   ├── setting.php
│   │   ├── sites.php
│   │   ├── smiles.php
│   │   ├── system.php
│   │   ├── userblocks.php
│   │   ├── userpage.php
│   │   └── vips.php
│   ├── css
│   │   ├── admin_frame.css
│   │   ├── admin_left.css
│   │   └── admin_right.css
│   ├── custom.php
│   ├── favicon.ico
│   ├── files
│   │   ├── article
│   │   ├── forum
│   │   ├── obook
│   │   ├── pay
│   │   └── system
│   ├── footer.php
│   ├── getpass.php
│   ├── global.php
│   ├── header.php
│   ├── images
│   │   ├── admin
│   │   │   └── logo.gif
│   │   ├── api
│   │   │   ├── qq_ico.gif
│   │   │   ├── qq_login.gif
│   │   │   ├── qqt_login.gif
│   │   │   ├── taobao_ico.gif
│   │   │   ├── taobao_login.gif
│   │   │   ├── weibo_ico.gif
│   │   │   └── weibo_login.gif
│   │   ├── blank.gif
│   │   ├── checkcode.gif
│   │   ├── checkcode_big5.gif
│   │   ├── checkerror.gif
│   │   ├── checkright.gif
│   │   ├── favicon.png
│   │   ├── loading.gif
│   │   ├── loading1.gif
│   │   ├── logo.gif
│   │   ├── logos.gif
│   │   ├── noavatar.jpg
│   │   ├── noavatari.jpg
│   │   ├── noavatars.jpg
│   │   ├── picview.gif
│   │   ├── rate
│   │   │   ├── ratestar.gif
│   │   │   ├── ratestar1.gif
│   │   │   └── ratestarx.gif
│   │   ├── share
│   │   │   ├── 163.gif
│   │   │   ├── baiduc.gif
│   │   │   ├── douban.gif
│   │   │   ├── googleb.gif
│   │   │   ├── kaixin001.gif
│   │   │   ├── qqs.gif
│   │   │   ├── qqt.gif
│   │   │   ├── qqz.gif
│   │   │   ├── renren.gif
│   │   │   ├── sina.gif
│   │   │   └── sinat.gif
│   │   ├── smiles
│   │   │   ├── 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
│   │   │   ├── 21.gif
│   │   │   ├── 22.gif
│   │   │   ├── 23.gif
│   │   │   ├── 24.gif
│   │   │   ├── 25.gif
│   │   │   ├── 26.gif
│   │   │   ├── 27.gif
│   │   │   ├── 28.gif
│   │   │   ├── 29.gif
│   │   │   ├── 3.gif
│   │   │   ├── 30.gif
│   │   │   ├── 31.gif
│   │   │   ├── 32.gif
│   │   │   ├── 33.gif
│   │   │   ├── 34.gif
│   │   │   ├── 35.gif
│   │   │   ├── 36.gif
│   │   │   ├── 37.gif
│   │   │   ├── 38.gif
│   │   │   ├── 39.gif
│   │   │   ├── 4.gif
│   │   │   ├── 40.gif
│   │   │   ├── 5.gif
│   │   │   ├── 6.gif
│   │   │   ├── 7.gif
│   │   │   ├── 8.gif
│   │   │   └── 9.gif
│   │   ├── star
│   │   │   ├── 0.gif
│   │   │   ├── 1.gif
│   │   │   ├── 2.gif
│   │   │   ├── 3.gif
│   │   │   ├── 4.gif
│   │   │   ├── 5.gif
│   │   │   ├── 6.gif
│   │   │   └── 7.gif
│   │   ├── ubb
│   │   │   ├── bb_bold.gif
│   │   │   ├── bb_center.gif
│   │   │   ├── bb_clear.gif
│   │   │   ├── bb_code.gif
│   │   │   ├── bb_color.gif
│   │   │   ├── bb_contract.gif
│   │   │   ├── bb_delete.gif
│   │   │   ├── bb_email.gif
│   │   │   ├── bb_expand.gif
│   │   │   ├── bb_flash.gif
│   │   │   ├── bb_floatleft.gif
│   │   │   ├── bb_floatright.gif
│   │   │   ├── bb_fly.gif
│   │   │   ├── bb_free.gif
│   │   │   ├── bb_hide.gif
│   │   │   ├── bb_image.gif
│   │   │   ├── bb_indent.gif
│   │   │   ├── bb_italic.gif
│   │   │   ├── bb_left.gif
│   │   │   ├── bb_media.gif
│   │   │   ├── bb_menupop.gif
│   │   │   ├── bb_orderedlist.gif
│   │   │   ├── bb_outdent.gif
│   │   │   ├── bb_qq.gif
│   │   │   ├── bb_quote.gif
│   │   │   ├── bb_ra.gif
│   │   │   ├── bb_redo.gif
│   │   │   ├── bb_removeformat.gif
│   │   │   ├── bb_right.gif
│   │   │   ├── bb_rm.gif
│   │   │   ├── bb_separator.gif
│   │   │   ├── bb_size.gif
│   │   │   ├── bb_smile.gif
│   │   │   ├── bb_sub.gif
│   │   │   ├── bb_sup.gif
│   │   │   ├── bb_table.gif
│   │   │   ├── bb_underline.gif
│   │   │   ├── bb_undo.gif
│   │   │   ├── bb_unlink.gif
│   │   │   ├── bb_unorderedlist.gif
│   │   │   ├── bb_url.gif
│   │   │   ├── bb_vupload.gif
│   │   │   ├── bb_wma.gif
│   │   │   └── bb_wmv.gif
│   │   ├── ui
│   │   │   ├── c.gif
│   │   │   ├── h.gif
│   │   │   ├── _c.gif
│   │   │   ├── _h.gif
│   │   │   ├── ac.gif
│   │   │   ├── ah.gif
│   │   │   ├── blank.gif
│   │   │   ├── grip.gif
│   │   │   ├── sarrow.png
│   │   │   ├── sc.gif
│   │   │   ├── sh.gif
│   │   │   └── track.gif
│   │   └── xml.gif
│   ├── include
│   │   ├── apiclient.php
│   │   ├── apicommon.php
│   │   ├── big5-gb.table
│   │   ├── big5-unicode.table
│   │   ├── changecode.php
│   │   ├── checker.php
│   │   ├── checklogin.php
│   │   ├── clssort.php
│   │   ├── dologout.php
│   │   ├── funaction.php
│   │   ├── funmessage.php
│   │   ├── funpersons.php
│   │   ├── funpost.php
│   │   ├── funsort.php
│   │   ├── funspecial.php
│   │   ├── funstat.php
│   │   ├── funsystem.php
│   │   ├── funtag.php
│   │   ├── funurl.php
│   │   ├── funuser.php
│   │   ├── funuser_ucenter.php
│   │   ├── funusers.php
│   │   ├── gb-big5.table
│   │   ├── gb-pinyin.table
│   │   ├── gb-unicode.table
│   │   ├── ip2location.php
│   │   ├── qqwry.dat
│   │   ├── session.php
│   │   ├── useraction.php
│   │   ├── userlocal.php
│   │   ├── varstream.php
│   │   └── visitorinfo.php
│   ├── index.php
│   ├── indexs.php
│   ├── install
│   │   ├── data.sql
│   │   ├── footer.php
│   │   ├── header.php
│   │   ├── index.php
│   │   ├── js
│   │   │   ├── alert.js
│   │   │   ├── checkbox.js
│   │   │   ├── jumpmenu.js
│   │   │   └── license.js
│   │   ├── lang
│   │   │   └── language.php
│   │   ├── sql
│   │   │   ├── article
│   │   │   │   ├── data.sql
│   │   │   │   ├── modinfo.php
│   │   │   │   └── struct.sql
│   │   │   ├── data.sql
│   │   │   ├── forum
│   │   │   │   ├── data.sql
│   │   │   │   ├── modinfo.php
│   │   │   │   └── struct.sql
│   │   │   ├── obook
│   │   │   │   ├── data.sql
│   │   │   │   ├── modinfo.php
│   │   │   │   └── struct.sql
│   │   │   ├── pay
│   │   │   │   ├── data.sql
│   │   │   │   ├── modinfo.php
│   │   │   │   └── struct.sql
│   │   │   ├── struct.sql
│   │   │   └── system
│   │   │       ├── data.sql
│   │   │       ├── modinfo.php
│   │   │       └── struct.sql
│   │   ├── step0.php
│   │   ├── step1.php
│   │   ├── step2.php
│   │   ├── step3.php
│   │   ├── step4.php
│   │   ├── step5.php
│   │   ├── step6.php
│   │   ├── step7.php
│   │   ├── step8.php
│   │   ├── struct.sql
│   │   └── templates
│   │       ├── images
│   │       │   └── style.css
│   │       ├── license.html
│   │       ├── step0.html
│   │       ├── step1.html
│   │       ├── step2.html
│   │       ├── step3.html
│   │       ├── step4.html
│   │       ├── step5.html
│   │       ├── step6.html
│   │       ├── step7.html
│   │       ├── step8.html
│   │       ├── style.css
│   │       └── theme.html
│   ├── lang
│   │   ├── lang_action.php
│   │   ├── lang_blocks.php
│   │   ├── lang_cache.php
│   │   ├── lang_checker.php
│   │   ├── lang_configs.php
│   │   ├── lang_database.php
│   │   ├── lang_groups.php
│   │   ├── lang_honors.php
│   │   ├── lang_index.php
│   │   ├── lang_message.php
│   │   ├── lang_modules.php
│   │   ├── lang_parlar.php
│   │   ├── lang_post.php
│   │   ├── lang_power.php
│   │   ├── lang_qqauth.php
│   │   ├── lang_report.php
│   │   ├── lang_right.php
│   │   ├── lang_special.php
│   │   ├── lang_sysinfo.php
│   │   ├── lang_system.php
│   │   ├── lang_userlink.php
│   │   └── lang_users.php
│   ├── lib
│   │   ├── OpenSDK
│   │   │   ├── 163
│   │   │   │   └── Weibo.php
│   │   │   ├── Baidu
│   │   │   │   └── Open.php
│   │   │   ├── Douban
│   │   │   │   └── Open.php
│   │   │   ├── Kaixin
│   │   │   │   ├── SNS.php
│   │   │   │   └── SNS2.php
│   │   │   ├── OAuth
│   │   │   │   ├── Client.php
│   │   │   │   ├── Interface.php
│   │   │   │   └── QQSNSClient.php
│   │   │   ├── OAuth2
│   │   │   │   └── Client.php
│   │   │   ├── RenRen
│   │   │   │   └── SNS2.php
│   │   │   ├── Sina
│   │   │   │   ├── Weibo.php
│   │   │   │   └── Weibo2.php
│   │   │   ├── Sohu
│   │   │   │   └── Weibo.php
│   │   │   ├── Taobao
│   │   │   │   └── Taobao2.php
│   │   │   ├── Tencent
│   │   │   │   ├── SNS.php
│   │   │   │   ├── SNS2.php
│   │   │   │   └── Weibo.php
│   │   │   └── Util.php
│   │   ├── Services
│   │   │   └── JSON.php
│   │   ├── compress
│   │   │   ├── jar
│   │   │   │   ├── JavaBook.class
│   │   │   │   ├── META-INF
│   │   │   │   │   └── MANIFEST.MF
│   │   │   │   ├── a.class
│   │   │   │   ├── b.class
│   │   │   │   ├── c.class
│   │   │   │   ├── d.class
│   │   │   │   ├── e.class
│   │   │   │   ├── f.class
│   │   │   │   ├── g.class
│   │   │   │   ├── h.class
│   │   │   │   ├── i.class
│   │   │   │   ├── icon.png
│   │   │   │   ├── j.class
│   │   │   │   ├── k.class
│   │   │   │   ├── l.class
│   │   │   │   ├── m.class
│   │   │   │   ├── n.class
│   │   │   │   └── o.class
│   │   │   ├── jar.php
│   │   │   ├── umd.php
│   │   │   ├── unzip.php
│   │   │   └── zip.php
│   │   ├── database
│   │   │   ├── database.php
│   │   │   ├── mysql
│   │   │   │   └── db.php
│   │   │   └── sqlite
│   │   │       └── db.php
│   │   ├── ftp
│   │   │   └── ftp.php
│   │   ├── html
│   │   │   ├── form
│   │   │   │   ├── form.php
│   │   │   │   ├── formbutton.php
│   │   │   │   ├── formcheckbox.php
│   │   │   │   ├── formdhtmltextarea.php
│   │   │   │   ├── formelement.php
│   │   │   │   ├── formelementtray.php
│   │   │   │   ├── formfile.php
│   │   │   │   ├── formhidden.php
│   │   │   │   ├── formhtmleditor.php
│   │   │   │   ├── formlabel.php
│   │   │   │   ├── formpassword.php
│   │   │   │   ├── formradio.php
│   │   │   │   ├── formselect.php
│   │   │   │   ├── formtext.php
│   │   │   │   ├── formtextarea.php
│   │   │   │   ├── formtextdateselect.php
│   │   │   │   ├── tableform.php
│   │   │   │   └── themeform.php
│   │   │   ├── formloader.php
│   │   │   ├── page.php
│   │   │   └── tinymce
│   │   │       ├── changelog.txt
│   │   │       ├── langs
│   │   │       │   ├── en.js
│   │   │       │   └── zh.js
│   │   │       ├── license.txt
│   │   │       ├── plugins
│   │   │       │   ├── advimage
│   │   │       │   │   ├── css
│   │   │       │   │   │   └── advimage.css
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   ├── editor_plugin_src.js
│   │   │       │   │   ├── image.htm
│   │   │       │   │   ├── img
│   │   │       │   │   │   └── sample.gif
│   │   │       │   │   ├── js
│   │   │       │   │   │   └── image.js
│   │   │       │   │   └── langs
│   │   │       │   │       ├── en_dlg.js
│   │   │       │   │       └── zh_dlg.js
│   │   │       │   ├── autolink
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   └── editor_plugin_src.js
│   │   │       │   ├── autoresize
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   └── editor_plugin_src.js
│   │   │       │   ├── bbcode
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   └── editor_plugin_src.js
│   │   │       │   ├── contextmenu
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   └── editor_plugin_src.js
│   │   │       │   ├── emotions
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   ├── editor_plugin_src.js
│   │   │       │   │   ├── emotions.htm
│   │   │       │   │   ├── img
│   │   │       │   │   │   ├── smiley-cool.gif
│   │   │       │   │   │   ├── smiley-cry.gif
│   │   │       │   │   │   ├── smiley-embarassed.gif
│   │   │       │   │   │   ├── smiley-foot-in-mouth.gif
│   │   │       │   │   │   ├── smiley-frown.gif
│   │   │       │   │   │   ├── smiley-innocent.gif
│   │   │       │   │   │   ├── smiley-kiss.gif
│   │   │       │   │   │   ├── smiley-laughing.gif
│   │   │       │   │   │   ├── smiley-money-mouth.gif
│   │   │       │   │   │   ├── smiley-sealed.gif
│   │   │       │   │   │   ├── smiley-smile.gif
│   │   │       │   │   │   ├── smiley-surprised.gif
│   │   │       │   │   │   ├── smiley-tongue-out.gif
│   │   │       │   │   │   ├── smiley-undecided.gif
│   │   │       │   │   │   ├── smiley-wink.gif
│   │   │       │   │   │   └── smiley-yell.gif
│   │   │       │   │   ├── js
│   │   │       │   │   │   └── emotions.js
│   │   │       │   │   └── langs
│   │   │       │   │       ├── en_dlg.js
│   │   │       │   │       └── zh_dlg.js
│   │   │       │   ├── fullpage
│   │   │       │   │   ├── css
│   │   │       │   │   │   └── fullpage.css
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   ├── editor_plugin_src.js
│   │   │       │   │   ├── fullpage.htm
│   │   │       │   │   ├── js
│   │   │       │   │   │   └── fullpage.js
│   │   │       │   │   └── langs
│   │   │       │   │       ├── en_dlg.js
│   │   │       │   │       └── zh_dlg.js
│   │   │       │   ├── inlinepopups
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   ├── editor_plugin_src.js
│   │   │       │   │   ├── skins
│   │   │       │   │   │   └── clearlooks2
│   │   │       │   │   │       ├── img
│   │   │       │   │   │       │   ├── alert.gif
│   │   │       │   │   │       │   ├── button.gif
│   │   │       │   │   │       │   ├── buttons.gif
│   │   │       │   │   │       │   ├── confirm.gif
│   │   │       │   │   │       │   ├── corners.gif
│   │   │       │   │   │       │   ├── horizontal.gif
│   │   │       │   │   │       │   └── vertical.gif
│   │   │       │   │   │       └── window.css
│   │   │       │   │   └── template.htm
│   │   │       │   ├── layer
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   └── editor_plugin_src.js
│   │   │       │   ├── lists
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   └── editor_plugin_src.js
│   │   │       │   ├── media
│   │   │       │   │   ├── css
│   │   │       │   │   │   └── media.css
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   ├── editor_plugin_src.js
│   │   │       │   │   ├── js
│   │   │       │   │   │   ├── embed.js
│   │   │       │   │   │   └── media.js
│   │   │       │   │   ├── langs
│   │   │       │   │   │   ├── en_dlg.js
│   │   │       │   │   │   └── zh_dlg.js
│   │   │       │   │   ├── media.htm
│   │   │       │   │   └── moxieplayer.swf
│   │   │       │   ├── pagebreak
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   └── editor_plugin_src.js
│   │   │       │   ├── paste
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   ├── editor_plugin_src.js
│   │   │       │   │   ├── js
│   │   │       │   │   │   ├── pastetext.js
│   │   │       │   │   │   └── pasteword.js
│   │   │       │   │   ├── langs
│   │   │       │   │   │   ├── en_dlg.js
│   │   │       │   │   │   └── zh_dlg.js
│   │   │       │   │   ├── pastetext.htm
│   │   │       │   │   └── pasteword.htm
│   │   │       │   ├── preview
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   ├── editor_plugin_src.js
│   │   │       │   │   ├── example.html
│   │   │       │   │   ├── jscripts
│   │   │       │   │   │   └── embed.js
│   │   │       │   │   └── preview.html
│   │   │       │   ├── searchreplace
│   │   │       │   │   ├── css
│   │   │       │   │   │   └── searchreplace.css
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   ├── editor_plugin_src.js
│   │   │       │   │   ├── js
│   │   │       │   │   │   └── searchreplace.js
│   │   │       │   │   ├── langs
│   │   │       │   │   │   ├── en_dlg.js
│   │   │       │   │   │   └── zh_dlg.js
│   │   │       │   │   └── searchreplace.htm
│   │   │       │   ├── style
│   │   │       │   │   ├── css
│   │   │       │   │   │   └── props.css
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   ├── editor_plugin_src.js
│   │   │       │   │   ├── js
│   │   │       │   │   │   └── props.js
│   │   │       │   │   ├── langs
│   │   │       │   │   │   ├── en_dlg.js
│   │   │       │   │   │   └── zh_dlg.js
│   │   │       │   │   └── props.htm
│   │   │       │   ├── tabfocus
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   └── editor_plugin_src.js
│   │   │       │   ├── table
│   │   │       │   │   ├── cell.htm
│   │   │       │   │   ├── css
│   │   │       │   │   │   ├── cell.css
│   │   │       │   │   │   ├── row.css
│   │   │       │   │   │   └── table.css
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   ├── editor_plugin_src.js
│   │   │       │   │   ├── js
│   │   │       │   │   │   ├── cell.js
│   │   │       │   │   │   ├── merge_cells.js
│   │   │       │   │   │   ├── row.js
│   │   │       │   │   │   └── table.js
│   │   │       │   │   ├── langs
│   │   │       │   │   │   ├── en_dlg.js
│   │   │       │   │   │   └── zh_dlg.js
│   │   │       │   │   ├── merge_cells.htm
│   │   │       │   │   ├── row.htm
│   │   │       │   │   └── table.htm
│   │   │       │   ├── template
│   │   │       │   │   ├── blank.htm
│   │   │       │   │   ├── css
│   │   │       │   │   │   └── template.css
│   │   │       │   │   ├── editor_plugin.js
│   │   │       │   │   ├── editor_plugin_src.js
│   │   │       │   │   ├── js
│   │   │       │   │   │   └── template.js
│   │   │       │   │   ├── langs
│   │   │       │   │   │   ├── en_dlg.js
│   │   │       │   │   │   └── zh_dlg.js
│   │   │       │   │   └── template.htm
│   │   │       │   └── wordcount
│   │   │       │       ├── editor_plugin.js
│   │   │       │       └── editor_plugin_src.js
│   │   │       ├── themes
│   │   │       │   ├── advanced
│   │   │       │   │   ├── about.htm
│   │   │       │   │   ├── anchor.htm
│   │   │       │   │   ├── charmap.htm
│   │   │       │   │   ├── color_picker.htm
│   │   │       │   │   ├── editor_template.js
│   │   │       │   │   ├── editor_template_src.js
│   │   │       │   │   ├── image.htm
│   │   │       │   │   ├── img
│   │   │       │   │   │   ├── colorpicker.jpg
│   │   │       │   │   │   ├── flash.gif
│   │   │       │   │   │   ├── icons.gif
│   │   │       │   │   │   ├── iframe.gif
│   │   │       │   │   │   ├── pagebreak.gif
│   │   │       │   │   │   ├── quicktime.gif
│   │   │       │   │   │   ├── realmedia.gif
│   │   │       │   │   │   ├── shockwave.gif
│   │   │       │   │   │   ├── trans.gif
│   │   │       │   │   │   ├── video.gif
│   │   │       │   │   │   └── windowsmedia.gif
│   │   │       │   │   ├── js
│   │   │       │   │   │   ├── about.js
│   │   │       │   │   │   ├── anchor.js
│   │   │       │   │   │   ├── charmap.js
│   │   │       │   │   │   ├── color_picker.js
│   │   │       │   │   │   ├── image.js
│   │   │       │   │   │   ├── link.js
│   │   │       │   │   │   └── source_editor.js
│   │   │       │   │   ├── langs
│   │   │       │   │   │   ├── en.js
│   │   │       │   │   │   ├── en_dlg.js
│   │   │       │   │   │   ├── zh.js
│   │   │       │   │   │   └── zh_dlg.js
│   │   │       │   │   ├── link.htm
│   │   │       │   │   ├── shortcuts.htm
│   │   │       │   │   ├── skins
│   │   │       │   │   │   └── default
│   │   │       │   │   │       ├── content.css
│   │   │       │   │   │       ├── dialog.css
│   │   │       │   │   │       ├── img
│   │   │       │   │   │       │   ├── buttons.png
│   │   │       │   │   │       │   ├── items.gif
│   │   │       │   │   │       │   ├── menu_arrow.gif
│   │   │       │   │   │       │   ├── menu_check.gif
│   │   │       │   │   │       │   ├── progress.gif
│   │   │       │   │   │       │   └── tabs.gif
│   │   │       │   │   │       └── ui.css
│   │   │       │   │   └── source_editor.htm
│   │   │       │   └── simple
│   │   │       │       ├── editor_template.js
│   │   │       │       ├── editor_template_src.js
│   │   │       │       ├── img
│   │   │       │       │   └── icons.gif
│   │   │       │       ├── langs
│   │   │       │       │   ├── en.js
│   │   │       │       │   └── zh.js
│   │   │       │       └── skins
│   │   │       │           ├── default
│   │   │       │           │   ├── content.css
│   │   │       │           │   └── ui.css
│   │   │       │           └── o2k7
│   │   │       │               ├── content.css
│   │   │       │               ├── img
│   │   │       │               │   └── button_bg.png
│   │   │       │               └── ui.css
│   │   │       ├── tiny_mce.js
│   │   │       ├── tiny_mce_popup.js
│   │   │       ├── tiny_mce_src.js
│   │   │       └── utils
│   │   │           ├── editable_selects.js
│   │   │           ├── form_utils.js
│   │   │           ├── mctabs.js
│   │   │           └── validate.js
│   │   ├── image
│   │   │   ├── gdbmp.php
│   │   │   ├── imageresize.php
│   │   │   ├── imagetext.php
│   │   │   └── imagewater.php
│   │   ├── mail
│   │   │   └── mail.php
│   │   ├── net
│   │   │   ├── client.php
│   │   │   ├── cookiemanager.php
│   │   │   ├── listener.php
│   │   │   ├── request.php
│   │   │   ├── socket.php
│   │   │   └── url.php
│   │   ├── openid
│   │   │   ├── openidclient.php
│   │   │   ├── openidcommon.php
│   │   │   └── openidserver.php
│   │   ├── template
│   │   │   ├── compiler.php
│   │   │   └── template.php
│   │   ├── text
│   │   │   ├── pinyin.dat
│   │   │   ├── textconvert.php
│   │   │   ├── textfilter.php
│   │   │   ├── textfjconvert.php
│   │   │   ├── textfunction.php
│   │   │   └── texttypeset.php
│   │   └── xml
│   │       ├── xml.php
│   │       └── xmlarray.php
│   ├── login.php
│   ├── loginframe.php
│   ├── logout.php
│   ├── message.php
│   ├── messagedetail.php
│   ├── modules
│   │   ├── article
│   │   │   ├── addbookcase.php
│   │   │   ├── admin
│   │   │   │   ├── actlog.php
│   │   │   │   ├── applyinfo.php
│   │   │   │   ├── applylist.php
│   │   │   │   ├── article.php
│   │   │   │   ├── articlehurry.php
│   │   │   │   ├── articlelog.php
│   │   │   │   ├── articleper.php
│   │   │   │   ├── batchaction.php
│   │   │   │   ├── batchclean.php
│   │   │   │   ├── batchcollect.php
│   │   │   │   ├── batchdel.php
│   │   │   │   ├── batchrepack.php
│   │   │   │   ├── batchreplace.php
│   │   │   │   ├── chapter.php
│   │   │   │   ├── collect.php
│   │   │   │   ├── collectedit.php
│   │   │   │   ├── collectnew.php
│   │   │   │   ├── collectpage.php
│   │   │   │   ├── collectpedit.php
│   │   │   │   ├── collectset.php
│   │   │   │   ├── createfake.php
│   │   │   │   ├── draftaudit.php
│   │   │   │   ├── draftdo.php
│   │   │   │   ├── draftlist.php
│   │   │   │   ├── draftshow.php
│   │   │   │   ├── hurrydo.php
│   │   │   │   ├── makefake.php
│   │   │   │   ├── pagecollect.php
│   │   │   │   ├── review.php
│   │   │   │   ├── reviews.php
│   │   │   │   ├── searchcache.php
│   │   │   │   ├── setgood.php
│   │   │   │   ├── synccron.php
│   │   │   │   ├── syncjieqi.php
│   │   │   │   ├── toplist.php
│   │   │   │   └── updatecollect.php
│   │   │   ├── applywriter.php
│   │   │   ├── articleactlog.php
│   │   │   ├── articlecheck.php
│   │   │   ├── articleclean.php
│   │   │   ├── articledel.php
│   │   │   ├── articleedit.php
│   │   │   ├── articlefilter.php
│   │   │   ├── articleinfo.php
│   │   │   ├── articlelist.php
│   │   │   ├── articlemanage.php
│   │   │   ├── articleread.php
│   │   │   ├── articlevisit.php
│   │   │   ├── authorarticle.php
│   │   │   ├── authorpage.php
│   │   │   ├── blocks
│   │   │   │   ├── block_aarticles.php
│   │   │   │   ├── block_achapters.php
│   │   │   │   ├── block_actlog.php
│   │   │   │   ├── block_areviews.php
│   │   │   │   ├── block_articlelist.php
│   │   │   │   ├── block_articlerand.php
│   │   │   │   ├── block_articlestat.php
│   │   │   │   ├── block_commend.php
│   │   │   │   ├── block_credit.php
│   │   │   │   ├── block_mycredit.php
│   │   │   │   ├── block_obuyinfo.php
│   │   │   │   ├── block_osale.php
│   │   │   │   ├── block_readlog.php
│   │   │   │   ├── block_reviewslist.php
│   │   │   │   ├── block_search.php
│   │   │   │   ├── block_sort.php
│   │   │   │   ├── block_toplist.php
│   │   │   │   ├── block_uarticles.php
│   │   │   │   ├── block_ubookcase.php
│   │   │   │   └── block_writerbox.php
│   │   │   ├── bookcase.php
│   │   │   ├── chapterdel.php
│   │   │   ├── chapteredit.php
│   │   │   ├── chaptersdel.php
│   │   │   ├── chapterset.php
│   │   │   ├── chaptersort.php
│   │   │   ├── class
│   │   │   │   ├── applywriter.php
│   │   │   │   ├── article.php
│   │   │   │   ├── articleattachs.php
│   │   │   │   ├── articlelog.php
│   │   │   │   ├── avote.php
│   │   │   │   ├── avstat.php
│   │   │   │   ├── bookcase.php
│   │   │   │   ├── chapter.php
│   │   │   │   ├── draft.php
│   │   │   │   ├── package.php
│   │   │   │   ├── replies.php
│   │   │   │   ├── review.php
│   │   │   │   ├── reviews.php
│   │   │   │   └── searchcache.php
│   │   │   ├── creditlist.php
│   │   │   ├── css
│   │   │   │   └── page.css
│   │   │   ├── draft.php
│   │   │   ├── draftedit.php
│   │   │   ├── iisrewrite.txt
│   │   │   ├── images
│   │   │   │   ├── nocover.jpg
│   │   │   │   └── watermark.gif
│   │   │   ├── include
│   │   │   │   ├── actarticle.php
│   │   │   │   ├── addchapter.php
│   │   │   │   ├── adddraft.php
│   │   │   │   ├── collectarticle.php
│   │   │   │   ├── collectfunction.php
│   │   │   │   ├── funaction.php
│   │   │   │   ├── funarticle.php
│   │   │   │   ├── funchapter.php
│   │   │   │   ├── funstatic.php
│   │   │   │   ├── funsync.php
│   │   │   │   ├── funtip.php
│   │   │   │   ├── funurl.php
│   │   │   │   ├── repack.php
│   │   │   │   └── updateone.php
│   │   │   ├── index.php
│   │   │   ├── lang
│   │   │   │   ├── lang_action.php
│   │   │   │   ├── lang_applywriter.php
│   │   │   │   ├── lang_article.php
│   │   │   │   ├── lang_avote.php
│   │   │   │   ├── lang_bookcase.php
│   │   │   │   ├── lang_collect.php
│   │   │   │   ├── lang_down.php
│   │   │   │   ├── lang_draft.php
│   │   │   │   ├── lang_list.php
│   │   │   │   ├── lang_manage.php
│   │   │   │   ├── lang_ovote.php
│   │   │   │   ├── lang_rate.php
│   │   │   │   ├── lang_review.php
│   │   │   │   ├── lang_search.php
│   │   │   │   ├── lang_sort.php
│   │   │   │   ├── lang_sync.php
│   │   │   │   ├── lang_tip.php
│   │   │   │   ├── lang_vipvote.php
│   │   │   │   └── lang_vote.php
│   │   │   ├── lastchapter.php
│   │   │   ├── makepack.php
│   │   │   ├── makestatic.php
│   │   │   ├── masterpage.php
│   │   │   ├── myactlog.php
│   │   │   ├── myarticle.php
│   │   │   ├── newarticle.php
│   │   │   ├── newchapter.php
│   │   │   ├── newdraft.php
│   │   │   ├── newvolume.php
│   │   │   ├── packdown.php
│   │   │   ├── packshow.php
│   │   │   ├── rating.php
│   │   │   ├── readbookcase.php
│   │   │   ├── reader.php
│   │   │   ├── readlog.php
│   │   │   ├── repack.php
│   │   │   ├── reviewedit.php
│   │   │   ├── reviews.php
│   │   │   ├── reviewshow.php
│   │   │   ├── reviewslist.php
│   │   │   ├── scripts
│   │   │   │   ├── fullbottom.js
│   │   │   │   ├── fulltop.js
│   │   │   │   ├── indexbottom.js
│   │   │   │   ├── indextop.js
│   │   │   │   ├── pagebottom.js
│   │   │   │   ├── pagetop.js
│   │   │   │   └── readhistory.js
│   │   │   ├── search.php
│   │   │   ├── showvolume.php
│   │   │   ├── templates
│   │   │   │   ├── admin
│   │   │   │   │   ├── actlog.html
│   │   │   │   │   ├── applyinfo.html
│   │   │   │   │   ├── applylist.html
│   │   │   │   │   ├── articlelist.html
│   │   │   │   │   ├── articlelog.html
│   │   │   │   │   ├── articleper.html
│   │   │   │   │   ├── batchclean.html
│   │   │   │   │   ├── batchreorder.html
│   │   │   │   │   ├── batchrepack.html
│   │   │   │   │   ├── batchreplace.html
│   │   │   │   │   ├── chapterlist.html
│   │   │   │   │   ├── collectpage.html
│   │   │   │   │   ├── collectset.html
│   │   │   │   │   ├── fresh.html
│   │   │   │   │   ├── makefake.html
│   │   │   │   │   ├── makestatic.html
│   │   │   │   │   ├── review.html
│   │   │   │   │   ├── reviews.html
│   │   │   │   │   └── searchcache.html
│   │   │   │   ├── applywriter.html
│   │   │   │   ├── articleactlog.html
│   │   │   │   ├── articleedit.html
│   │   │   │   ├── articlefilter.html
│   │   │   │   ├── articleinfo.html
│   │   │   │   ├── articlelist.html
│   │   │   │   ├── articlemanage.html
│   │   │   │   ├── authorarticle.html
│   │   │   │   ├── blocks
│   │   │   │   │   ├── block_aarticles.html
│   │   │   │   │   ├── block_achapters.html
│   │   │   │   │   ├── block_actlog.html
│   │   │   │   │   ├── block_areviews.html
│   │   │   │   │   ├── block_articleindex.html
│   │   │   │   │   ├── block_articlelist.html
│   │   │   │   │   ├── block_articlerand.html
│   │   │   │   │   ├── block_articlestat.html
│   │   │   │   │   ├── block_commend.html
│   │   │   │   │   ├── block_credit.html
│   │   │   │   │   ├── block_lastupdate.html
│   │   │   │   │   ├── block_myarticles.html
│   │   │   │   │   ├── block_mycredit.html
│   │   │   │   │   ├── block_newreview.html
│   │   │   │   │   ├── block_obuyinfp.html
│   │   │   │   │   ├── block_osale.html
│   │   │   │   │   ├── block_readlog.html
│   │   │   │   │   ├── block_reviewslist.html
│   │   │   │   │   ├── block_search.html
│   │   │   │   │   ├── block_sort.html
│   │   │   │   │   ├── block_toplist.html
│   │   │   │   │   ├── block_topnum.html
│   │   │   │   │   ├── block_uarticles.html
│   │   │   │   │   ├── block_ubookcase.html
│   │   │   │   │   ├── block_writerbox.html
│   │   │   │   │   └── info_areviews.html
│   │   │   │   ├── bookcase.html
│   │   │   │   ├── chapteredit.html
│   │   │   │   ├── creditlist.html
│   │   │   │   ├── draft.html
│   │   │   │   ├── draftedit.html
│   │   │   │   ├── fulltext.html
│   │   │   │   ├── index.html
│   │   │   │   ├── lastchapter.html
│   │   │   │   ├── masterpage.html
│   │   │   │   ├── myactlog.html
│   │   │   │   ├── myarticle.html
│   │   │   │   ├── newarticle.html
│   │   │   │   ├── newchapter.html
│   │   │   │   ├── newdraft.html
│   │   │   │   ├── newvolume.html
│   │   │   │   ├── packjar.html
│   │   │   │   ├── packtxtchapter.html
│   │   │   │   ├── packtxtfull.html
│   │   │   │   ├── packumd.html
│   │   │   │   ├── packzip.html
│   │   │   │   ├── review.html
│   │   │   │   ├── reviewedit.html
│   │   │   │   ├── reviews.html
│   │   │   │   ├── reviewshow.html
│   │   │   │   ├── reviewslist.html
│   │   │   │   ├── search.html
│   │   │   │   ├── searchresult.html
│   │   │   │   ├── style.html
│   │   │   │   ├── tip.html
│   │   │   │   ├── toplist.html
│   │   │   │   ├── votearticle.html
│   │   │   │   ├── voteedit.html
│   │   │   │   ├── votenew.html
│   │   │   │   └── voteresult.html
│   │   │   ├── tip.php
│   │   │   ├── toplist.php
│   │   │   ├── txtarticle.php
│   │   │   ├── urlrewrite.txt
│   │   │   ├── uservote.php
│   │   │   ├── votearticle.php
│   │   │   ├── votedo.php
│   │   │   ├── voteedit.php
│   │   │   ├── votenew.php
│   │   │   └── voteresult.php
│   │   ├── forum
│   │   │   ├── admin
│   │   │   │   ├── forumcatmanage.php
│   │   │   │   ├── forumdel.php
│   │   │   │   ├── forumdels.php
│   │   │   │   ├── forumlist.php
│   │   │   │   ├── forummanage.php
│   │   │   │   ├── newforum.php
│   │   │   │   ├── newforumcat.php
│   │   │   │   └── unionforum.php
│   │   │   ├── blocks
│   │   │   │   ├── block_topiccommend.php
│   │   │   │   └── block_topiclist.php
│   │   │   ├── class
│   │   │   │   ├── forumattachs.php
│   │   │   │   ├── forumcat.php
│   │   │   │   ├── forumposts.php
│   │   │   │   ├── forums.php
│   │   │   │   └── forumtopics.php
│   │   │   ├── delpost.php
│   │   │   ├── forumlist.php
│   │   │   ├── images
│   │   │   │   ├── attach.gif
│   │   │   │   ├── icon_delete.gif
│   │   │   │   ├── icon_edit.gif
│   │   │   │   ├── icon_email.gif
│   │   │   │   ├── icon_icq_add.gif
│   │   │   │   ├── icon_ip.gif
│   │   │   │   ├── icon_latest_reply.gif
│   │   │   │   ├── icon_mini_aquarius.gif
│   │   │   │   ├── icon_mini_aries.gif
│   │   │   │   ├── icon_mini_cancer.gif
│   │   │   │   ├── icon_mini_capricorn.gif
│   │   │   │   ├── icon_mini_faq.gif
│   │   │   │   ├── icon_mini_gemini.gif
│   │   │   │   ├── icon_mini_groups.gif
│   │   │   │   ├── icon_mini_leo.gif
│   │   │   │   ├── icon_mini_libra.gif
│   │   │   │   ├── icon_mini_login.gif
│   │   │   │   ├── icon_mini_members.gif
│   │   │   │   ├── icon_mini_message.gif
│   │   │   │   ├── icon_mini_pisces.gif
│   │   │   │   ├── icon_mini_profile.gif
│   │   │   │   ├── icon_mini_register.gif
│   │   │   │   ├── icon_mini_sagittarius.gif
│   │   │   │   ├── icon_mini_scorpio.gif
│   │   │   │   ├── icon_mini_search.gif
│   │   │   │   ├── icon_mini_taurus.gif
│   │   │   │   ├── icon_mini_virgo.gif
│   │   │   │   ├── icon_minipost.gif
│   │   │   │   ├── icon_minipost_new.gif
│   │   │   │   ├── icon_msnm.gif
│   │   │   │   ├── icon_newest_reply.gif
│   │   │   │   ├── icon_pm.gif
│   │   │   │   ├── icon_profile.gif
│   │   │   │   ├── icon_qq.gif
│   │   │   │   ├── icon_quote.gif
│   │   │   │   ├── icon_topics.gif
│   │   │   │   ├── link.gif
│   │   │   │   ├── msg_inbox.gif
│   │   │   │   ├── msg_outbox.gif
│   │   │   │   ├── msg_savebox.gif
│   │   │   │   ├── msg_sentbox.gif
│   │   │   │   ├── newpost.gif
│   │   │   │   ├── nonew_big.gif
│   │   │   │   ├── offline.gif
│   │   │   │   ├── online.gif
│   │   │   │   ├── reply.gif
│   │   │   │   ├── spacer.gif
│   │   │   │   ├── topic_announce.gif
│   │   │   │   ├── topic_announce1.gif
│   │   │   │   ├── topic_announce2.gif
│   │   │   │   ├── topic_announce3.gif
│   │   │   │   ├── topic_big.gif
│   │   │   │   ├── topic_delete.gif
│   │   │   │   ├── topic_good.gif
│   │   │   │   ├── topic_hot.gif
│   │   │   │   ├── topic_lock.gif
│   │   │   │   ├── topic_lock1.gif
│   │   │   │   ├── topic_locke_big.gif
│   │   │   │   ├── topic_move.gif
│   │   │   │   ├── topic_new.gif
│   │   │   │   ├── topic_new_big.gif
│   │   │   │   ├── topic_new_hot.gif
│   │   │   │   ├── topic_normal.gif
│   │   │   │   ├── topic_split.gif
│   │   │   │   ├── topic_top.gif
│   │   │   │   ├── topic_top1.gif
│   │   │   │   ├── topic_unlock.gif
│   │   │   │   ├── vote_lcap.gif
│   │   │   │   ├── vote_rcap.gif
│   │   │   │   ├── voting_bar.gif
│   │   │   │   └── whosonline.gif
│   │   │   ├── include
│   │   │   │   ├── funforum.php
│   │   │   │   ├── funurl.php
│   │   │   │   ├── upforumcatset.php
│   │   │   │   └── upforumset.php
│   │   │   ├── index.php
│   │   │   ├── lang
│   │   │   │   ├── lang_forumdels.php
│   │   │   │   ├── lang_list.php
│   │   │   │   ├── lang_manage.php
│   │   │   │   ├── lang_post.php
│   │   │   │   └── lang_search.php
│   │   │   ├── newpost.php
│   │   │   ├── postedit.php
│   │   │   ├── search.php
│   │   │   ├── showtopic.php
│   │   │   ├── templates
│   │   │   │   ├── admin
│   │   │   │   │   ├── forumdels.html
│   │   │   │   │   └── forumlist.html
│   │   │   │   ├── blocks
│   │   │   │   │   ├── block_topiccommend.html
│   │   │   │   │   └── block_topiclist.html
│   │   │   │   ├── forumlist.html
│   │   │   │   ├── newpost.html
│   │   │   │   ├── postedit.html
│   │   │   │   ├── searchlist.html
│   │   │   │   ├── showtopic.html
│   │   │   │   └── topiclist.html
│   │   │   ├── topiclist.php
│   │   │   └── topicset.php
│   │   ├── obook
│   │   │   ├── admin
│   │   │   │   ├── buylog.php
│   │   │   │   ├── chapterbuylog.php
│   │   │   │   ├── chapterstat.php
│   │   │   │   ├── obooklist.php
│   │   │   │   ├── saleform.php
│   │   │   │   └── salestat.php
│   │   │   ├── buychapter.php
│   │   │   ├── buylist.php
│   │   │   ├── buylog.php
│   │   │   ├── chapterbuylog.php
│   │   │   ├── chapterlist.php
│   │   │   ├── chapterstat.php
│   │   │   ├── class
│   │   │   │   ├── obook.php
│   │   │   │   ├── obuy.php
│   │   │   │   ├── obuyinfo.php
│   │   │   │   ├── ochapter.php
│   │   │   │   ├── ocontent.php
│   │   │   │   └── osale.php
│   │   │   ├── css
│   │   │   │   └── page.css
│   │   │   ├── images
│   │   │   │   ├── front.gif
│   │   │   │   ├── nocover.jpg
│   │   │   │   └── watermark.gif
│   │   │   ├── include
│   │   │   │   ├── actobook.php
│   │   │   │   ├── funbuy.php
│   │   │   │   ├── funobook.php
│   │   │   │   └── funochapter.php
│   │   │   ├── index.php
│   │   │   ├── lang
│   │   │   │   ├── lang_buy.php
│   │   │   │   ├── lang_checkcode.php
│   │   │   │   ├── lang_list.php
│   │   │   │   ├── lang_manage.php
│   │   │   │   ├── lang_obook.php
│   │   │   │   ├── lang_paid.php
│   │   │   │   ├── lang_search.php
│   │   │   │   └── lang_share.php
│   │   │   ├── masterpage.php
│   │   │   ├── obookimage.php
│   │   │   ├── obookinfo.php
│   │   │   ├── obooklist.php
│   │   │   ├── obookread.php
│   │   │   ├── reader.php
│   │   │   └── templates
│   │   │       ├── admin
│   │   │       │   ├── buylog.html
│   │   │       │   ├── chapterbuylog.html
│   │   │       │   ├── chapterstat.html
│   │   │       │   ├── obooklist.html
│   │   │       │   ├── saleform.html
│   │   │       │   └── salestat.html
│   │   │       ├── buychapter.html
│   │   │       ├── buylist.html
│   │   │       ├── buylog.html
│   │   │       ├── chapterbuylog.html
│   │   │       ├── chapterstat.html
│   │   │       ├── masterpage.html
│   │   │       ├── obookinfo.html
│   │   │       ├── obooklist.html
│   │   │       ├── ochapterlist.html
│   │   │       ├── reader.html
│   │   │       └── readtext.html
│   │   └── pay
│   │       ├── admin
│   │       │   └── paylog.php
│   │       ├── buyegold.php
│   │       ├── class
│   │       │   └── paylog.php
│   │       ├── include
│   │       │   └── funpay.php
│   │       ├── jieqipay.php
│   │       ├── jieqipayreturn.php
│   │       ├── lang
│   │       │   └── lang_pay.php
│   │       ├── paylog.php
│   │       └── templates
│   │           ├── admin
│   │           │   └── paylog.html
│   │           ├── buyegold.html
│   │           ├── jieqipay.html
│   │           └── paylog.html
│   ├── myfriends.php
│   ├── mylink.php
│   ├── newmessage.php
│   ├── online.php
│   ├── page.php
│   ├── passedit.php
│   ├── ppostedit.php
│   ├── ptopiclist.php
│   ├── ptopics.php
│   ├── ptopicshow.php
│   ├── regcheck.php
│   ├── register.php
│   ├── report.php
│   ├── scripts
│   │   ├── admin.js
│   │   ├── ajax.js
│   │   ├── attaches.js
│   │   ├── calendar.js
│   │   ├── common.js
│   │   ├── dhtml.js
│   │   ├── drag.js
│   │   ├── logininfo.js
│   │   ├── rating.js
│   │   ├── share.js
│   │   ├── sortmenu.js
│   │   ├── swfupload
│   │   │   ├── fileprogress.js
│   │   │   ├── handlers.js
│   │   │   ├── swfupload.cookies.js
│   │   │   ├── swfupload.js
│   │   │   ├── swfupload.queue.js
│   │   │   ├── swfupload.speed.js
│   │   │   ├── swfupload.swf
│   │   │   ├── swfupload.swfobject.js
│   │   │   └── swfuploadbutton.swf
│   │   ├── team.js
│   │   ├── theme.js
│   │   ├── toplink.js
│   │   ├── ubbeditor.js
│   │   ├── ubbeditor_big5.js
│   │   ├── ubbeditor_gbk.js
│   │   └── ubbeditor_temp.js
│   ├── setavatar.php
│   ├── setpass.php
│   ├── templates
│   │   ├── admin
│   │   │   ├── blockblocks.html
│   │   │   ├── blockedit.html
│   │   │   ├── blockfiles.html
│   │   │   ├── blocks.html
│   │   │   ├── dblogin.html
│   │   │   ├── dbmanage.html
│   │   │   ├── dboptimize.html
│   │   │   ├── dbquery.html
│   │   │   ├── default.html
│   │   │   ├── faq.html
│   │   │   ├── frame.css
│   │   │   ├── groups.html
│   │   │   ├── honors.html
│   │   │   ├── images
│   │   │   │   ├── _tl.gif
│   │   │   │   ├── b_bg.gif
│   │   │   │   ├── b_ul.gif
│   │   │   │   ├── bg02.gif
│   │   │   │   ├── bg03.gif
│   │   │   │   ├── bg04.gif
│   │   │   │   ├── bg04_hover.gif
│   │   │   │   ├── bg_login.gif
│   │   │   │   ├── bg_page.jpg
│   │   │   │   ├── bgs_01.gif
│   │   │   │   ├── bgs_02.gif
│   │   │   │   ├── bgs_03.gif
│   │   │   │   ├── bl.gif
│   │   │   │   ├── br.gif
│   │   │   │   ├── btn_login.gif
│   │   │   │   ├── logo.gif
│   │   │   │   ├── m_bg.gif
│   │   │   │   ├── m_bg_h.gif
│   │   │   │   ├── m_bgss.gif
│   │   │   │   ├── m_middle.gif
│   │   │   │   ├── nav_bg_l.gif
│   │   │   │   ├── nav_bg_r.gif
│   │   │   │   ├── nns_bg.gif
│   │   │   │   ├── search.gif
│   │   │   │   ├── shanc.gif
│   │   │   │   ├── titleico.gif
│   │   │   │   ├── tl.gif
│   │   │   │   └── tr.gif
│   │   │   ├── inbox.html
│   │   │   ├── index.html
│   │   │   ├── left.css
│   │   │   ├── left.html
│   │   │   ├── license.html
│   │   │   ├── login.html
│   │   │   ├── logs.html
│   │   │   ├── main.html
│   │   │   ├── managemodules.html
│   │   │   ├── messagedetail.html
│   │   │   ├── messagelist.html
│   │   │   ├── newmessage.html
│   │   │   ├── online.html
│   │   │   ├── outbox.html
│   │   │   ├── ptopiclist.html
│   │   │   ├── reportdetail.html
│   │   │   ├── reportlist.html
│   │   │   ├── style.css
│   │   │   ├── sysinfo.html
│   │   │   ├── topuser.html
│   │   │   ├── userlog.html
│   │   │   ├── usermanage.html
│   │   │   └── users.html
│   │   ├── blocks
│   │   │   ├── block_grouplist.html
│   │   │   ├── block_login.html
│   │   │   ├── block_loginajax.html
│   │   │   ├── block_message.html
│   │   │   ├── block_searchuser.html
│   │   │   ├── block_topuser.html
│   │   │   ├── block_udetail.html
│   │   │   ├── block_ufriends.html
│   │   │   ├── block_uinfo.html
│   │   │   ├── block_ulinks.html
│   │   │   ├── block_uptopics.html
│   │   │   ├── block_userbox.html
│   │   │   ├── block_usercommend.html
│   │   │   ├── block_userexp.html
│   │   │   ├── block_userlist.html
│   │   │   ├── block_userlogin.html
│   │   │   ├── block_usernew.html
│   │   │   ├── block_userscore.html
│   │   │   ├── block_userset.html
│   │   │   └── block_userstatus.html
│   │   ├── cutavatar.html
│   │   ├── emailpass.html
│   │   ├── getpass.html
│   │   ├── inbox.html
│   │   ├── login.html
│   │   ├── loginframe.html
│   │   ├── messagedetail.html
│   │   ├── myfriends.html
│   │   ├── mylink.html
│   │   ├── newmessage.html
│   │   ├── online.html
│   │   ├── openidlogin.html
│   │   ├── outbox.html
│   │   ├── passedit.html
│   │   ├── ppostedit.html
│   │   ├── ptopiclist.html
│   │   ├── ptopics.html
│   │   ├── ptopicshow.html
│   │   ├── qqlogin.html
│   │   ├── register.html
│   │   ├── report.html
│   │   ├── setavatar.html
│   │   ├── setpass.html
│   │   ├── statusframe.html
│   │   ├── tempvar.html
│   │   ├── topuser.html
│   │   ├── userdetail.html
│   │   ├── useredit.html
│   │   ├── userfriends.html
│   │   ├── userinfo.html
│   │   ├── userlink.html
│   │   ├── userlist.html
│   │   └── userpage.html
│   ├── themes
│   │   └── jieqi180
│   │       ├── images
│   │       │   ├── aright.gif
│   │       │   ├── avatars_bg.gif
│   │       │   ├── btnlink.gif
│   │       │   ├── btnlinks.gif
│   │       │   ├── button.gif
│   │       │   ├── dot.gif
│   │       │   ├── m_menu.gif
│   │       │   ├── m_top.gif
│   │       │   ├── m_top0.gif
│   │       │   ├── menu_a.gif
│   │       │   ├── navbg.gif
│   │       │   ├── title.gif
│   │       │   └── uicons.gif
│   │       ├── jumppage.html
│   │       ├── logo.gif
│   │       ├── msgbox.html
│   │       ├── msgerr.html
│   │       ├── msgwin.html
│   │       ├── style.css
│   │       └── theme.html
│   ├── tmpavatar.php
│   ├── topuser.php
│   ├── userdetail.php
│   ├── useredit.php
│   ├── userfriends.php
│   ├── userinfo.php
│   ├── userlink.php
│   ├── userlist.php
│   ├── userpage.php
│   ├── version.txt
│   ├── 说明1.txt
│   ├── 站长下载.url
│   ├── 更多软件源码下载.url
│   └── 不会不懂怎么办?点击我提问题!.url
└── 好例子网_jieqi1.80.zip

203 directories, 1390 files


标签: 杰奇1.8

实例下载地址

杰奇小说1.80 完整版可用

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警