diff --git a/modules/addon/tpl/addon_info.html b/modules/addon/tpl/addon_info.html index e07960da2..fd25975a1 100644 --- a/modules/addon/tpl/addon_info.html +++ b/modules/addon/tpl/addon_info.html @@ -5,7 +5,7 @@
- + @@ -17,7 +17,7 @@ - + @@ -25,7 +25,7 @@ - + - +
{$lang->title}
{$addon_info->title} ver. {$addon_info->version}
{$lang->homepage}
{$addon_info->homepage}
{$lang->regdate}
{zdate($addon_info->date, 'Y-m-d')}
{$lang->addon_license}
{nl2br(trim($addon_info->license))} diff --git a/modules/addon/tpl/addon_list.html b/modules/addon/tpl/addon_list.html index 9986bb717..225a8650c 100644 --- a/modules/addon/tpl/addon_list.html +++ b/modules/addon/tpl/addon_list.html @@ -24,7 +24,7 @@
{$val->title}
diff --git a/modules/addon/tpl/js/addon.js b/modules/addon/tpl/js/addon.js index 2189cfaff..3ff4dad01 100644 --- a/modules/addon/tpl/js/addon.js +++ b/modules/addon/tpl/js/addon.js @@ -3,15 +3,7 @@ * fo_addon이라는 id를 가지는 form에 인자로 주어진 addon값을 세팅후 실행 **/ function doToggleAddon(addon) { - var fo_obj = xGetElementById('fo_addon'); + var fo_obj = jQuery('#fo_addon').get(0); fo_obj.addon.value = addon; procFilter(fo_obj, toggle_activate_addon); } - -function toggleSectionCheckBox(obj, id) { - var box_list = xGetElementsByTagName('input', xGetElementById(id)); - if(typeof(box_list.length)=='undefined') return; - for(var i in box_list) { - box_list[i].checked = obj.checked; - } -} diff --git a/modules/addon/tpl/setup_addon.html b/modules/addon/tpl/setup_addon.html index 40dffe86f..0fccb37dd 100644 --- a/modules/addon/tpl/setup_addon.html +++ b/modules/addon/tpl/setup_addon.html @@ -11,7 +11,7 @@
- + @@ -23,7 +23,7 @@ - + diff --git a/modules/admin/tpl/config.html b/modules/admin/tpl/config.html index 81c1b2c8e..754115b74 100644 --- a/modules/admin/tpl/config.html +++ b/modules/admin/tpl/config.html @@ -17,7 +17,7 @@

{$lang->about_rewrite}

- + - + - + - + @@ -121,7 +121,7 @@

{$lang->about_cmd_lang_select}

- + @@ -136,7 +136,7 @@

{$lang->about_recompile_cache}

- + diff --git a/modules/admin/tpl/index.html b/modules/admin/tpl/index.html index fcbeed1e3..b1ed97bfc 100644 --- a/modules/admin/tpl/index.html +++ b/modules/admin/tpl/index.html @@ -9,7 +9,7 @@
{$addon_info->title} ver. {$addon_info->version} ({zdate($addon_info->date, 'Y-m-d')})
{$addon_info->homepage} 
{$lang->use_optimizer}
checked="checked" /> @@ -35,7 +35,7 @@

{$lang->about_lang_env}

{$lang->time_zone}
{$lang->use_ssl}
- + @@ -17,7 +17,7 @@ - + @@ -25,7 +25,7 @@ - + @@ -33,7 +33,7 @@ - + @@ -53,7 +53,7 @@ - + - + - + @@ -136,7 +136,7 @@ - + @@ -148,7 +148,7 @@ - + @@ -160,7 +160,7 @@ - + @@ -179,7 +179,7 @@ - + diff --git a/modules/admin/tpl/js/admin.js b/modules/admin/tpl/js/admin.js index a1353e981..706b0b047 100644 --- a/modules/admin/tpl/js/admin.js +++ b/modules/admin/tpl/js/admin.js @@ -4,13 +4,13 @@ * @brief admin 모듈의 javascript **/ -xAddEventListener(document,'click',showXESubMenu); +jQuery(document).click(showXESubMenu); var openedSubMenus = null; + function showXESubMenu(evt) { - var e = new xEvent(evt); - if(e.target && /^adminMainMenu/.test(e.target.id)) { - var key = e.target.id.split('_')[1]; - var obj = xGetElementById('adminSubMenu'+key); + if(evt.target && /^adminMainMenu/.test(evt.target.id)) { + var key = evt.target.id.split('_')[1]; + var obj = jQuery('#adminSubMenu'+key).get(0); if(!obj) return; if(openedSubMenus) openedSubMenus.style.visibility = 'hidden'; if(openedSubMenus == obj) { @@ -31,8 +31,8 @@ function showXESubMenu(evt) { // open/close Main Navigator function toggleXEMainNavigator() { - var obj = xGetElementsByClassName('xeAdmin')[0]; - var btnObj = xGetElementById('btnFolder'); + var obj = jQuery('.xeAdmin').get(0); + var btnObj = jQuery('#btnFolder').get(0); if(!obj) return; if(obj.style.display == 'none') { obj.style.display = 'block'; diff --git a/modules/board/skins/xe_board/js/board.js b/modules/board/skins/xe_board/js/board.js index 0c33797dd..afade30cd 100644 --- a/modules/board/skins/xe_board/js/board.js +++ b/modules/board/skins/xe_board/js/board.js @@ -104,9 +104,7 @@ function completeDeleteTrackback(ret_obj) { /* 카테고리 이동 */ function doChangeCategory() { - var sel_obj = xGetElementById("board_category"); - var sel_idx = sel_obj.selectedIndex; - var category_srl = sel_obj.options[sel_idx].value; + var category_srl = jQuery('#board_category option:selected').val(); location.href = decodeURI(current_url).setQuery('category',category_srl); } diff --git a/modules/board/skins/xe_default/js/board.js b/modules/board/skins/xe_default/js/board.js index 0c33797dd..afade30cd 100644 --- a/modules/board/skins/xe_default/js/board.js +++ b/modules/board/skins/xe_default/js/board.js @@ -104,9 +104,7 @@ function completeDeleteTrackback(ret_obj) { /* 카테고리 이동 */ function doChangeCategory() { - var sel_obj = xGetElementById("board_category"); - var sel_idx = sel_obj.selectedIndex; - var category_srl = sel_obj.options[sel_idx].value; + var category_srl = jQuery('#board_category option:selected').val(); location.href = decodeURI(current_url).setQuery('category',category_srl); } diff --git a/modules/board/skins/xe_guestbook/js/board.js b/modules/board/skins/xe_guestbook/js/board.js index 751fa4948..4cb59078e 100644 --- a/modules/board/skins/xe_guestbook/js/board.js +++ b/modules/board/skins/xe_guestbook/js/board.js @@ -104,9 +104,7 @@ function completeDeleteTrackback(ret_obj) { /* 카테고리 이동 */ function doChangeCategory() { - var sel_obj = xGetElementById("board_category"); - var sel_idx = sel_obj.selectedIndex; - var category_srl = sel_obj.options[sel_idx].value; + var category_srl = jQuery('#board_category option:selected').val(); location.href = decodeURI(current_url).setQuery('category',category_srl); } diff --git a/modules/board/tpl/category_info.html b/modules/board/tpl/category_info.html index 5fc1e4341..e679da5e1 100644 --- a/modules/board/tpl/category_info.html +++ b/modules/board/tpl/category_info.html @@ -3,7 +3,7 @@
{$lang->env_information}
{$lang->current_version}
{$current_version}
{$lang->current_path}
{$installed_path}/
{$lang->time_zone}
{$val}
{$lang->use_rewrite}
{$lang->use}{$lang->notuse}
{$lang->use_optimizer}
{$lang->use}{$lang->notuse}
Language
{$val}
{$lang->qmail_compatibility}
{$lang->use}{$lang->notuse}
{$val->title} ({$val->module}) {$lang->module_info} @@ -102,7 +102,7 @@
{$lang->newest_news}
{$val->title} {zdate($val->date,"Y-m-d")} @@ -124,7 +124,7 @@
{$lang->member} {number_format($status->member->yesterday)} {number_format($status->member->today)}{number_format($status->document->today)} {number_format($status->document->total)}
{$lang->comment} {number_format($status->comment->yesterday)} {number_format($status->comment->today)}{number_format($status->trackback->today)} {number_format($status->trackback->total)}
{$lang->file} {number_format($status->file->yesterday)} {number_format($status->file->today)}{number_format($status->documentDeclared->today)} {number_format($status->documentDeclared->total)}
{$lang->comment.' '.$lang->cmd_declare} {number_format($status->commentDeclared->yesterday)} {number_format($status->commentDeclared->today)}
{$val->title}
- + @@ -32,7 +32,7 @@

{$lang->about_category_group_srls}

- + - + - + - + @@ -39,7 +39,7 @@   - + @@ -79,7 +79,7 @@ - +
{$lang->parent_category_title}
{$category_info->parent_category_title}
diff --git a/modules/board/tpl/index.html b/modules/board/tpl/index.html index 6f0323789..810c93f96 100644 --- a/modules/board/tpl/index.html +++ b/modules/board/tpl/index.html @@ -37,7 +37,7 @@
{$no} diff --git a/modules/board/tpl/js/board_admin.js b/modules/board/tpl/js/board_admin.js index 0f38ecb1f..b3d33fb2f 100644 --- a/modules/board/tpl/js/board_admin.js +++ b/modules/board/tpl/js/board_admin.js @@ -80,15 +80,11 @@ function doChangeCategory(fo_obj) { /* 일괄 설정 */ function doCartSetup(act_type) { - var fo_obj = xGetElementById('fo_list'); var module_srl = new Array(); - if(typeof(fo_obj.cart.length)=='undefined') { - if(fo_obj.cart.checked) module_srl[module_srl.length] = fo_obj.cart.value; - } else { - for(var i=0;i
{$lang->skin}
{$skin_info->title}
{$lang->skin_author}
@@ -25,7 +25,7 @@
{$lang->homepage}
{$skin_info->homepage}
{$lang->date}
{zdate($skin_info->date, 'Y-m-d')} 
{$lang->description}
{nl2br(trim($skin_info->description))}
{$group}
{$val->title}
@@ -135,7 +135,7 @@ - + diff --git a/modules/comment/tpl/comment_list.html b/modules/comment/tpl/comment_list.html index b2a45f9f5..2245ff497 100644 --- a/modules/comment/tpl/comment_list.html +++ b/modules/comment/tpl/comment_list.html @@ -35,7 +35,7 @@ - + diff --git a/modules/comment/tpl/comment_module_config.html b/modules/comment/tpl/comment_module_config.html index 6db771a78..6b88410e6 100644 --- a/modules/comment/tpl/comment_module_config.html +++ b/modules/comment/tpl/comment_module_config.html @@ -12,7 +12,7 @@

{$lang->about_comment_count}

- + diff --git a/modules/comment/tpl/declared_list.html b/modules/comment/tpl/declared_list.html index 1196f17f1..4fc17ae10 100644 --- a/modules/comment/tpl/declared_list.html +++ b/modules/comment/tpl/declared_list.html @@ -24,7 +24,7 @@ - + diff --git a/modules/comment/tpl/js/comment_admin.js b/modules/comment/tpl/js/comment_admin.js index a4093b0fc..57b99158c 100644 --- a/modules/comment/tpl/js/comment_admin.js +++ b/modules/comment/tpl/js/comment_admin.js @@ -1,31 +1,14 @@ -function doCheckAll(bToggle) { - var fo_obj = xGetElementById('fo_list'); - if(typeof(bToggle) == "undefined") bToggle = false; - for(var i=0;i
{$no} {htmlspecialchars($module_list[$val->module_srl]->browser_title)}  {htmlspecialchars($val->nick_name)}
{$no} {$oComment->getSummary(100)} {$oComment->getNickName()}
- + - + @@ -50,5 +50,5 @@ diff --git a/modules/communication/tpl/js/communication_admin.js b/modules/communication/tpl/js/communication_admin.js index 7b888cd66..f98c745ac 100644 --- a/modules/communication/tpl/js/communication_admin.js +++ b/modules/communication/tpl/js/communication_admin.js @@ -9,8 +9,6 @@ function doGetSkinColorset(skin) { function doDisplaySkinColorset(ret_obj) { var tpl = ret_obj["tpl"]; - var old_height = xHeight("communication_colorset"); - xInnerHtml("communication_colorset", tpl); - var new_height = xHeight("communication_colorset"); + jQuery('#communication_colorset').html(tpl); } diff --git a/modules/counter/tpl/js/counter_admin.js b/modules/counter/tpl/js/counter_admin.js index 5ae0adfd1..ee8a5fd8e 100644 --- a/modules/counter/tpl/js/counter_admin.js +++ b/modules/counter/tpl/js/counter_admin.js @@ -1,6 +1,6 @@ // 관리자 페이지에서 날짜 이동 function changeSelectedDate(selected_date) { - var fo_obj = xGetElementById('fo_counter'); + var fo_obj = jQuery('#fo_counter').get(0); fo_obj.selected_date.value = selected_date; fo_obj.submit(); } diff --git a/modules/document/tpl/checked_list.html b/modules/document/tpl/checked_list.html index a851af496..3d3699b4c 100644 --- a/modules/document/tpl/checked_list.html +++ b/modules/document/tpl/checked_list.html @@ -74,7 +74,7 @@ diff --git a/modules/document/tpl/declared_list.html b/modules/document/tpl/declared_list.html index a932424f6..cb2518f01 100644 --- a/modules/document/tpl/declared_list.html +++ b/modules/document/tpl/declared_list.html @@ -27,7 +27,7 @@ - + - + - + diff --git a/modules/document/tpl/js/document_admin.js b/modules/document/tpl/js/document_admin.js index 55006658e..442f0a5ce 100644 --- a/modules/document/tpl/js/document_admin.js +++ b/modules/document/tpl/js/document_admin.js @@ -1,12 +1,3 @@ -function doCheckAll(bToggle) { - var fo_obj = xGetElementById('fo_list'); - if(typeof(bToggle) == "undefined") bToggle = false; - for(var i=0;i \ No newline at end of file
{$lang->editor_skin}
{$lang->colorset}
{$no} isCarted())-->checked="checked"/> @@ -48,7 +48,7 @@ {$oDocument->getRegdate("Y-m-d")}
{$lang->cmd_cancel_declare} {$lang->cmd_manage_document} diff --git a/modules/document/tpl/document_config.html b/modules/document/tpl/document_config.html index 216323389..3b9fbe2ed 100644 --- a/modules/document/tpl/document_config.html +++ b/modules/document/tpl/document_config.html @@ -3,7 +3,7 @@
- + @@ -12,13 +12,13 @@ thumbnail_type == 'ratio')-->checked="checked"/> {$lang->thumbnail_ratio} - +
{$lang->thumbnail_type}
- +
diff --git a/modules/document/tpl/document_list.html b/modules/document/tpl/document_list.html index 420bbef4f..97284813d 100644 --- a/modules/document/tpl/document_list.html +++ b/modules/document/tpl/document_list.html @@ -36,7 +36,7 @@
{$no} {htmlspecialchars($module_list[$oDocument->get('module_srl')]->browser_title)}- {$oDocument->getNickName()}