- Timestamp:
- 03/25/08 16:41:10 (8 months ago)
- Location:
- trunk/interface/owner/communication/trash
- Files:
-
- 1 modified
- 1 moved
-
. (moved) (moved from trunk/interface/owner/entry/trash)
-
comment/index.php (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/communication/trash/comment/index.php
r5285 r5632 51 51 if (!confirm("<?php echo _t('선택된 댓글을 삭제합니다. 계속 하시겠습니까?');?>")) 52 52 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); 54 54 request.onSuccess = function () { 55 55 document.getElementById('list-form').submit(); … … 63 63 if (!confirm("<?php echo _t('휴지통 내의 모든 댓글을 삭제합니다. 계속 하시겠습니까?');?>")) 64 64 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"); 66 66 request.onSuccess = function () { 67 67 window.location.reload(); … … 84 84 } 85 85 } 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/"); 87 87 request.onSuccess = function() { 88 88 document.getElementById('list-form').submit(); … … 97 97 if (!confirm("<?php echo _t('선택된 댓글을 복원합니다. 계속 하시겠습니까?');?>")) 98 98 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); 100 100 request.onSuccess = function () { 101 101 document.getElementById('list-form').submit(); … … 118 118 } 119 119 } 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/"); 121 121 request.onSuccess = function() { 122 122 document.getElementById('list-form').submit(); … … 271 271 </div> 272 272 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"> 274 274 <fieldset class="section"> 275 275 <legend><?php echo _t('삭제된 파일 보기 설정');?></legend> … … 293 293 </form> 294 294 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"> 296 296 <table class="data-inbox" cellspacing="0" cellpadding="0"> 297 297 <thead> … … 358 358 } 359 359 ?> 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> 361 361 </td> 362 362 <td class="content"> … … 387 387 } 388 388 ?> 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> 390 390 </td> 391 391 <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> 393 393 </td> 394 394 <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> 396 396 </td> 397 397 </tr> … … 454 454 <hr class="hidden" /> 455 455 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"> 457 457 <h2><?php echo _t('검색');?></h2> 458 458 … … 466 466 467 467 <div class="button-box"> 468 <a class="all-delete-button button" href="<?php echo $blogURL;?>/owner/ entry/trash/emptyTrash/?type=1" onclick="deleteCommentAll(); return false;" title="<?php echo _t('휴지통의 댓글을 한 번에 삭제합니다.');?>"><span class="text"><?php echo _t('휴지통 비우기');?></span></a>468 <a class="all-delete-button button" href="<?php echo $blogURL;?>/owner/communication/trash/emptyTrash/?type=1" onclick="deleteCommentAll(); return false;" title="<?php echo _t('휴지통의 댓글을 한 번에 삭제합니다.');?>"><span class="text"><?php echo _t('휴지통 비우기');?></span></a> 469 469 </div> 470 470 </div>
