Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[插件]

 关闭 [复制链接]
发表于 2006-3-30 23:45:36 | 显示全部楼层 |阅读模式
插件名称:横板紧凑后台管理插件
适用版本:Discuz! 4.1.0
插件版本:Version 1.0
插件作者:Tea
插件版权:Discuz! Plus!
插件演示:http://www.mythbbs.com
插件说明:
这个原4.0的用到4.1有不少小小问题,本人按原4.0版的做了些修改,去掉版主,主题图标等一些无用功能, 稍微美化了下,-_-!!郁闷我找了半天也没找到个能用的横版插件,还得自己改,大家先用我的等TEA老兄开发V2.0版的出来吧

原帖地址:https://discuz.dismall.com/viewthread.php?tid=233986



1,如您遇到论坛宽度百分号无法保存的话,请使用以下方法!

index.htm 找到
$index_fwidth 改成 $index_fwidth%
$index_fwidth1 改成 $index_fwidth1%
forumdisplay_subforum.htm 找到
$sub_fwidth 改成 $sub_fwidth%


2,有关设置分类ID和主论坛ID问题

分类ID即  GID
主论坛ID即 FID


3,有关最后发表文字长度问题

index.htm 找到
width="200" ,请把数字改小或改大即可。


*可以依照本帖2楼手工修改,或者可以直接下载本帖压缩包替换即可,5楼为卸载方法和其他一些小的修改

[ 本帖最后由 神 于 2006-4-28 15:44 编辑 ]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
 楼主| 发表于 2006-3-30 23:45:52 | 显示全部楼层
1,插件压缩包目录结构

插件压缩包
     |- admin                        // 上传文件目录
     |- upload                       // 上传文件目录
            |- templates             // 模板文件目录
               |- default              // 默认模板目录(以默认模板为标准只修改后文件)

2,升级数据库 (请在后台 数据升级中贴上以下代码,然后提交!)
[注:cdb_ 为您的论坛数据库表头,默认为 cdb_ 如果您有修改,请确认后修改 cdb_ 为您的表头,再进行执行!]
  1. INSERT INTO `cdb_settings` VALUES ('index_fcount', '2');
  2. INSERT INTO `cdb_settings` VALUES ('index_fwidth', '50%');
  3. INSERT INTO `cdb_settings` VALUES ('index_intabulae', '1,2,3');
  4. INSERT INTO `cdb_settings` VALUES ('index_fcount1', '4');
  5. INSERT INTO `cdb_settings` VALUES ('index_fwidth1', '25%');
  6. INSERT INTO `cdb_settings` VALUES ('index_intabulae1', '6,7');
  7. INSERT INTO `cdb_settings` VALUES ('sub_fcount', '4');
  8. INSERT INTO `cdb_settings` VALUES ('sub_fwidth', '25%');
  9. INSERT INTO `cdb_settings` VALUES ('sub_intabulae', '0');
复制代码

3,修改 settings.inc.php,请打开 admin/settings.inc.php 文件,进行以下修改!
找到:
  1. showsetting('settings_modreasons', 'settingsnew[modreasons]', $settings['modreasons'], 'textarea');
复制代码

下面一行添加:
  1. showsetting('settings_index_fcount', 'settingsnew[index_fcount]', $settings['index_fcount'], 'text');
  2. showsetting('settings_index_fwidth', 'settingsnew[index_fwidth]', $settings['index_fwidth'], 'text');
  3. showsetting('settings_index_intabulae', 'settingsnew[index_intabulae]', $settings['index_intabulae'], 'text');
  4. showsetting('settings_index_fcount1', 'settingsnew[index_fcount1]', $settings['index_fcount1'], 'text');
  5. showsetting('settings_index_fwidth1', 'settingsnew[index_fwidth1]', $settings['index_fwidth1'], 'text');
  6. showsetting('settings_index_intabulae1', 'settingsnew[index_intabulae1]', $settings['index_intabulae1'], 'text');
  7. showsetting('settings_sub_fcount', 'settingsnew[sub_fcount]', $settings['sub_fcount'], 'text');
  8. showsetting('settings_sub_fwidth', 'settingsnew[sub_fwidth]', $settings['sub_fwidth'], 'text');
  9. showsetting('settings_sub_intabulae', 'settingsnew[sub_intabulae]', $settings['sub_intabulae'], 'text');
复制代码


再找到:
  1. 'jscachelife', 'waptpp', 'wapppp', 'wapmps'
复制代码


后面添加:
  1. ,'index_fcount','index_fwidth','index_fcount1','index_fwidth1','sub_fcount','sub_fwidth'
复制代码

4,修改 admincp.lang.php 语言包,请打开 templates/default/admincp.lang.php 文件,进行以下修改!
找到:
  1. 'submit' => '提 交',
复制代码

上面一行添加:
  1. 'settings_index_fcount' => '首页横板样式1显示数量:',
  2. 'settings_index_fcount_comment' => '需要横板显示多少个,如:2,4',
  3. 'settings_index_fwidth' => '首页横板样式1显示宽度:',
  4. 'settings_index_fwidth_comment' => '每个板块显示的宽度,如:2个就用50%,4个就用25%',
  5. 'settings_index_intabulae' => '使用横板样式1的分类ID:',
  6. 'settings_index_intabulae_comment' => '设置分类ID号码即可,多个用逗号隔开',
  7. 'settings_index_fcount1' => '首页横板样式2显示数量:',
  8. 'settings_index_fcount1_comment' => '需要横板显示多少个,如:2,4',
  9. 'settings_index_fwidth1' => '首页横板样式2显示宽度:',
  10. 'settings_index_fwidth1_comment' => '每个板块显示的宽度,如:2个就用50%,4个就用25%',
  11. 'settings_index_intabulae1' => '使用横板样式2的分类ID:',
  12. 'settings_index_intabulae1_comment' => '设置分类ID号码即可,多个用逗号隔开',
  13. 'settings_sub_fcount' => '子论坛横板显示数量:',
  14. 'settings_sub_fcount_comment' => '需要横板显示多少个,如:2,4',
  15. 'settings_sub_fwidth' => '子论坛横板显示宽度:',
  16. 'settings_sub_fwidth_comment' => '每个板块显示的宽度,如:2个就用50%,4个就用25%',
  17. 'settings_sub_intabulae' => '使用子论坛横板的主论坛ID:',
  18. 'settings_sub_intabulae_comment' => '设置论坛ID号码即可,多个用逗号隔开',
复制代码

5,修改 templates.lang.php 文件,请打开 templates/default/templates.lang.php 文件,进行以下修改!
找到:
  1. 'title' => '标题',
复制代码

上面一行添加:
  1. 'sub_forumname' => '$fourm[name] 子版列表',
复制代码

6,修改 css.htm 文件,如果您想在默认风格中使用,请修改 templates/default/css.htm 文件,否则请修改对应风格模板之 css.htm 文件。
找到:
  1. a { text-decoration: none; color: {LINK} }
复制代码

上面一行添加:
  1. img { border: 0px; }
复制代码

7,修改 index.htm文件,请打开 templates/default/index.htm 文件,进行以下修改!
找到
  1. <!--{loop $forumlist $key $forum}-->
  2.         <!--{if $forum['type'] == 'group' && $forumlist[($key + 1)]['type'] == 'forum'}-->
  3.                 <!--{if $key}--></tbody></table><br></div><!--{/if}-->
  4.                 <div class="maintable">
  5.                 <table cellspacing="{INNERBORDERWIDTH}" cellpadding="{TABLESPACE}" width="{TABLEWIDTH}" align="center" class="tableborder">
  6.                 <tr><td colspan="7" class="header"><table cellspacing="0" cellpadding="0" width="100%">
  7.                 <tr class="smalltxt"><td class="bold"><a href="index.php?gid=$forum[fid]">$forum[name]</a></td><td align="right">
  8.                 <!--{if $forum['moderators']}--><font color="{HEADERTEXT}">{lang forum_category_modedby}: $forum[moderators]</font> <!--{/if}-->
  9.                 <a href="###" onclick="toggle_collapse('category_$forum[fid]');"><img id="category_$forum[fid]_img" src="{IMGDIR}/$forum[collapseimg]" border="0"></a>
  10.                 </td></tr></table></td></tr>
  11.                 <tr class="category" align="center">
  12.                 <td width="5%"> </td>
  13.                 <td width="51%">{lang forum_name}</td>
  14.                 <td width="5%">{lang forum_threads}</td>
  15.                 <td width="5%">{lang forum_posts}</td>
  16.                 <td width="5%">{lang forum_todayposts}</td>
  17.                 <td width="13%">{lang forum_lastpost}</td>
  18.                 <td width="16%">{lang forum_moderators}</td>
  19.                 </tr><tbody id="category_$forum[fid]" style="$collapse['category_'.$forum[fid]]">
  20.         <!--{elseif $forum['permission']}-->
  21.                 <tr>
  22.                 <td class="altbg1" align="center">$forum[folder]</td>
  23.                 <td class="altbg2" align="left" onMouseOver="this.className='altbg1'" onMouseOut="this.className='altbg2'">
  24.                 $forum[icon]<a href="forumdisplay.php?fid=$forum[fid]"><span class="bold">$forum[name]</span></a>
  25.                 <br><span class="smalltxt">$forum[description]<!--{if isset($forum['subforums'])}--><br><span class="bold">{lang forum_subforums}:</span> $forum[subforums]<!--{/if}--></span></td>
  26.                 <td class="altbg1" align="center">$forum[threads]</td>
  27.                 <td class="altbg2" align="center">$forum[posts]</td>
  28.                 <td class="altbg1" align="center">$forum[todayposts]</td>
  29.                 <!--{if $forum['permission'] == 1}-->
  30.                         <td class="altbg2" align="center"><span class="smalltxt"></span>{lang private_forum}</span></td>
  31.                 <!--{else}-->
  32.                         <!--{if is_array($forum['lastpost'])}-->
  33.                                 <td class="altbg2"><table cellpadding="0" cellspacing="0" border="0" width="100%">
  34.                                 <tr><td align="right" class="smalltxt" title="{lang forum_lastpost_in}: $forum[lastpost][subject]" nowrap>
  35.                                 $forum[lastpost][dateline]<br>{lang forum_lastpost_by} <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author']<!--{else}-->{lang anonymous}<!--{/if}--></td>
  36.                                 <td nowrap> <a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost"><img src="{IMGDIR}/lastpost.gif" border="0"></a></td>
  37.                                 </tr></table></td>
  38.                         <!--{else}-->
  39.                                 <td class="altbg2" align="center"><span class="smalltxt">{lang never}</span></td>
  40.                         <!--{/if}-->
  41.                 <!--{/if}-->
  42.                 <td class="altbg1" align="center" style="word-break: keep-all"><span class="smalltxt">$forum[moderators]</span></td></tr>
  43.         <!--{/if}-->
  44. <!--{/loop}-->

  45. <!--{if empty($gid) && ($_DCACHE['forumlinks'] || $whosonlinestatus || $bdaystatus == 1 || $bdaystatus == 3)}-->
  46.         <!--{if empty($forumlist)}--><br><br><!--{else}--></table><br></div><div class="maintable"><!--{/if}-->
  47.         <table cellspacing="{INNERBORDERWIDTH}" cellpadding="{TABLESPACE}" width="{TABLEWIDTH}" align="center" class="tableborder">
  48. <!--{/if}-->
复制代码

替换为:
  1. {eval $incompact = explode(',', $index_intabulae);}
  2. {eval $incompact1= explode(',', $index_intabulae1);}
  3. <!--{loop $forumlist $key $forum}-->
  4. <!--{if $forum['type'] == 'group' && $forumlist[($key + 1)]['type'] == 'forum'}-->
  5. <!--{if $key}-->
  6. <!--{if $fcount}-->
  7. <td colspan="$fcount"> </td></tr></tbody></table><br></div>
  8. <!--{else}-->
  9. <!--{if in_array($forum[fid], array_merge($incompact,$incompact1))}-->
  10. </tbody></table><br></div>
  11. <!--{else}-->
  12. </tr></tbody></table><br></div>
  13. <!--{/if}-->
  14. <!--{/if}-->
  15. <!--{else}-->
  16. <!--{/if}-->
  17. <!--{if in_array($forum[fid], $incompact)}-->
  18. <div class="maintable">
  19. <table cellspacing="{INNERBORDERWIDTH}" cellpadding="{TABLESPACE}" width="{TABLEWIDTH}" align="center" class="tableborder">
  20. <tr><td colspan="$index_fcount" class="header"><table cellspacing="0" cellpadding="0" width="100%">
  21. <tr class="smalltxt"><td class="bold"><a href="index.php?gid=$forum[fid]">$forum[name]</a></td><td align="right">
  22. <!--{if $forum['moderators']}--><font color="{HEADERTEXT}">{lang forum_category_modedby}: $forum[moderators]</font> <!--{/if}-->
  23. <a href="###" onclick="toggle_collapse('category_$forum[fid]');"><img id="category_$forum[fid]_img" src="{IMGDIR}/$forum[collapseimg]" border="0"></a></td></tr></table></td></tr>
  24. <tbody id="category_$forum[fid]" style="$collapse['category_'.$forum[fid]]">

  25. <tr class="altbg2">
  26. {eval $fcount = $index_fcount;}
  27. <!--{elseif in_array($forum[fid], $incompact1)}--><div class="maintable">
  28. <table cellspacing="{INNERBORDERWIDTH}" cellpadding="{TABLESPACE}" width="{TABLEWIDTH}" align="center" class="tableborder">
  29. <tr><td colspan="$index_fcount1" class="header"><table cellspacing="0" cellpadding="0" width="100%">
  30. <tr class="smalltxt"><td class="bold"><a href="index.php?gid=$forum[fid]">$forum[name]</a></td><td align="right">
  31. <!--{if $forum['moderators']}--><font color="{HEADERTEXT}">{lang forum_category_modedby}: $forum[moderators]</font> <!--{/if}-->
  32. <a href="###" onclick="toggle_collapse('category_$forum[fid]');"><img id="category_$forum[fid]_img" src="{IMGDIR}/$forum[collapseimg]" border="0"></a>
  33. </td></tr></table></td></tr>
  34. <tbody id="category_$forum[fid]" style="$collapse['category_'.$forum[fid]]">
  35. <tr class="altbg2">
  36. {eval $fcount = $index_fcount1;}
  37. <!--{else}--><div class="maintable">
  38. <table cellspacing="{INNERBORDERWIDTH}" cellpadding="{TABLESPACE}" width="{TABLEWIDTH}" align="center" class="tableborder">
  39. <tr><td colspan="7" class="header"><table cellspacing="0" cellpadding="0" width="100%">
  40. <tr class="smalltxt"><td class="bold"><a href="index.php?gid=$forum[fid]">$forum[name]</a></td><td align="right">
  41. <!--{if $forum['moderators']}--><font color="{HEADERTEXT}">{lang forum_category_modedby}: $forum[moderators]</font> <!--{/if}-->
  42. <a href="###" onclick="toggle_collapse('category_$forum[fid]');"><img id="category_$forum[fid]_img" src="{IMGDIR}/$forum[collapseimg]" border="0"></a>
  43. </td></tr></table></td></tr>
  44. <tr class="category" align="center">
  45. <td width="5%"> </td>
  46.                 <td width="51%">{lang forum_name}</td>
  47.                 <td width="5%">{lang forum_threads}</td>
  48.                 <td width="5%">{lang forum_posts}</td>
  49.                 <td width="5%">{lang forum_todayposts}</td>
  50.                 <td width="13%">{lang forum_lastpost}</td>
  51.                 <td width="16%">{lang forum_moderators}</td>
  52. </tr><tbody id="category_$forum[fid]" style="$collapse['category_'.$forum[fid]]">
  53. {eval $fcount = 0;}
  54. <!--{/if}-->
  55. <!--{elseif $forum['permission']}-->
  56. <!--{if in_array($forum[fup],$incompact)}-->
  57. {eval $fcount--;}
  58. <!--{if $fcount == -1}--></tr><tr class="altbg2">{eval $fcount = $index_fcount-1;}<!--{/if}-->
  59. <td width="$index_fwidth%" class="altbg2">
  60. <table cellpadding="0" cellspacing="3" border="0" width="100%">
  61. <tr>
  62. <td colspan="2">
  63. <table cellpadding="0" cellspacing="0" border="0" width="100%">
  64. <tr>
  65. <td width="80%" valign="top">                $forum[icon]<a href="forumdisplay.php?fid=$forum[fid]"><span class="bold">$forum[name]</span></a>
  66.                 <br><span class="smalltxt">$forum[description]</span></td>
  67. </tr></table>
  68. </td></tr>
  69. <td colspan="2"><table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#EFEFEF">
  70.         <tr>
  71.           <td width="33%">{lang forum_threads}:$forum[threads]</td>
  72.           <td width="33%">{lang forum_posts}:$forum[posts]</td>
  73.           <td width="33%">{lang forum_todayposts}:<b><font color=red>$forum[todayposts]</font></b></td>
  74. </table></td>
  75.         </tr>
  76.       </table>
  77. <!--{elseif in_array($forum[fup],$incompact1)}-->
  78. {eval $fcount--;}
  79. <!--{if $fcount == -1}--></tr><tr class="altbg2">{eval $fcount = $index_fcount1-1;}<!--{/if}-->
  80. <td width="$index_fwidth1%" class="altbg2" align="left" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  81. <table cellpadding="3" cellspacing="0" border="0" width="100%">
  82. <tr>
  83. <td colspan="1" valign="top">
  84. <table cellpadding="0" cellspacing="0" border="0" width="100%">
  85. <tr>
  86. <td>                $forum[icon]<a href="forumdisplay.php?fid=$forum[fid]"><span class="bold">$forum[name]</span></a>
  87.                 </td>
  88. </tr></table>
  89. </td></tr>
  90. <tr>
  91. <td align="left" class=smalltxt>{lang forum_moderators}:$forum[moderators]<!--{if $forum['permission'] == 1}-->{lang private_forum}<!--{else}--><span class="smalltxt">$forum[description]</span><!--{if is_array($forum['lastpost'])}--><div style="overflow: hidden; text-overflow: ellipsis; width: 100px"> <nobr><b>{lang subject}</b>:<a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost" title="{lang title}:$forum['lastpost'][subject]{LF}{lang time}:$forum['lastpost'][dateline]">$forum['lastpost'][subject]</a></nobr></div><!--{else}-->{lang never}<!--{/if}--><!--{/if}--><br>{lang forum_threads}: $forum[threads]
  92. {lang forum_posts}: $forum[posts]
  93. {lang forum_todayposts}:$forum[todayposts]
  94. </td></tr>
  95. </table>
  96. </td>
  97. <!--{else}-->
  98. <tr>
  99. <td class="altbg1" align="center">$forum[folder]</td>
  100.                 <td class="altbg2" align="left" onMouseOver="this.className='altbg1'" onMouseOut="this.className='altbg2'">
  101.                 $forum[icon]<a href="forumdisplay.php?fid=$forum[fid]"><span class="bold">$forum[name]</span></a>
  102.                 <br><span class="smalltxt">$forum[description]<!--{if isset($forum['subforums'])}--><br><span class="bold">{lang forum_subforums}:</span> $forum[subforums]<!--{/if}--></span></td>
  103.                 <td class="altbg1" align="center">$forum[threads]</td>
  104.                 <td class="altbg2" align="center">$forum[posts]</td>
  105.                 <td class="altbg1" align="center">$forum[todayposts]</td>
  106.                 <!--{if $forum['permission'] == 1}-->
  107.                         <td class="altbg2" align="center"><span class="smalltxt"></span>{lang private_forum}</span></td>
  108.                 <!--{else}-->
  109.                         <!--{if is_array($forum['lastpost'])}-->
  110.                                 <td class="altbg2"><table cellpadding="0" cellspacing="0" border="0" width="100%">
  111.                                 <tr><td align="right" class="smalltxt" title="{lang forum_lastpost_in}: $forum[lastpost][subject]" nowrap>
  112.                                 $forum[lastpost][dateline]<br>{lang forum_lastpost_by} <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author']<!--{else}-->{lang anonymous}<!--{/if}--></td>
  113.                                 <td nowrap> <a href="redirect.php?tid=$forum[lastpost][tid]&goto=lastpost#lastpost"><img src="{IMGDIR}/lastpost.gif" border="0"></a></td>
  114.                                 </tr></table></td>
  115.                         <!--{else}-->
  116.                                 <td class="altbg2" align="center"><span class="smalltxt">{lang never}</span></td>
  117.                         <!--{/if}-->
  118.                 <!--{/if}-->
  119.                 <td class="altbg1" align="center" style="word-break: keep-all"><span class="smalltxt">$forum[moderators]</span></td></tr>
  120. <!--{/if}-->
  121. <!--{/if}-->
  122. <!--{/loop}-->

  123. <!--{if empty($gid) && ($_DCACHE['forumlinks'] || $whosonlinestatus || $bdaystatus == 1 || $bdaystatus == 3)}-->
  124. <!--{if empty($forumlist)}--><br><br><!--{else}--><!--{if $fcount}--><td colspan="$fcount"> </td><!--{/if}--></tr></tbody></table></div><div class="maintable"><!--{/if}--><br>
  125. <table cellspacing="{INNERBORDERWIDTH}" cellpadding="{TABLESPACE}" width="{TABLEWIDTH}" align="center" class="tableborder">
  126. <!--{/if}-->
复制代码

8,上传 upload 目录中文件!
注意:如果你没有改动默认模板可以直接替换mythupload目录内文件即可如果您不想覆盖,可参照修改。

[ 本帖最后由 神 于 2006-3-31 00:17 编辑 ]
回复

使用道具 举报

xjbl 发表于 2006-3-30 23:49:41 | 显示全部楼层
回复

使用道具 举报

wtf1202 发表于 2006-3-31 00:04:20 | 显示全部楼层
板凳
回复

使用道具 举报

 楼主| 发表于 2006-3-31 00:16:28 | 显示全部楼层
一.本插件卸载方法
执行SQL反安装命令
  1. DELETE FROM `cdb_settings` WHERE variable = 'index_fcount';
  2. DELETE FROM `cdb_settings` WHERE variable = 'index_fwidth';
  3. DELETE FROM `cdb_settings` WHERE variable = 'index_intabulae';
  4. DELETE FROM `cdb_settings` WHERE variable = 'index_fcount1';
  5. DELETE FROM `cdb_settings` WHERE variable = 'index_fwidth1';
  6. DELETE FROM `cdb_settings` WHERE variable = 'index_intabulae1';
  7. DELETE FROM `cdb_settings` WHERE variable = 'sub_fcount';
  8. DELETE FROM `cdb_settings` WHERE variable = 'sub_fwidth';
  9. DELETE FROM `cdb_settings` WHERE variable = 'sub_intabulae';
复制代码


替换原文件
admin/settings.inc.php
templates/default/admincp.lang.php
templates/default/templates.lang.php
templates/default/css.htm
templates/defaul/index.htm
templates/defaul/index.htm
templates/defaul/forumdisplay_subforum.htm

二.去掉有新帖无新帖显示的图标



1.修改 index.htm文件,请打开 templates/default/index.htm 文件,进行以下修改!
找到删除
  1. <td align="center" class="smalltxt">
  2. <img src="{IMGDIR}/red_forum.gif" align="absmiddle">&nbsp; {lang forum_newposts}&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
  3. <img src="{IMGDIR}/forum.gif" align="absmiddle">&nbsp; {lang forum_nonewpost}</td>
复制代码


2.修改forum.func.php文件,请打开include/forum.func.php文件,进行以下修改
找到删除
  1. $forum['folder'] = '<img src="'.IMGDIR.'/'.((isset($_DCOOKIE['fid'.$forum['fid']]) && $_DCOOKIE['fid'.$forum['fid']] > $lastvisit ? $_DCOOKIE['fid'.$forum['fid']] : $lastvisit) < $lastpost['dateline'] ? 'red_' : '').'forum.gif">';
复制代码

[ 本帖最后由 神 于 2006-3-31 00:32 编辑 ]
回复

使用道具 举报

inamoto4869 发表于 2006-3-31 00:33:46 | 显示全部楼层
晕了
回复

使用道具 举报

 楼主| 发表于 2006-3-31 00:36:39 | 显示全部楼层
-_-!!写得累死了
回复

使用道具 举报

qtwrk 发表于 2006-3-31 00:40:28 | 显示全部楼层
占位
回复

使用道具 举报

胡话使者 发表于 2006-3-31 00:51:21 | 显示全部楼层
支持,同时强烈盼望tea出新版本.
回复

使用道具 举报

sztvs 发表于 2006-3-31 00:51:40 | 显示全部楼层
建议官方集合这个多好
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-5-19 06:41 , Processed in 0.222722 second(s), 17 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表