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

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[经验] 群组话题功能增强包,正式发布

[复制链接]
sdweiyi 发表于 2009-1-6 15:20:49 | 显示全部楼层
楼主~ 有错了~ 覆盖安装后, 发表日志,直接贴图发表~  日志不能发表~~~~~~~~~~~~
回复

使用道具 举报

cgisky 发表于 2009-1-6 16:13:58 | 显示全部楼层
回帖那美化了下
  1. <!--{eval $_TPL['titles'] = array($thread['subject'], $mtag['tagname'], $mtag['title'], '话题');}-->
  2. <!--{template header}-->



  3. <script language="javascript" src="image/editor/editor_function.js"></script>
  4. <script type="text/javascript">
  5.         function validate(obj) {
  6.             var subject = $('subject');
  7.             if (subject) {
  8.                     var slen = strlen(subject.value);
  9.                 if (slen < 1 || slen > 80) {
  10.                     alert("标题长度(1~80字符)不符合要求");
  11.                     subject.focus();
  12.                     return false;
  13.                 }
  14.             }

  15.             if($('seccode')) {
  16.                         var code = $('seccode').value;
  17.                         var x = new Ajax();
  18.                         x.get('cp.php?ac=common&op=seccode&code=' + code, function(s){
  19.                                 s = trim(s);
  20.                                 if(s.indexOf('succeed') == -1) {
  21.                                         alert(s);
  22.                                         $('seccode').focus();
  23.                                    return false;
  24.                                 } else {
  25.                                         uploadEdit(obj);
  26.                                         return true;
  27.                                 }
  28.                         });
  29.             } else {
  30.                     uploadEdit(obj);
  31.                     return true;
  32.             }
  33.         }
  34.         function edit_album_show(id) {
  35.                 var obj = $('uchome-edit-'+id);
  36.                 if(id == 'album') {
  37.                         $('uchome-edit-pic').style.display = 'none';
  38.                 }
  39.                 if(id == 'pic') {
  40.                         $('uchome-edit-album').style.display = 'none';
  41.                 }
  42.                 if(obj.style.display == '') {
  43.                         obj.style.display = 'none';
  44.                 } else {
  45.                         obj.style.display = '';
  46.                 }
  47.         }
  48. </script>



  49. <h2 class="title">
  50.         <img src="image/app/mtag.gif"><a href="space.php?do=mtag&id=$mtag[fieldid]">$mtag[title]</a> -
  51.         <a href="space.php?do=mtag&tagid=$mtag[tagid]">$mtag[tagname]</a>
  52. </h2>

  53. <div class="tabs_header">
  54.         <a href="cp.php?ac=share&type=thread&id=$thread[tid]" id="a_share" onclick="ajaxmenu(event, this.id, 99999, '', -1)" class="a_share">分享</a>
  55.         <div class="r_option">
  56.                 <!--{if $_SGLOBAL[supe_uid] == $thread[uid] || checkperm('manageblog')}--><a href="cp.php?ac=common&op=manage&idtype=thread&id=$thread[tid]" id="a_manage" onclick="ajaxmenu(event, this.id, 99999)">管理</a><span class="pipe">|</span><!--{/if}-->
  57.                 <a href="cp.php?ac=common&op=report&idtype=thread&id=$thread[tid]" id="a_report" onclick="ajaxmenu(event, this.id, 99999,'' , -1)">举报</a><span class="pipe">|</span>
  58.         </div>
  59.         <ul class="tabs">
  60.                 <li><a href="space.php?do=mtag&tagid=$thread[tagid]&view=list"><span>返回讨论区</span></a></li>
  61.                 <!--{if empty($mtag['ismember']) && $mtag['joinperm'] < 2}-->
  62.                 <li class="null"><a href="cp.php?ac=mtag&op=join&tagid=$mtag[tagid]" id="mtag_join_$mtag[tagid]" onclick="ajaxmenu(event, this.id, 99999)">加入该群组</a></li>       
  63.                 <!--{elseif $mtag['allowpost']}-->
  64.                 <li class="null"><a href="cp.php?ac=thread&tagid=$mtag[tagid]">发起新话题</a></li>
  65.                 <!--{/if}-->
  66.         </ul>
  67. </div>

  68. <div id="div_post">
  69.         <div class="board">
  70.                 <!--{if $thread[content]}-->
  71.                 <div id="post_$thread[content][pid]_li">
  72.                         <ul class="line_list">
  73.                                 <li>
  74.                                 <table width="100%">
  75.                                 <tr>
  76.                                         <td width="70" valign="top">
  77.                                                 <div class="avatar48">
  78.                                                 <a href="space.php?uid=$thread[uid]"><img src="<!--{avatar($thread[uid],small)}-->" alt="{$_SN[$thread[uid]]}" class="avatar" /></a>
  79.                                                 </div>
  80.                                         </td>
  81.                                         <td>
  82.                                                 <div class="title">
  83.                                                         <div class="r_option">
  84.                                                                 <!--{if $thread[uid]==$_SGLOBAL[supe_uid]}-->
  85.                                                                 <a href="cp.php?ac=thread&op=edit&pid=$thread[content][pid]&tagid=$thread[tagid]">编辑</a>
  86.                                                                 <!--{/if}-->
  87.                                                                 <!--{if $mtag[grade]>=8 || $thread[uid]==$_SGLOBAL[supe_uid]}-->
  88.                                                                 <a href="cp.php?ac=thread&op=delete&pid=$thread[content][pid]&tagid=$thread[tagid]" id="p_$thread[content][pid]_delete" onclick="ajaxmenu(event, this.id, 99999)">删除</a>
  89.                                                                 <!--{/if}-->
  90.                                                                 <!--{if $mtag[allowpost]}--><a href="#postform">回复</a><!--{/if}-->
  91.                                                                 <!--{if $mtag[grade]>=8}-->
  92.                                                                         <!--{if $thread[displayorder]}-->
  93.                                                                         <a href="cp.php?ac=thread&op=top&tagid=$thread[tagid]&tid=$thread[tid]&cancel" id="t_$thread[tid]_top" onclick="ajaxmenu(event, this.id, 2000)">取消置顶</a>
  94.                                                                         <!--{else}-->
  95.                                                                         <a href="cp.php?ac=thread&op=top&tagid=$thread[tagid]&tid=$thread[tid]" id="t_$thread[tid]_top" onclick="ajaxmenu(event, this.id, 2000)">置顶</a>
  96.                                                                         <!--{/if}-->
  97.                                                                         <!--{if $thread[digest]}-->
  98.                                                                         <a href="cp.php?ac=thread&op=digest&tagid=$thread[tagid]&tid=$thread[tid]&cancel" id="t_$thread[tid]_digest" onclick="ajaxmenu(event, this.id, 2000)">取消精华</a>
  99.                                                                         <!--{else}-->
  100.                                                                         <a href="cp.php?ac=thread&op=digest&tagid=$thread[tagid]&tid=$thread[tid]" id="t_$thread[tid]_digest" onclick="ajaxmenu(event, this.id, 2000)">精华</a>
  101.                                                                         <!--{/if}-->
  102.                                                                 <!--{/if}-->
  103.                                                         </div>
  104.                                                         <h1>$thread[subject]</h1>
  105.                                                         <a href="space.php?uid=$thread[uid]">{$_SN[$thread[uid]]}</a>
  106.                                                         <span class="time"><!--{date('Y-m-d H:i',$thread[dateline],1)}--></span>
  107.                                                 </div>
  108.                                                 <div class="detail" id="detail_0">
  109.                                                         <!--{if $_SGLOBAL['ad']['rightside']}-->
  110.                                                         <div style="float: right; padding:5px;"><!--{ad/rightside}--></div>
  111.                                                         <!--{/if}-->
  112.                                                         $thread[content][message]
  113.                                                         <!--{if $thread[content][pic]}--><div><a href="$thread[content][pic]" target="_blank"><img src="$thread[content][pic]" alt="" class="resizeimg" /></a></div><!--{/if}-->
  114.                                                 </div>
  115.                                         </td>
  116.                                 </tr>
  117.                                 </table>
  118.                                 </li>
  119.                         </ul>
  120.                 </div>
  121.                 <!--{/if}-->

  122.                 <div id="post_ul">
  123.                
  124.                         <!--{if $pid}-->
  125.                         <div class="notice">
  126.                                 当前只显示与你操作相关的单个帖子,<a href="space.php?uid=$thread[uid]&do=thread&id=$thread[tid]">点击此处查看全部回帖</a>
  127.                         </div>
  128.                         <!--{/if}-->

  129.                         <!--{loop $list $value}-->
  130.                         <!--{template space_post_li}-->
  131.                         <!--{/loop}-->
  132.                 </div>
  133.                
  134.                 <div class="page">$multi</div>
  135.                
  136.                 <!--{if $mtag[allowpost]}-->
  137.                
  138.                 <div class="quickpost" id="postform">
  139.                         <form method="post" action="cp.php?ac=thread" class="quickpost" id="quickpostform_{$thread[tid]}" name="quickpostform_{$thread[tid]}">
  140.                                 <table cellspacing="4" cellpadding="4" width="100%">
  141.                                         <tr><td>
  142.                                                         <!--a href="###" id="quickpost" onclick="showFace(this.id, 'message');"><img src="image/facelist.gif" align="absmiddle" /></a><br-->
  143.                                                         <textarea id="uchome-ttHtmlEditor" name="message" onkeydown="ctrlEnter(event, 'postsubmit_btn');" col="50" rows="10" style="width: 450px; height: 6em; display:none; border:0px;"></textarea>
  144.                                                         <iframe src="editor.php?charset=$_SC[charset]&allowhtml=<!--{eval echo checkperm('allowhtml')}-->" name="uchome-ifrHtmlEditor" id="uchome-ifrHtmlEditor" scrolling="no" border="0" frameborder="0" style="width:90%;border: 1px solid #C5C5C5;" height="300"></iframe>
  145.                                                 </td></tr>
  146.                                         <tr><td>
  147.                                                         <input type="hidden" name="tid" value="$thread[tid]" />
  148.                                                         <input type="hidden" name="postsubmit" value="true" />
  149.                                                         <!--input type="button" id="postsubmit_btn" name="postsubmit_btn" value="回复" class="submit" onclick="ajaxpost('quickpostform_{$thread[tid]}', 'post_status', 'post_add')" /-->
  150.                                                         <input type="button" id="threadbutton" name="threadbutton" value="提交发布" onclick="validate(this);" style="display: none;" />
  151.                                                         <div id="post_status"></div>
  152.                                                         <input type="hidden" name="formhash" value="<!--{eval echo formhash();}-->" />
  153.                                                 </td>
  154.                                         </tr>
  155.                         </form>
  156.                                 <tr><td>
  157.                                 <input type="button" name="clickbutton[]" value="上传图片" class="button" onclick="edit_album_show('pic')">
  158.                                 <input type="button" name="clickbutton[]" value="相册图片" class="button" onclick="edit_album_show('album')">
  159.                                 </td></tr>
  160.                         </table>

  161.                         <table cellspacing="4" cellpadding="4" width="100%" id="uchome-edit-pic" class="infotable" style="display:none;">
  162.                                 <tr>
  163.                                         <td>
  164.                                                 <strong>选择图片</strong>:
  165.                                                 <table summary="Upload" cellspacing="2" cellpadding="0">
  166.                                                         <tbody id="attachbodyhidden" style="display:none">
  167.                                                                 <tr>
  168.                                                                         <td>
  169.                                                                                 <form method="post" id="upload" action="cp.php?ac=upload" enctype="multipart/form-data" target="uploadframe" style="background: transparent;">
  170.                                                                                         <input type="file" name="attach" style="border: 1px solid #CCC;" />
  171.                                                                                         <span id="localfile"></span>
  172.                                                                                         <input type="hidden" name="uploadsubmit" id="uploadsubmit" value="true" />
  173.                                                                                         <input type="hidden" name="albumid" id="albumid" value="0" />
  174.                                                                                         <input type="hidden" name="formhash" value="<!--{eval echo formhash();}-->" />
  175.                                                                                 </form>
  176.                                                                         </td>
  177.                                                                 </tr>
  178.                                                         </tbody>
  179.                                                         <tbody id="attachbody"></tbody>
  180.                                                 </table>
  181.                                                 <strong>存储相册</strong>:
  182.                                                 <table cellspacing="2" cellpadding="0">
  183.                                                         <tr>
  184.                                                                 <td>
  185.                                                                         <select name="albumid" id="uploadalbum" onchange="addSort(this)">
  186.                                                                                 <option value="0">请选择相册</option>
  187.                                                                                 <!--{loop $albums $value}-->
  188.                                                                                 <option value="$value[albumid]">$value[albumname]</option>
  189.                                                                                 <!--{/loop}-->
  190.                                                                                 <option value="addoption" style="color:red;">+新建相册</option>
  191.                                                                         </select>
  192.                                                                         <script src="source/script_upload.js" type="text/javascript"></script>
  193.                                                                         <iframe id="uploadframe" name="uploadframe" width="0" height="0" marginwidth="0" frameborder="0" src="about:blank"></iframe>
  194.                                                                 </td>
  195.                                                         </tr>
  196.                                                 </table>
  197.                                         </td>
  198.                                 </tr>
  199.                         </table>
  200.                         <table cellspacing="4" cellpadding="4" width="100%" class="infotable" id="uchome-edit-album" style="display:none;">
  201.                                 <tr>
  202.                                         <td>
  203.                                                 选择相册: <select name="view_albumid" onchange="picView(this.value)">
  204.                                                         <option value="none">选择一个相册</option>
  205.                                                         <option value="0">默认相册</option>
  206.                                                         <!--{loop $albums $value}-->
  207.                                                         <option value="$value[albumid]">$value[albumname]</option>
  208.                                                         <!--{/loop}-->
  209.                                                 </select> (点击图片可以插入到内容中)
  210.                                                 <div id="albumpic_body"></div>
  211.                                         </td>
  212.                                 </tr>
  213.                         </table>
  214.                         <table cellspacing="4" cellpadding="4" width="100%" class="infotable">
  215.                                 <tr>
  216.                                         <td><input type="button" id="issuance" onclick="document.getElementById('threadbutton').click();" value="回复" class="submit" /></td>
  217.                                 </tr>
  218.                         </table>
  219.                        
  220.                        
  221.                 </div>
  222.                 <!--{else}-->
  223.                 <div class="c_form">
  224.                 <!--{if $mtag[grade]==-1}-->
  225.                         您现在被群主禁言,不能参与讨论。
  226.                 <!--{else}-->
  227.                         你还不是该群组正式成员,不能参与讨论。
  228.                         <!--{if $mtag[grade]==-9}-->
  229.                         <a href="cp.php?ac=mtag&op=join&tagid=$mtag[tagid]" id="_tag_join_$mtag[tagid]" onclick="ajaxmenu(event, this.id, 99999)">现在就加入</a>。
  230.                         <!--{/if}-->
  231.                 <!--{/if}-->
  232.                 </div>
  233.                 <!--{/if}-->
  234.         </div>                       
  235. </div>

  236. <script type="text/javascript">
  237.         resizeImg('div_post','600');
  238. </script>
  239.                                        
  240. <!--{template footer}-->
复制代码


space_thread_view.htm
回复

使用道具 举报

cgisky 发表于 2009-1-6 16:18:45 | 显示全部楼层
楼主~ 有错了~ 覆盖安装后, 发表日志,直接贴图发表~  日志不能发表~~~~~~~~~~~~
sdweiyi 发表于 2009-1-6 15:20


function_blog.php  改回来  远程图片本地化 感觉没多少必要哈
回复

使用道具 举报

 楼主| 每日C 发表于 2009-1-6 23:02:52 | 显示全部楼层
楼主~ 有错了~ 覆盖安装后, 发表日志,直接贴图发表~  日志不能发表~~~~~~~~~~~~
sdweiyi 发表于 2009-1-6 15:20


重启webServer后清空缓存再试试
刚刚我更新我另一个站的时候也是同样问题
按上面做了之后就好了
更新的时候我也是用我发布在这里的文件覆盖安装的
发布的文件应该没问题
应该是缓存的问题
你再试试看吧
实在不行就别要那个远程抓图了
回复

使用道具 举报

tgjy1 发表于 2009-1-7 04:02:31 | 显示全部楼层
回复输入框能否调整一下呢,比例太大了,呵呵
回复

使用道具 举报

jousst 发表于 2009-1-7 23:27:05 | 显示全部楼层
可是他無法支持類似相簿一樣RESIZE功能
他只是將大小縮小
但檔案還是一樣大~@@
回复

使用道具 举报

 楼主| 每日C 发表于 2009-1-7 23:31:04 | 显示全部楼层
可是他無法支持類似相簿一樣RESIZE功能
他只是將大小縮小
但檔案還是一樣大~@@
jousst 发表于 2009-1-7 23:27


我有个整合tinymce的版本的
https://discuz.dismall.com/thread-1174974-1-1.html
你要吗,这个不是免费的
这个版本是地道的功能强劲
每个用户都有自己的独立空间
管理器里面能对文件进行裁切等简单操作
回复

使用道具 举报

tanwenkuan 发表于 2009-1-7 23:47:09 | 显示全部楼层
做个记号
回复

使用道具 举报

flowerboy 发表于 2009-1-8 01:09:30 | 显示全部楼层
下了,用上了,很好很强大,谢谢楼主
回复

使用道具 举报

sourire 发表于 2009-1-8 20:02:42 | 显示全部楼层
出问题了,显示[em:22:]却没有相应脸蛋符号
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-15 01:51 , Processed in 0.047751 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

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