Changeset 5632

Show
Ignore:
Timestamp:
03/25/08 16:41:10 (7 months ago)
Author:
inureyes
Message:

#897

  • 중간 커밋
  • 적절하게 안해주면 update할 때들 문제생길라...
Location:
trunk
Files:
3 added
14 modified
5 moved

Legend:

Unmodified
Added
Removed
  • trunk/components/Textcube.Control.Auth.php

    r5430 r5632  
    2727            '/owner/center/dashboard*', 
    2828            '/owner/center/about', 
    29             '/owner/entry*', 
     29            '/owner/communication*', 
    3030            '/owner/reader', 
    3131            '/owner/setting*', 
     
    3939            '/owner/entry/add*', 
    4040            '/owner/entry/attach*', 
    41             '/owner/entry/comment*', 
    4241            '/owner/entry/delete*', 
    4342            '/owner/entry/detach*', 
     
    4645            '/owner/entry/edit*', 
    4746            '/owner/entry/loadTemplate*', 
    48             '/owner/entry/notify*', 
    4947            '/owner/entry/post*', 
    5048            '/owner/entry/preview*', 
    5149            '/owner/entry/protect*', 
    5250            '/owner/entry/size*', 
    53             '/owner/entry/trackback*', 
    54             '/owner/entry/trash*', 
    5551            '/owner/entry/update*', 
    5652            '/owner/entry/visibility*', 
     53            '/owner/communication/comment*', 
     54            '/owner/communication/trackback*', 
     55            '/owner/communication/trash*', 
     56            '/owner/communication/notify*', 
    5757            '/owner/plugin/admin*' 
    5858            ), 
     
    6464            '/owner/entry/add*', 
    6565            '/owner/entry/attach*', 
    66             '/owner/entry/comment*', 
    6766            '/owner/entry/delete*', 
    6867            '/owner/entry/detach*', 
     
    7170            '/owner/entry/edit*', 
    7271            '/owner/entry/loadTemplate*', 
    73             '/owner/entry/notify*', 
    7472            '/owner/entry/post*', 
    7573            '/owner/entry/preview*', 
    7674            '/owner/entry/protect*', 
    7775            '/owner/entry/size*', 
    78             '/owner/entry/trackback*', 
    79             '/owner/entry/trash*', 
    8076            '/owner/entry/update*', 
    8177            '/owner/entry/visibility*', 
     78            '/owner/communication/trackback*', 
     79            '/owner/communication/trash*', 
     80            '/owner/communication/comment*', 
     81            '/owner/communication/notify*', 
    8282            '/owner/setting/account*', 
    8383            '/owner/setting/teamblog/changeBlog*', 
  • trunk/interface/owner/communication/comment/index.php

    r5610 r5632  
    4848 
    4949$tabsClass = array(); 
     50$tabsClass['postfix'] = null; 
     51$tabsClass['postfix'] .= isset($_POST['category']) ? '&category='.$_POST['category'] : ''; 
     52$tabsClass['postfix'] .= isset($_POST['name']) ? '&name='.$_POST['name'] : ''; 
     53$tabsClass['postfix'] .= isset($_POST['ip']) ? '&ip='.$_POST['ip'] : ''; 
     54$tabsClass['postfix'] .= isset($_POST['search']) ? '&search='.$_POST['search'] : ''; 
     55if(!empty($tabsClass['postfix'])) $tabsClass['postfix'] = ltrim($tabsClass['postfix'],'/');  
     56 
    5057if (isset($_POST['status'])) { 
    5158    if($_POST['status']=='comment') { 
     
    6067    $visibilityText = _t('댓글'); 
    6168} 
    62 if($tabsClass['comment'] == true) { 
     69if(isset($tabsClass['comment']) && $tabsClass['comment'] == true) { 
    6370    list($comments, $paging) = getCommentsWithPagingForOwner($blogid, $categoryId, $name, $ip, $search, $suri['page'], $perPage); 
    6471} else { 
     
    7380                                    if (!confirm("<?php echo _t('선택된 댓글을 삭제합니다. 계속 하시겠습니까?');?>")) 
    7481                                        return; 
    75                                     var request = new HTTPRequest("GET", "<?php echo $blogURL;?>/owner/entry/comment/delete/" + id); 
     82                                    var request = new HTTPRequest("GET", "<?php echo $blogURL;?>/owner/communication/comment/delete/" + id); 
    7683                                    request.onSuccess = function () { 
    7784                                        PM.removeRequest(this); 
     
    99106                                    } 
    100107                                     
    101                                     var request = new HTTPRequest("POST", "<?php echo $blogURL;?>/owner/entry/comment/delete/"); 
     108                                    var request = new HTTPRequest("POST", "<?php echo $blogURL;?>/owner/communication/comment/delete/"); 
    102109                                    request.onSuccess = function() { 
    103110                                        document.getElementById('list-form').submit(); 
     
    200207                            </h2> 
    201208                            <ul id="communication-tabs-box" class="tabs-box"> 
    202                                 <!-- TODO : $tab['postfix'] 버그 --> 
    203                                 <li<?php echo isset($tabsClass['comment']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/comment?page=1<?php echo $tab['postfix'];?>&amp;status=comment"><?php echo _t('댓글');?></a></li> 
    204                                 <li<?php echo isset($tabsClass['guestbook']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/comment?page=1<?php echo $tab['postfix'];?>&amp;status=guestbook"><?php echo _t('방명록');?></a></li> 
    205                                 <li<?php echo isset($tabsClass['notify']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/notify"><?php echo _t('댓글 알리미');?></a></li> 
    206                                 <li<?php echo isset($tabsClass['received']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/trackback?page=1<?php echo $tab['postfix'];?>&amp;status=received"><?php echo _t('걸린 글');?></a></li> 
    207                                 <li<?php echo isset($tabsClass['sent']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/trackback?page=1<?php echo $tab['postfix'];?>&amp;status=sent"><?php echo _t('건 글');?></a></li> 
     209                                <li<?php echo isset($tabsClass['comment']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/comment?page=1<?php echo $tabsClass['postfix'];?>&amp;status=comment"><?php echo _t('댓글');?></a></li> 
     210                                <li<?php echo isset($tabsClass['guestbook']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/comment?page=1<?php echo $tabsClass['postfix'];?>&amp;status=guestbook"><?php echo _t('방명록');?></a></li> 
     211                                <li<?php echo isset($tabsClass['notify']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/notify"><?php echo _t('댓글 알리미');?></a></li> 
     212                                <li<?php echo isset($tabsClass['received']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/trackback?page=1<?php echo $tabsClass['postfix'];?>&amp;status=received"><?php echo _t('걸린 글');?></a></li> 
     213                                <li<?php echo isset($tabsClass['sent']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/trackback?page=1<?php echo $tabsClass['postfix'];?>&amp;status=sent"><?php echo _t('건 글');?></a></li> 
    208214                            </ul> 
    209215<?php 
    210216    if(isset($tabsClass['comment'])) { 
    211217?> 
    212                             <form id="category-form" class="category-box" method="post" action="<?php echo $blogURL;?>/owner/entry/comment"> 
     218                            <form id="category-form" class="category-box" method="post" action="<?php echo $blogURL;?>/owner/communication/comment"> 
    213219                                <div class="section"> 
    214220                                    <input type="hidden" name="page" value="<?php echo $suri['page'];?>" /> 
     
    234240    } 
    235241?> 
    236                             <form id="list-form" method="post" action="<?php echo $blogURL;?>/owner/entry/comment"> 
     242                            <form id="list-form" method="post" action="<?php echo $blogURL;?>/owner/communication/comment"> 
    237243<?php 
    238244    if(isset($_POST['ip'])) echo '                              <input type="hidden" name="ip" value="'.$_POST['ip'].'" />'.CRLF; 
     
    312318    } else { 
    313319        echo '<a class="entryURL" href="'.$blogURL.'/'.$comment['entry'].'#comment'.$comment['id'].'" title="'._t('댓글이 작성된 포스트로 직접 이동합니다.').'">'; 
    314     } 
    315     echo '<span class="entry-title">'. htmlspecialchars($comment['title']) .'</span>'; 
    316      
    317     if ($comment['title'] != '' && $comment['parent'] != '') { 
    318         echo '<span class="divider"> | </span>'; 
     320        echo '<span class="entry-title">'. htmlspecialchars($comment['title']) .'</span>'; 
     321        if ($comment['title'] != '' && $comment['parent'] != '') { 
     322            echo '<span class="divider"> | </span>'; 
     323        } 
    319324    } 
    320325     
     
    343348                                            </td> 
    344349                                            <td class="delete"> 
    345                                                 <a class="delete-button button" href="<?php echo $blogURL;?>/owner/entry/comment/delete/<?php echo $comment['id'];?>" onclick="deleteComment(<?php echo $comment['id'];?>); return false;" title="<?php echo _t('이 댓글을 삭제합니다.');?>"><span class="text"><?php echo _t('삭제');?></span></a> 
     350                                                <a class="delete-button button" href="<?php echo $blogURL;?>/owner/communication/comment/delete/<?php echo $comment['id'];?>" onclick="deleteComment(<?php echo $comment['id'];?>); return false;" title="<?php echo _t('이 댓글을 삭제합니다.');?>"><span class="text"><?php echo _t('삭제');?></span></a> 
    346351                                            </td> 
    347352                                        </tr> 
     
    404409                            <hr class="hidden" /> 
    405410                             
    406                             <form id="search-form" class="data-subbox" method="post" action="<?php echo $blogURL;?>/owner/entry/comment"> 
     411                            <form id="search-form" class="data-subbox" method="post" action="<?php echo $blogURL;?>/owner/communication/comment"> 
    407412                                <h2><?php echo _t('검색');?></h2> 
    408413                                 
  • trunk/interface/owner/communication/notify/index.php

    r5610 r5632  
    3939 
    4040$tabsClass = array(); 
     41$tabsClass['postfix'] = null; 
     42$tabsClass['postfix'] .= isset($_POST['category']) ? '&category='.$_POST['category'] : ''; 
     43$tabsClass['postfix'] .= isset($_POST['name']) ? '&name='.$_POST['name'] : ''; 
     44$tabsClass['postfix'] .= isset($_POST['ip']) ? '&ip='.$_POST['ip'] : ''; 
     45$tabsClass['postfix'] .= isset($_POST['search']) ? '&search='.$_POST['search'] : ''; 
     46if(!empty($tabsClass['postfix'])) $tabsClass['postfix'] = ltrim($tabsClass['postfix'],'/');  
     47 
    4148$tabsClass['notify'] = true; 
    4249$visibilityText = _t('댓글 알리미'); 
     
    159166                            </h2> 
    160167                            <ul id="communication-tabs-box" class="tabs-box"> 
    161                                 <!-- TODO : $tab['postfix'] 버그 --> 
    162                                 <li<?php echo isset($tabsClass['comment']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/comment?page=1<?php echo $tab['postfix'];?>&amp;status=comment"><?php echo _t('댓글');?></a></li> 
    163                                 <li<?php echo isset($tabsClass['guestbook']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/comment?page=1<?php echo $tab['postfix'];?>&amp;status=guestbook"><?php echo _t('방명록');?></a></li> 
    164                                 <li<?php echo isset($tabsClass['notify']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/notify"><?php echo _t('댓글 알리미');?></a></li> 
    165                                 <li<?php echo isset($tabsClass['received']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/trackback?page=1<?php echo $tab['postfix'];?>&amp;status=received"><?php echo _t('걸린 글');?></a></li> 
    166                                 <li<?php echo isset($tabsClass['sent']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/trackback?page=1<?php echo $tab['postfix'];?>&amp;status=sent"><?php echo _t('건 글');?></a></li> 
     168                                <li<?php echo isset($tabsClass['comment']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/comment?page=1<?php echo $tabsClass['postfix'];?>&amp;status=comment"><?php echo _t('댓글');?></a></li> 
     169                                <li<?php echo isset($tabsClass['guestbook']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/comment?page=1<?php echo $tabsClass['postfix'];?>&amp;status=guestbook"><?php echo _t('방명록');?></a></li> 
     170                                <li<?php echo isset($tabsClass['notify']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/notify"><?php echo _t('댓글 알리미');?></a></li> 
     171                                <li<?php echo isset($tabsClass['received']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/trackback?page=1<?php echo $tabsClass['postfix'];?>&amp;status=received"><?php echo _t('걸린 글');?></a></li> 
     172                                <li<?php echo isset($tabsClass['sent']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/trackback?page=1<?php echo $tabsClass['postfix'];?>&amp;status=sent"><?php echo _t('건 글');?></a></li> 
    167173                            </ul> 
    168174 
  • trunk/interface/owner/communication/trackback/index.php

    r5610 r5632  
    4545 
    4646$tabsClass = array(); 
     47$tabsClass['postfix'] = null; 
     48$tabsClass['postfix'] .= isset($_POST['category']) ? '&category='.$_POST['category'] : ''; 
     49$tabsClass['postfix'] .= isset($_POST['name']) ? '&name='.$_POST['name'] : ''; 
     50$tabsClass['postfix'] .= isset($_POST['ip']) ? '&ip='.$_POST['ip'] : ''; 
     51$tabsClass['postfix'] .= isset($_POST['search']) ? '&search='.$_POST['search'] : ''; 
     52if(!empty($tabsClass['postfix'])) $tabsClass['postfix'] = ltrim($tabsClass['postfix'],'/');  
     53 
    4754if (isset($_POST['status'])) { 
    4855    if($_POST['status']=='received') { 
     
    5865} 
    5966 
    60 if($tabsClass['received'] == true) { 
     67if(isset($tabsClass['received']) && $tabsClass['received'] == true) { 
    6168    list($trackbacks, $paging) = getTrackbacksWithPagingForOwner($blogid, $categoryId, $site, $ip, $search, $suri['page'], $perPage); 
    6269} else { 
     
    112119                                    if (!confirm("<?php echo _t('선택된 걸린글을 휴지통으로 옮깁니다. 계속 하시겠습니까?');?>")) 
    113120                                        return; 
    114                                     var request = new HTTPRequest("GET", "<?php echo $blogURL;?>/owner/entry/trackback/delete/" + id); 
     121                                    var request = new HTTPRequest("GET", "<?php echo $blogURL;?>/owner/communication/trackback/delete/" + id); 
    115122                                    request.onSuccess = function() { 
    116123                                        PM.removeRequest(this); 
     
    137144                                                targets[targets.length] = oElement.value; 
    138145                                        } 
    139                                         var request = new HTTPRequest("POST", "<?php echo $blogURL;?>/owner/entry/trackback/delete/"); 
     146                                        var request = new HTTPRequest("POST", "<?php echo $blogURL;?>/owner/communication/trackback/delete/"); 
    140147                                        request.onSuccess = function() { 
    141148                                            document.getElementById('list-form').submit(); 
     
    151158                                function removeTrackbackLog(id) { 
    152159                                    if (confirm("선택된 글걸기 기록을 지웁니다. 계속 하시겠습니까?")) { 
    153                                         var request = new HTTPRequest("<?php echo $blogURL;?>/owner/entry/trackback/log/remove/" + id); 
     160                                        var request = new HTTPRequest("<?php echo $blogURL;?>/owner/communication/trackback/log/remove/" + id); 
    154161                                        request.onSuccess = function () { 
    155162                                            document.getElementById('list-form').submit(); 
     
    173180                                                targets[targets.length] = oElement.value; 
    174181                                        } 
    175                                         var request = new HTTPRequest("POST", "<?php echo $blogURL;?>/owner/entry/trackback/log/remove/"); 
     182                                        var request = new HTTPRequest("POST", "<?php echo $blogURL;?>/owner/communication/trackback/log/remove/"); 
    176183                                        request.onSuccess = function() { 
    177184                                            document.getElementById('list-form').submit(); 
     
    236243                            </h2> 
    237244                            <ul id="communication-tabs-box" class="tabs-box"> 
    238                                 <!-- TODO : $tab['postfix'] 버그 --> 
    239                                 <li<?php echo isset($tabsClass['comment']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/comment?page=1<?php echo $tab['postfix'];?>&amp;status=comment"><?php echo _t('댓글');?></a></li> 
    240                                 <li<?php echo isset($tabsClass['guestbook']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/comment?page=1<?php echo $tab['postfix'];?>&amp;status=guestbook"><?php echo _t('방명록');?></a></li> 
    241                                 <li<?php echo isset($tabsClass['notify']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/notify"><?php echo _t('댓글 알리미');?></a></li> 
    242                                 <li<?php echo isset($tabsClass['received']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/trackback?page=1<?php echo $tab['postfix'];?>&amp;status=received"><?php echo _t('걸린 글');?></a></li> 
    243                                 <li<?php echo isset($tabsClass['sent']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/entry/trackback?page=1<?php echo $tab['postfix'];?>&amp;status=sent"><?php echo _t('건 글');?></a></li> 
     245                                <li<?php echo isset($tabsClass['comment']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/comment?page=1<?php echo $tabsClass['postfix'];?>&amp;status=comment"><?php echo _t('댓글');?></a></li> 
     246                                <li<?php echo isset($tabsClass['guestbook']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/comment?page=1<?php echo $tabsClass['postfix'];?>&amp;status=guestbook"><?php echo _t('방명록');?></a></li> 
     247                                <li<?php echo isset($tabsClass['notify']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/notify"><?php echo _t('댓글 알리미');?></a></li> 
     248                                <li<?php echo isset($tabsClass['received']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/trackback?page=1<?php echo $tabsClass['postfix'];?>&amp;status=received"><?php echo _t('걸린 글');?></a></li> 
     249                                <li<?php echo isset($tabsClass['sent']) ? ' class="selected"' : NULL;?>><a href="<?php echo $blogURL;?>/owner/communication/trackback?page=1<?php echo $tabsClass['postfix'];?>&amp;status=sent"><?php echo _t('건 글');?></a></li> 
    244250                            </ul> 
    245251 
    246                             <form id="category-form" class="category-box" method="post" action="<?php echo $blogURL;?>/owner/entry/trackback"> 
     252                            <form id="category-form" class="category-box" method="post" action="<?php echo $blogURL;?>/owner/communication/trackback"> 
    247253                                <div class="section"> 
    248254                                    <input type="hidden" name="page" value="<?php echo $suri['page'];?>" /> 
     
    271277                            </form> 
    272278 
    273                             <form id="list-form" method="post" action="<?php echo $blogURL;?>/owner/entry/trackback"> 
     279                            <form id="list-form" method="post" action="<?php echo $blogURL;?>/owner/communication/trackback"> 
    274280<?php 
    275281    if(!isset($tabsClass['received'])) { 
     
    384390    if(isset($tabsClass['received'])) { 
    385391?> 
    386                                                 <a class="delete-button button" href="<?php echo $blogURL;?>/owner/entry/trackback/delete/<?php echo $trackback['id'];?>" onclick="trashTrackback(<?php echo $trackback['id'];?>); return false;" title="<?php echo _t('이 걸린글을 삭제합니다.');?>"><span class="text"><?php echo _t('삭제');?></span></a> 
    387 <?php 
    388     } else { 
    389 ?> 
    390                                                 <a class="delete-button button" href="<?php echo $blogURL;?>/owner/entry/trackback/log/remove/<?php echo $trackback['id'];?>" onclick="removeTrackbackLog(<?php echo $trackback['id'];?>); return false;" title="<?php echo _t('이 글걸기 기록을 삭제합니다.');?>"><span class="text"><?php echo _t('삭제');?></span></a> 
     392                                                <a class="delete-button button" href="<?php echo $blogURL;?>/owner/communication/trackback/delete/<?php echo $trackback['id'];?>" onclick="trashTrackback(<?php echo $trackback['id'];?>); return false;" title="<?php echo _t('이 걸린글을 삭제합니다.');?>"><span class="text"><?php echo _t('삭제');?></span></a> 
     393<?php 
     394    } else { 
     395?> 
     396                                                <a class="delete-button button" href="<?php echo $blogURL;?>/owner/communication/trackback/log/remove/<?php echo $trackback['id'];?>" onclick="removeTrackbackLog(<?php echo $trackback['id'];?>); return false;" title="<?php echo _t('이 글걸기 기록을 삭제합니다.');?>"><span class="text"><?php echo _t('삭제');?></span></a> 
    391397<?php 
    392398    } 
     
    452458                            <hr class="hidden" /> 
    453459                             
    454                             <form id="search-form" class="data-subbox" method="post" action="<?php echo $blogURL;?>/owner/entry/trackback"> 
     460                            <form id="search-form" class="data-subbox" method="post" action="<?php echo $blogURL;?>/owner/communication/trackback"> 
    455461                                <h2><?php echo _t('검색');?></h2> 
    456462                                 
  • trunk/interface/owner/communication/trash/comment/index.php

    r5285 r5632  
    5151                                    if (!confirm("<?php echo _t('선택된 댓글을 삭제합니다. 계속 하시겠습니까?');?>")) 
    5252                                        return; 
    53                                     var request = new HTTPRequest("GET", "<?php echo $blogURL;?>/owner/entry/trash/comment/delete/" + id); 
     53                                    var request = new HTTPRequest("GET", "<?php echo $blogURL;?>/owner/communication/trash/comment/delete/" + id); 
    5454                                    request.onSuccess = function () { 
    5555                                        document.getElementById('list-form').submit(); 
     
    6363                                    if (!confirm("<?php echo _t('휴지통 내의 모든 댓글을 삭제합니다. 계속 하시겠습니까?');?>")) 
    6464                                        return; 
    65                                     var request = new HTTPRequest("GET", "<?php echo $blogURL;?>/owner/entry/trash/emptyTrash/?type=1&ajaxcall"); 
     65                                    var request = new HTTPRequest("GET", "<?php echo $blogURL;?>/owner/communication/trash/emptyTrash/?type=1&ajaxcall"); 
    6666                                    request.onSuccess = function () { 
    6767                                        window.location.reload(); 
     
    8484                                        } 
    8585                                    } 
    86                                     var request = new HTTPRequest("POST", "<?php echo $blogURL;?>/owner/entry/trash/comment/delete/"); 
     86                                    var request = new HTTPRequest("POST", "<?php echo $blogURL;?>/owner/communication/trash/comment/delete/"); 
    8787                                    request.onSuccess = function() { 
    8888                                        document.getElementById('list-form').submit(); 
     
    9797                                    if (!confirm("<?php echo _t('선택된 댓글을 복원합니다. 계속 하시겠습니까?');?>")) 
    9898                                        return; 
    99                                     var request = new HTTPRequest("GET", "<?php echo $blogURL;?>/owner/entry/trash/comment/revert/" + id); 
     99                                    var request = new HTTPRequest("GET", "<?php echo $blogURL;?>/owner/communication/trash/comment/revert/" + id); 
    100100                                    request.onSuccess = function () { 
    101101                                        document.getElementById('list-form').submit(); 
     
    118118                                        } 
    119119                                    } 
    120                                     var request = new HTTPRequest("POST", "<?php echo $blogURL;?>/owner/entry/trash/comment/revert/"); 
     120                                    var request = new HTTPRequest("POST", "<?php echo $blogURL;?>/owner/communication/trash/comment/revert/"); 
    121121                                    request.onSuccess = function() { 
    122122                                        document.getElementById('list-form').submit(); 
     
    271271                            </div>                           
    272272 
    273                             <form id="trash-form" method="post" action="<?php echo $blogURL;?>/owner/entry/trash"> 
     273                            <form id="trash-form" method="post" action="<?php echo $blogURL;?>/owner/communication/trash"> 
    274274                                <fieldset class="section"> 
    275275                                    <legend><?php echo _t('삭제된 파일 보기 설정');?></legend> 
     
    293293                            </form> 
    294294                             
    295                             <form id="list-form" method="post" action="<?php echo $blogURL;?>/owner/entry/trash/comment"> 
     295                            <form id="list-form" method="post" action="<?php echo $blogURL;?>/owner/communication/trash/comment"> 
    296296                                <table class="data-inbox" cellspacing="0" cellpadding="0"> 
    297297                                    <thead> 
     
    358358    } 
    359359?> 
    360                                                 <a href="<?php echo $blogURL;?>/owner/entry/trash/comment?name=<?php echo urlencode(escapeJSInAttribute($comment['name']));?>" title="<?php echo _t('이 이름으로 등록된 댓글 목록을 보여줍니다.');?>"><?php echo htmlspecialchars($comment['name']);?></a> 
     360                                                <a href="<?php echo $blogURL;?>/owner/communication/trash/comment?name=<?php echo urlencode(escapeJSInAttribute($comment['name']));?>" title="<?php echo _t('이 이름으로 등록된 댓글 목록을 보여줍니다.');?>"><?php echo htmlspecialchars($comment['name']);?></a> 
    361361                                            </td> 
    362362                                            <td class="content"> 
     
    387387    } 
    388388?> 
    389                                                 <a href="<?php echo $blogURL;?>/owner/entry/trash/comment?ip=<?php echo urlencode(escapeJSInAttribute($comment['ip']));?>" title="<?php echo _t('이 IP로 등록된 댓글 목록을 보여줍니다.');?>"><?php echo $comment['ip'];?></a> 
     389                                                <a href="<?php echo $blogURL;?>/owner/communication/trash/comment?ip=<?php echo urlencode(escapeJSInAttribute($comment['ip']));?>" title="<?php echo _t('이 IP로 등록된 댓글 목록을 보여줍니다.');?>"><?php echo $comment['ip'];?></a> 
    390390                                            </td> 
    391391                                            <td class="revert"> 
    392                                                 <a class="revert-button button" href="<?php echo $blogURL;?>/owner/entry/trash/comment/revert/<?php echo $comment['id'];?>" onclick="revertComment(<?php echo $comment['id'];?>); return false;" title="<?php echo _t('이 댓글을 복원합니다.');?>"><span class="text"><?php echo _t('복원');?></span></a> 
     392                                                <a class="revert-button button" href="<?php echo $blogURL;?>/owner/communication/trash/comment/revert/<?php echo $comment['id'];?>" onclick="revertComment(<?php echo $comment['id'];?>); return false;" title="<?php echo _t('이 댓글을 복원합니다.');?>"><span class="text"><?php echo _t('복원');?></span></a> 
    393393                                            </td> 
    394394                                            <td class="delete"> 
    395                                                 <a class="delete-button button" href="<?php echo $blogURL;?>/owner/entry/trash/comment/delete/<?php echo $comment['id'];?>" onclick="deleteComment(<?php echo $comment['id'];?>); return false;" title="<?php echo _t('이 댓글을 삭제합니다.');?>"><span class="text"><?php echo _t('삭제');?></span></a> 
     395                                                <a class="delete-button button" href="<?php echo $blogURL;?>/owner/communication/trash/comment/delete/<?php echo $comment['id'];?>" onclick="deleteComment(<?php echo $comment['id'];?>); return false;" title="<?php echo _t('이 댓글을 삭제합니다.');?>"><span class="text"><?php echo _t('삭제');?></span></a> 
    396396                                            </td> 
    397397                                        </tr> 
     
    454454                            <hr class="hidden" /> 
    455455                             
    456                             <form id="search-form" class="data-subbox" method="post" action="<?php echo $blogURL;?>/owner/entry/trash/comment"> 
     456                            <form id="search-form" class="data-subbox" method="post" action="<?php echo $blogURL;?>/owner/communication/trash/comment"> 
    457457                                <h2><?php echo _t('검색');?></h2> 
    458458                                 
     
    466466                             
    467467<