diff --git a/.gitignore b/.gitignore index c4b7f9c39..3a8b89b7e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ data dbconfig.php -install.bak test.php diff --git a/_common.php b/_common.php index 78410ecc8..aa6efdf8b 100644 --- a/_common.php +++ b/_common.php @@ -1,4 +1,3 @@ \ No newline at end of file diff --git a/_head.php b/_head.php index bd93452e8..0566ac74d 100644 --- a/_head.php +++ b/_head.php @@ -1,9 +1,5 @@ \ No newline at end of file diff --git a/_tail.php b/_tail.php index d81f14910..a2e7bf983 100644 --- a/_tail.php +++ b/_tail.php @@ -1,8 +1,5 @@ \ No newline at end of file diff --git a/adm/_common.php b/adm/_common.php index 0803ce978..54ffa8616 100644 --- a/adm/_common.php +++ b/adm/_common.php @@ -1,6 +1,5 @@ \ No newline at end of file diff --git a/adm/admin.head.php b/adm/admin.head.php index 4974c706a..28a6c019c 100644 --- a/adm/admin.head.php +++ b/adm/admin.head.php @@ -1,9 +1,9 @@ - - + +
본문 바로가기
- +
@@ -91,13 +91,13 @@ function textarea_size(fld, size)
diff --git a/head.sub.php b/head.sub.php index 030053b66..5ff526acd 100644 --- a/head.sub.php +++ b/head.sub.php @@ -1,6 +1,6 @@ --> <?=$g4['title']?> -"> +"> -"> +"> - - - -$value) { - echo "\n"; - } -} -?> + + + - - - + \ No newline at end of file diff --git a/index.php b/index.php index eb1203e47..ff6e9e078 100644 --- a/index.php +++ b/index.php @@ -1,11 +1,37 @@ + +
Sharing All Possibilities
+ + + +
+ 환경설정의 최신글 스킨경로를 기본 스킨으로 합니다. + + // 사용방법 + // latest(스킨, 게시판아이디, 출력라인, 글자수); + echo latest("neo", $row['bo_table'], 5, 25); + ?> +
+ + + + diff --git a/js/capslock.js b/js/capslock.js index 79c41da72..076fbd3ca 100644 --- a/js/capslock.js +++ b/js/capslock.js @@ -1,8 +1,5 @@ if (typeof(CAPSLOCK_JS) == 'undefined') // 한번만 실행 { - if (typeof g4_path == 'undefined') - alert('g4_path 변수가 선언되지 않았습니다. js/capslock.js'); - var CAPSLOCK_JS = true; var capslock_delay = 3000; // "CapsLock 이 켜져 있습니다." 이미지를 몇초간 출력할 것인지? @@ -66,5 +63,5 @@ if (typeof(CAPSLOCK_JS) == 'undefined') // 한번만 실행 return obj.offsetTop + obj.clientTop + get_real_top(obj.offsetParent); } - document.write(""); + document.write(""); } \ No newline at end of file diff --git a/js/common.js b/js/common.js index b6def5d00..92f5e331e 100644 --- a/js/common.js +++ b/js/common.js @@ -1,6 +1,6 @@ // 전역 변수 var errmsg = ""; -var errfld; +var errfld = null; // 필드 검사 function check_field(fld, msg) @@ -296,28 +296,6 @@ function win_zip(frm_name, frm_zip1, frm_zip2, frm_addr1, frm_addr2) win_open(url, "winZip", "left=50,top=50,width=616,height=460,scrollbars=1"); } -// 쪽지 창 -function win_memo(url) -{ - if (!url) - url = g4_path + "/" + g4_bbs + "/memo.php"; - win_open(url, "winMemo", "left=50,top=50,width=620,height=460,scrollbars=1"); -} - -// 포인트 창 -function win_point(url) -{ - win_open(g4_path + "/" + g4_bbs + "/point.php", "winPoint", "left=20, top=20, width=616, height=635, scrollbars=1"); -} - -// 스크랩 창 -function win_scrap(url) -{ - if (!url) - url = g4_path + "/" + g4_bbs + "/scrap.php"; - win_open(url, "scrap", "left=20, top=20, width=616, height=500, scrollbars=1"); -} - // 새로운 패스워드 분실 창 : 100902 function win_password_lost() { @@ -345,14 +323,6 @@ function win_formmail(mb_id, name, email) win_open(g4_path+"/" + g4_bbs + "/formmail.php?mb_id="+mb_id+"&name="+encodeURIComponent(name)+"&email="+email, "winFormmail", "left=50, top=50, width=600, height=480, scrollbars=0"); } -// 설문조사 창 -function win_poll(url) -{ - if (!url) - url = ""; - win_open(url, "winPoll", "left=50, top=50, width=616, height=500, scrollbars=1"); -} - // 자기소개 창 function win_profile(mb_id) { @@ -479,4 +449,124 @@ $(document).ready(function(){ win_password_lost(this.href); return false; }); +}); + +/** + * 포인트 창 + **/ +var win_point = function(href) { + var new_win = window.open(href, 'win_point', 'left=100,top=100,width=600, height=600, scrollbars=1'); + new_win.focus(); +} + +/** + * 쪽지 창 + **/ +var win_memo = function(href) { + var new_win = window.open(href, 'win_memo', 'left=100,top=100,width=620,height=500,scrollbars=1'); + new_win.focus(); +} + +/** + * 메일 창 + **/ +var win_email = function(href) { + var new_win = window.open(href, 'win_email', 'left=100,top=100,width=600,height=580,scrollbars=0'); + new_win.focus(); +} + +/** + * 자기소개 창 + **/ +var win_profile = function(href) { + var new_win = window.open(href, 'win_profile', 'left=100,top=100,width=620,height=510,scrollbars=1'); + new_win.focus(); +} + +/** + * 스크랩 창 + **/ +var win_scrap = function(href) { + var new_win = window.open(href, 'win_scrap', 'left=100,top=100,width=600,height=600,scrollbars=1'); + new_win.focus(); +} + +/** + * 홈페이지 창 + **/ +var win_homepage = function(href) { + var new_win = window.open(href, 'win_homepage', ''); + new_win.focus(); +} + +/** + * 우편번호 창 + **/ +var win_zip = function(href) { + var new_win = window.open(href, 'win_zip', 'width=616, height=460, scrollbars=1'); + new_win.focus(); +} + +/** + * 새로운 패스워드 분실 창 : 101123 + **/ +win_password_lost = function(href) +{ + var new_win = window.open(href, 'win_password_lost', 'width=617, height=330, scrollbars=1'); + new_win.focus(); +} + +/** + * 설문조사 결과 + **/ +var win_poll = function(href) { + var new_win = window.open(href, 'win_poll', 'width=616, height=500, scrollbars=1'); + new_win.focus(); +} + +$(function(){ + $('.win_point').click(function() { + win_point(this.href); + return false; + }); + + $('.win_memo').click(function() { + win_memo(this.href); + return false; + }); + + $('.win_email').click(function() { + win_email(this.ref); + return false; + }); + + $('.win_scrap').click(function() { + win_scrap(this.href); + return false; + }); + + $('.win_profile').click(function() { + win_profile(this.ref); + return false; + }); + + $('.win_homepage').click(function() { + win_homepage(this.ref); + return false; + }); + + $('.win_zip_find').click(function() { + win_zip(this.href); + return false; + }); + + $('.win_password_lost').click(function() { + win_password_lost(this.href); + return false; + }); + + $('.win_poll').click(function() { + win_poll(this.href); + return false; + }); }); \ No newline at end of file diff --git a/js/sideview.js b/js/sideview.js index 779cfb6ba..4eb6e7121 100644 --- a/js/sideview.js +++ b/js/sideview.js @@ -2,8 +2,6 @@ if (typeof(SIDEVIEW_JS) == 'undefined') // 한번만 실행 { if (typeof g4_is_member == 'undefined') alert('g4_is_member 변수가 선언되지 않았습니다. js/sideview.js'); - if (typeof g4_path == 'undefined') - alert('g4_path 변수가 선언되지 않았습니다. js/sideview.js'); var SIDEVIEW_JS = true; @@ -75,7 +73,7 @@ if (typeof(SIDEVIEW_JS) == 'undefined') // 한번만 실행 // 쪽지보내기 if (mb_id) // 불여우 자바스크립트창이 뜨는 오류를 수정 - this.insertTail("memo", "쪽지보내기"); + this.insertTail("memo", "쪽지보내기"); // 메일보내기 if (email) this.insertTail("mail", "메일보내기"); @@ -90,21 +88,21 @@ if (typeof(SIDEVIEW_JS) == 'undefined') // 한번만 실행 // 게시판테이블 아이디가 넘어왔을 경우 if (g4_bo_table) { if (mb_id) // 회원일 경우 아이디로 검색 - this.insertTail("mb_id", "아이디로 검색"); + this.insertTail("mb_id", "아이디로 검색"); else // 비회원일 경우 이름으로 검색 - this.insertTail("name", "이름으로 검색"); + this.insertTail("name", "이름으로 검색"); } if (mb_id) - this.insertTail("new", "전체게시물"); + this.insertTail("new", "전체게시물"); // 최고관리자일 경우 if (g4_is_admin == "super") { // 회원정보변경 if (mb_id) - this.insertTail("modify", "회원정보변경"); + this.insertTail("modify", "회원정보변경"); // 포인트내역 if (mb_id) - this.insertTail("point", "포인트내역"); + this.insertTail("point", "포인트내역"); } } diff --git a/lib/common.lib.php b/lib/common.lib.php index 13cc891c6..980b97933 100644 --- a/lib/common.lib.php +++ b/lib/common.lib.php @@ -274,10 +274,10 @@ function get_file($bo_table, $wr_id) while ($row = sql_fetch_array($result)) { $no = $row['bf_no']; - $file[$no]['href'] = "./download.php?bo_table=$bo_table&wr_id=$wr_id&no=$no" . $qstr; + $file[$no]['href'] = G4_BBS_URL."/download.php?bo_table=$bo_table&wr_id=$wr_id&no=$no" . $qstr; $file[$no]['download'] = $row['bf_download']; // 4.00.11 - 파일 path 추가 - $file[$no]['path'] = $g4['path'].'/data/file/'.$bo_table; + $file[$no]['path'] = G4_DATA_URL.'/file/'.$bo_table; //$file[$no]['size'] = get_filesize("{$file[$no]['path']}/$row['bf_file']"); $file[$no]['size'] = get_filesize($row['bf_filesize']); //$file[$no]['datetime'] = date("Y-m-d H:i:s", @filemtime("$g4['path']/data/file/$bo_table/$row['bf_file']")); @@ -398,9 +398,9 @@ function get_list($write_row, $board, $skin_path, $subject_len=40) $list['icon_link'] = '관련링크'; // 분류명 링크 - $list['ca_name_href'] = $g4['bbs_path'].'/board.php?bo_table='.$board['bo_table'].'&sca='.urlencode($list['ca_name']); + $list['ca_name_href'] = G4_BBS_URL.'/board.php?bo_table='.$board['bo_table'].'&sca='.urlencode($list['ca_name']); - $list['href'] = $g4['bbs_path'].'/board.php?bo_table='.$board['bo_table'].'&wr_id='.$list['wr_id'].$qstr; + $list['href'] = G4_BBS_URL.'/board.php?bo_table='.$board['bo_table'].'&wr_id='.$list['wr_id'].$qstr; $list['comment_href'] = $list['href']; $list['icon_new'] = ''; @@ -416,10 +416,9 @@ function get_list($write_row, $board, $skin_path, $subject_len=40) $list['icon_secret'] = '비밀글'; // 링크 - for ($i=1; $i<=$g4['link_count']; $i++) - { + for ($i=1; $i<=G4_LINK_COUNT; $i++) { $list['link'][$i] = set_http(get_text($list["wr_link{$i}"])); - $list['link_href'][$i] = $g4['bbs_path'].'/link.php?bo_table='.$board['bo_table'].'&wr_id='.$list['wr_id'].'&no='.$i.$qstr; + $list['link_href'][$i] = G4_BBS_URL.'/link.php?bo_table='.$board['bo_table'].'&wr_id='.$list['wr_id'].'&no='.$i.$qstr; $list['link_hit'][$i] = (int)$list["wr_link{$i}_hit"]; } @@ -835,19 +834,6 @@ function get_group_select($name, $selected='', $event='') } -// 스킨디렉토리를 SELECT 형식으로 얻음 -function get_skin_select($skin_gubun, $id, $name, $selected='', $event='') -{ - $skins = get_skin_dir($skin_gubun); - $str = ";"> - - - - - - -
- - Total - - -
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "; } ?> - -
번호제   목글쓴이날짜조회추천비추천
- 공지"; - else if ($wr_id == $list[$i]['wr_id']) // 현재위치 - echo "{$list[$i]['num']}"; - else - echo $list[$i]['num']; - ?> - - [{$list[$i]['ca_name']}] "; - } - - if ($list[$i]['is_notice']) - echo "{$list[$i]['subject']}"; - else - echo "{$list[$i]['subject']}"; - - if ($list[$i]['comment_cnt']) - echo " {$list[$i]['comment_cnt']}"; - - // if ($list[$i]['link']['count']) { echo "[{$list[$i]['link']['count']}]"; } - // if ($list[$i]['file']['count']) { echo "<{$list[$i]['file']['count']}>"; } - - echo " " . $list[$i]['icon_new']; - echo " " . $list[$i]['icon_file']; - echo " " . $list[$i]['icon_link']; - echo " " . $list[$i]['icon_hot']; - echo " " . $list[$i]['icon_secret']; - echo $nobr_end; - ?> -
게시물이 없습니다.
-
- -
-
- - - - - - - - -
- -
- -
-
- - -
- "; } ?> - ", $write_pages); - $write_pages = str_replace("이전", "", $write_pages); - $write_pages = str_replace("다음", "", $write_pages); - $write_pages = str_replace("맨끝", "", $write_pages); - //$write_pages = preg_replace("/([0-9]*)<\/span>/", "$1", $write_pages); - $write_pages = preg_replace("/([0-9]*)<\/b>/", "$1", $write_pages); - ?> - - "; } ?> -
- - - - - - - - - - - - diff --git a/mobile/skin/board/basic/view.skin.php b/mobile/skin/board/basic/view.skin.php deleted file mode 100644 index 4c221eb2d..000000000 --- a/mobile/skin/board/basic/view.skin.php +++ /dev/null @@ -1,175 +0,0 @@ - -
 
- - -
- - -
-
- - 작성일 : -
- - -
- - "; } ?> - "; } ?> - - "; } ?> - "; ?> - "; } ?> - "; } ?> - "; } ?> - "; } ?> - -
-
- -
- - - - - -
-
- - -
-
- "; } ?> -
-
-
- - -> - - - - -"; - } -} - -// 링크 -$cnt = 0; -for ($i=1; $i<=$g4['link_count']; $i++) { - if ($view['link'][$i]) { - $cnt++; - $link = cut_str($view['link'][$i], 70); - echo ""; - } -} -?> - - - -"; } // 서명 출력 ?> -
-
-  글쓴이 : - -
-
- 조회 : -   추천 : -   비추천 : -   -
-
"; - echo "  "; - echo ""; - echo " {$view['file'][$i]['source']} ({$view['file'][$i]['size']})"; - echo " [{$view['file'][$i]['download']}]"; - echo " DATE : {$view['file'][$i]['datetime']}"; - echo "
"; - echo "  "; - echo ""; - echo " {$link}"; - echo " [{$view['link_hit'][$i]}]"; - echo "
- "; - } - ?> - - - - - - - - -
-
비추천 :
-
-
- - - -
-
추천 :
-
-
- - -
$signature
-
- - - -
 
- -
-
-  "; } ?> -  "; } ?> -
- - -
- -
-
- -
 
- -

- - - - - - diff --git a/mobile/skin/board/basic/view_comment.skin.php b/mobile/skin/board/basic/view_comment.skin.php deleted file mode 100644 index 1b6aa323c..000000000 --- a/mobile/skin/board/basic/view_comment.skin.php +++ /dev/null @@ -1,313 +0,0 @@ - - - - - -
- - - - - - - -
- - - - - - - - - - - - - -
-
-
-
- - -
-
- {$list[$i]['ip']}"; } ?> - 답변 "; } ?> - 수정 "; } ?> - 삭제 "; } ?> -   -
-
- - -
- * "; - $str = $list[$i]['content']; - if (strstr($list[$i]['wr_option'], "secret")) - $str = "$str"; - - $str = preg_replace("/\[\\]/i", "", $str); - // FLASH XSS 공격에 의해 주석 처리 - 110406 - //$str = preg_replace("/\[\\]/i", "", $str); - $str = preg_replace("/\[\]*\>[^\s]*\<\/a\>\]/i", "", $str); - echo $str; - ?> -
- - - - "> -
- -
- -
- - - - - - - - - diff --git a/mobile/skin/board/basic/write.skin.php b/mobile/skin/board/basic/write.skin.php deleted file mode 100644 index 86ea3bd80..000000000 --- a/mobile/skin/board/basic/write.skin.php +++ /dev/null @@ -1,385 +0,0 @@ -"; - echo cheditor1('wr_content', '100%', '250'); -} -?> - -
 
- - - - - -
- - - - - - - - - - - - -
- - -
-
:: ::
-
-
- - - --- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -공지 '; - } - - if ($is_html) { - if ($is_dhtml_editor) { - $option_hidden .= ''; - } else { - $option .= 'html '; - } - } - - if ($is_secret) { - if ($is_admin || $is_secret==1) { - $option .= '비밀글 '; - } else { - $option_hidden .= ''; - } - } - - if ($is_mail) { - $option .= '답변메일받기 '; - } -} - -echo $option_hidden; -if ($option) { -?> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
이 름
패스워드>
이메일
홈페이지
옵 션
분 류
제 목
- - - - - - - - -
- - - 글자
- - - -
링크 #
- - - - -
- 파일첨부
- - -
-
-
  왼쪽의 글자를 입력하세요.
- - - - - -
-   -
- -
-
- - - - - - diff --git a/mobile/skin/board/neo/_common.php b/mobile/skin/board/neo/_common.php deleted file mode 100644 index d60485262..000000000 --- a/mobile/skin/board/neo/_common.php +++ /dev/null @@ -1,4 +0,0 @@ - \ No newline at end of file diff --git a/mobile/skin/board/neo/img/btn_admin.gif b/mobile/skin/board/neo/img/btn_admin.gif deleted file mode 100644 index 63a26ac55..000000000 Binary files a/mobile/skin/board/neo/img/btn_admin.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_close.gif b/mobile/skin/board/neo/img/btn_close.gif deleted file mode 100644 index ce3d44e61..000000000 Binary files a/mobile/skin/board/neo/img/btn_close.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_copy.gif b/mobile/skin/board/neo/img/btn_copy.gif deleted file mode 100644 index 75ed779fa..000000000 Binary files a/mobile/skin/board/neo/img/btn_copy.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_delete.gif b/mobile/skin/board/neo/img/btn_delete.gif deleted file mode 100644 index 31fda2b46..000000000 Binary files a/mobile/skin/board/neo/img/btn_delete.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_down.gif b/mobile/skin/board/neo/img/btn_down.gif deleted file mode 100644 index ac00c3291..000000000 Binary files a/mobile/skin/board/neo/img/btn_down.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_file_add.gif b/mobile/skin/board/neo/img/btn_file_add.gif deleted file mode 100644 index eb597349f..000000000 Binary files a/mobile/skin/board/neo/img/btn_file_add.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_file_minus.gif b/mobile/skin/board/neo/img/btn_file_minus.gif deleted file mode 100644 index 7c2d7879d..000000000 Binary files a/mobile/skin/board/neo/img/btn_file_minus.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_good.gif b/mobile/skin/board/neo/img/btn_good.gif deleted file mode 100644 index e43f18feb..000000000 Binary files a/mobile/skin/board/neo/img/btn_good.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_init.gif b/mobile/skin/board/neo/img/btn_init.gif deleted file mode 100644 index 4718f679c..000000000 Binary files a/mobile/skin/board/neo/img/btn_init.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_list.gif b/mobile/skin/board/neo/img/btn_list.gif deleted file mode 100644 index 821916156..000000000 Binary files a/mobile/skin/board/neo/img/btn_list.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_list_search.gif b/mobile/skin/board/neo/img/btn_list_search.gif deleted file mode 100644 index f80239251..000000000 Binary files a/mobile/skin/board/neo/img/btn_list_search.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_modify.gif b/mobile/skin/board/neo/img/btn_modify.gif deleted file mode 100644 index 461170f59..000000000 Binary files a/mobile/skin/board/neo/img/btn_modify.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_move.gif b/mobile/skin/board/neo/img/btn_move.gif deleted file mode 100644 index 86aea4e80..000000000 Binary files a/mobile/skin/board/neo/img/btn_move.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_my_menu.gif b/mobile/skin/board/neo/img/btn_my_menu.gif deleted file mode 100644 index e45812569..000000000 Binary files a/mobile/skin/board/neo/img/btn_my_menu.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_next.gif b/mobile/skin/board/neo/img/btn_next.gif deleted file mode 100644 index 9e3739fb6..000000000 Binary files a/mobile/skin/board/neo/img/btn_next.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_prev.gif b/mobile/skin/board/neo/img/btn_prev.gif deleted file mode 100644 index a406e44d6..000000000 Binary files a/mobile/skin/board/neo/img/btn_prev.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_reply.gif b/mobile/skin/board/neo/img/btn_reply.gif deleted file mode 100644 index 03fe1bf18..000000000 Binary files a/mobile/skin/board/neo/img/btn_reply.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_rss.gif b/mobile/skin/board/neo/img/btn_rss.gif deleted file mode 100644 index c7bad3cb1..000000000 Binary files a/mobile/skin/board/neo/img/btn_rss.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_scrap.gif b/mobile/skin/board/neo/img/btn_scrap.gif deleted file mode 100644 index 9f935bdd7..000000000 Binary files a/mobile/skin/board/neo/img/btn_scrap.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_search.gif b/mobile/skin/board/neo/img/btn_search.gif deleted file mode 100644 index 6bf8cbf6c..000000000 Binary files a/mobile/skin/board/neo/img/btn_search.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_select_copy.gif b/mobile/skin/board/neo/img/btn_select_copy.gif deleted file mode 100644 index 7c887d88c..000000000 Binary files a/mobile/skin/board/neo/img/btn_select_copy.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_select_delete.gif b/mobile/skin/board/neo/img/btn_select_delete.gif deleted file mode 100644 index 058d92bad..000000000 Binary files a/mobile/skin/board/neo/img/btn_select_delete.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_select_move.gif b/mobile/skin/board/neo/img/btn_select_move.gif deleted file mode 100644 index 1b31a390f..000000000 Binary files a/mobile/skin/board/neo/img/btn_select_move.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_trackback.gif b/mobile/skin/board/neo/img/btn_trackback.gif deleted file mode 100644 index f0fcc061d..000000000 Binary files a/mobile/skin/board/neo/img/btn_trackback.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_up.gif b/mobile/skin/board/neo/img/btn_up.gif deleted file mode 100644 index 965bf7508..000000000 Binary files a/mobile/skin/board/neo/img/btn_up.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/btn_write.gif b/mobile/skin/board/neo/img/btn_write.gif deleted file mode 100644 index 16830ced6..000000000 Binary files a/mobile/skin/board/neo/img/btn_write.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_bg.gif b/mobile/skin/board/neo/img/co_bg.gif deleted file mode 100644 index ab5f9c5fc..000000000 Binary files a/mobile/skin/board/neo/img/co_bg.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_btn_delete.gif b/mobile/skin/board/neo/img/co_btn_delete.gif deleted file mode 100644 index cd493f9ef..000000000 Binary files a/mobile/skin/board/neo/img/co_btn_delete.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_btn_down.gif b/mobile/skin/board/neo/img/co_btn_down.gif deleted file mode 100644 index ac00c3291..000000000 Binary files a/mobile/skin/board/neo/img/co_btn_down.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_btn_good.gif b/mobile/skin/board/neo/img/co_btn_good.gif deleted file mode 100644 index 67bd00d95..000000000 Binary files a/mobile/skin/board/neo/img/co_btn_good.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_btn_good2.gif b/mobile/skin/board/neo/img/co_btn_good2.gif deleted file mode 100644 index f5c4b7dbc..000000000 Binary files a/mobile/skin/board/neo/img/co_btn_good2.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_btn_good_write.gif b/mobile/skin/board/neo/img/co_btn_good_write.gif deleted file mode 100644 index 48753a3be..000000000 Binary files a/mobile/skin/board/neo/img/co_btn_good_write.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_btn_good_write2.gif b/mobile/skin/board/neo/img/co_btn_good_write2.gif deleted file mode 100644 index cc2c7a29a..000000000 Binary files a/mobile/skin/board/neo/img/co_btn_good_write2.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_btn_init.gif b/mobile/skin/board/neo/img/co_btn_init.gif deleted file mode 100644 index 4718f679c..000000000 Binary files a/mobile/skin/board/neo/img/co_btn_init.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_btn_modify.gif b/mobile/skin/board/neo/img/co_btn_modify.gif deleted file mode 100644 index c3da0006a..000000000 Binary files a/mobile/skin/board/neo/img/co_btn_modify.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_btn_reply.gif b/mobile/skin/board/neo/img/co_btn_reply.gif deleted file mode 100644 index 305a9b8c5..000000000 Binary files a/mobile/skin/board/neo/img/co_btn_reply.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_btn_up.gif b/mobile/skin/board/neo/img/co_btn_up.gif deleted file mode 100644 index 965bf7508..000000000 Binary files a/mobile/skin/board/neo/img/co_btn_up.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_btn_write.gif b/mobile/skin/board/neo/img/co_btn_write.gif deleted file mode 100644 index e8f4ebb07..000000000 Binary files a/mobile/skin/board/neo/img/co_btn_write.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/co_title_bg.gif b/mobile/skin/board/neo/img/co_title_bg.gif deleted file mode 100644 index b55597bcf..000000000 Binary files a/mobile/skin/board/neo/img/co_title_bg.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/down.gif b/mobile/skin/board/neo/img/down.gif deleted file mode 100644 index 4b0106720..000000000 Binary files a/mobile/skin/board/neo/img/down.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/good_bg.gif b/mobile/skin/board/neo/img/good_bg.gif deleted file mode 100644 index a573e0c66..000000000 Binary files a/mobile/skin/board/neo/img/good_bg.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/icon_date.gif b/mobile/skin/board/neo/img/icon_date.gif deleted file mode 100644 index 0529b0ead..000000000 Binary files a/mobile/skin/board/neo/img/icon_date.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/icon_file.gif b/mobile/skin/board/neo/img/icon_file.gif deleted file mode 100644 index 23a809a0b..000000000 Binary files a/mobile/skin/board/neo/img/icon_file.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/icon_good.gif b/mobile/skin/board/neo/img/icon_good.gif deleted file mode 100644 index 4ec83e3a5..000000000 Binary files a/mobile/skin/board/neo/img/icon_good.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/icon_hot.gif b/mobile/skin/board/neo/img/icon_hot.gif deleted file mode 100644 index 5d447f449..000000000 Binary files a/mobile/skin/board/neo/img/icon_hot.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/icon_link.gif b/mobile/skin/board/neo/img/icon_link.gif deleted file mode 100644 index c5a3f88f9..000000000 Binary files a/mobile/skin/board/neo/img/icon_link.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/icon_new.gif b/mobile/skin/board/neo/img/icon_new.gif deleted file mode 100644 index 70a910ea3..000000000 Binary files a/mobile/skin/board/neo/img/icon_new.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/icon_nogood.gif b/mobile/skin/board/neo/img/icon_nogood.gif deleted file mode 100644 index 07cd8fedd..000000000 Binary files a/mobile/skin/board/neo/img/icon_nogood.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/icon_notice.gif b/mobile/skin/board/neo/img/icon_notice.gif deleted file mode 100644 index a13bf40c7..000000000 Binary files a/mobile/skin/board/neo/img/icon_notice.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/icon_reply.gif b/mobile/skin/board/neo/img/icon_reply.gif deleted file mode 100644 index 0eea0e31f..000000000 Binary files a/mobile/skin/board/neo/img/icon_reply.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/icon_secret.gif b/mobile/skin/board/neo/img/icon_secret.gif deleted file mode 100644 index eb3398151..000000000 Binary files a/mobile/skin/board/neo/img/icon_secret.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/icon_total.gif b/mobile/skin/board/neo/img/icon_total.gif deleted file mode 100644 index 9464149a4..000000000 Binary files a/mobile/skin/board/neo/img/icon_total.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/icon_view.gif b/mobile/skin/board/neo/img/icon_view.gif deleted file mode 100644 index f3be6389c..000000000 Binary files a/mobile/skin/board/neo/img/icon_view.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/noimage.gif b/mobile/skin/board/neo/img/noimage.gif deleted file mode 100644 index 35d42e808..000000000 Binary files a/mobile/skin/board/neo/img/noimage.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/page_begin.gif b/mobile/skin/board/neo/img/page_begin.gif deleted file mode 100644 index 7103f2394..000000000 Binary files a/mobile/skin/board/neo/img/page_begin.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/page_end.gif b/mobile/skin/board/neo/img/page_end.gif deleted file mode 100644 index 348ad79cc..000000000 Binary files a/mobile/skin/board/neo/img/page_end.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/page_next.gif b/mobile/skin/board/neo/img/page_next.gif deleted file mode 100644 index a99cdf50e..000000000 Binary files a/mobile/skin/board/neo/img/page_next.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/page_prev.gif b/mobile/skin/board/neo/img/page_prev.gif deleted file mode 100644 index 4817c78b7..000000000 Binary files a/mobile/skin/board/neo/img/page_prev.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/page_search_next.gif b/mobile/skin/board/neo/img/page_search_next.gif deleted file mode 100644 index 29b4b8910..000000000 Binary files a/mobile/skin/board/neo/img/page_search_next.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/page_search_prev.gif b/mobile/skin/board/neo/img/page_search_prev.gif deleted file mode 100644 index 5bb45414f..000000000 Binary files a/mobile/skin/board/neo/img/page_search_prev.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/start.gif b/mobile/skin/board/neo/img/start.gif deleted file mode 100644 index aa6c89b3e..000000000 Binary files a/mobile/skin/board/neo/img/start.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/title_bg.gif b/mobile/skin/board/neo/img/title_bg.gif deleted file mode 100644 index 185d0beab..000000000 Binary files a/mobile/skin/board/neo/img/title_bg.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/title_shadow.gif b/mobile/skin/board/neo/img/title_shadow.gif deleted file mode 100644 index e6e28f704..000000000 Binary files a/mobile/skin/board/neo/img/title_shadow.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/up.gif b/mobile/skin/board/neo/img/up.gif deleted file mode 100644 index 2831e376d..000000000 Binary files a/mobile/skin/board/neo/img/up.gif and /dev/null differ diff --git a/mobile/skin/board/neo/img/view_dot.gif b/mobile/skin/board/neo/img/view_dot.gif deleted file mode 100644 index 016175d51..000000000 Binary files a/mobile/skin/board/neo/img/view_dot.gif and /dev/null differ diff --git a/mobile/skin/board/neo/list.skin.php b/mobile/skin/board/neo/list.skin.php deleted file mode 100644 index c0b0e14c1..000000000 --- a/mobile/skin/board/neo/list.skin.php +++ /dev/null @@ -1,82 +0,0 @@ - - - -
- -
- - - - - - - - diff --git a/mobile/skin/board/neo/view.skin.php b/mobile/skin/board/neo/view.skin.php deleted file mode 100644 index 8e5447f22..000000000 --- a/mobile/skin/board/neo/view.skin.php +++ /dev/null @@ -1,156 +0,0 @@ - - -
- -
- -

-
-

-

-
- - - -
- - - -

신고된 게시물 입니다.

- - -

- ]+>#iS", "mobile_thumb", $str); - } - } - ?> -

- -

- ]+>\s*)?]+>(?(1)\s*)#iS", "mobile_thumb", $str); - // 개인정보노출방지 - if (!($is_admin || ($write[mb_id] && $write[mb_id] == $member[mb_id]))) { - if ($board[gr_id] == 'request') - $str = get_privacy_hidden($str); - } - - $s = $str; - //if ($is_admin) - { - //$s = $view[content]; - - preg_match("/(?<=\ 300) { - $rate = (int)($width / 300); - $height = (int)($height / $rate); - $width = 300; - } - - $s = preg_replace("/(?<=\ -

- - "; - for ($i=0; $row=sql_fetch_array($result); $i++) { - $row[wr_content] = strip_tags($row[wr_content]); - echo "
  • $row[wr_content]
  • \n"; - } - echo ""; - echo "
    설문결과는 PC버전에서만 보실수 있습니다.
    "; - } - ?> - - - -
    - -

     

    - - - -삭제 - -
    -
    - -
    diff --git a/mobile/skin/board/neo/view_comment.skin.php b/mobile/skin/board/neo/view_comment.skin.php deleted file mode 100644 index fa32fe089..000000000 --- a/mobile/skin/board/neo/view_comment.skin.php +++ /dev/null @@ -1,256 +0,0 @@ - - - - - -
    -

    댓글

    - \]/i", "", $str); - // FLASH XSS 공격에 의해 주석 처리 - 110406 - //$str = preg_replace("/\[\\]/i", "", $str); - $str = preg_replace("/\[\]*\>[^\s]*\<\/a\>\]/i", "", $str); - ?> -
    -
    -

    님의 댓글

    -
    - -
    아이피
    -
    - -
    작성일
    -
    -
    -
    - - -

    - - - - - "> - - - - - -
    - - - -
    - - - - - - - - - - - - - -
    - - - -
    diff --git a/mobile/skin/board/neo/write.skin.php b/mobile/skin/board/neo/write.skin.php deleted file mode 100644 index 51d1ee60a..000000000 --- a/mobile/skin/board/neo/write.skin.php +++ /dev/null @@ -1,232 +0,0 @@ - - -

    - -
    - - - - - - - - - - -'.PHP_EOL.''; - } - - if ($is_html) { - if ($is_dhtml_editor) { - $option_hidden .= ''; - } else { - $option .= PHP_EOL.''.PHP_EOL.''; - } - } - - if ($is_secret) { - if ($is_admin || $is_secret==1) { - $option .= PHP_EOL.''.PHP_EOL.''; - } else { - $option_hidden .= ''; - } - } - - if ($is_mail) { - $option .= PHP_EOL.''.PHP_EOL.''; - } -} - -echo $option_hidden; -?> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    >
    옵션
    - -
    ">
    파일 # - - - - -
    자동등록방지 - -
    - -
    - - 목록 -
    -
    - - diff --git a/mobile/skin/connect/basic/connect.skin.php b/mobile/skin/connect/basic/connect.skin.php deleted file mode 100644 index d424ad472..000000000 --- a/mobile/skin/connect/basic/connect.skin.php +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - -
    - - - - - -
      /current_connect.php'>현재접속자 : (회원 )
    diff --git a/mobile/skin/connect/basic/current_connect.skin.php b/mobile/skin/connect/basic/current_connect.skin.php deleted file mode 100644 index 48fe992dc..000000000 --- a/mobile/skin/connect/basic/current_connect.skin.php +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - -HEREDOC; - - $location = conv_content($list[$i]['lo_location'], 0); - - // 최고관리자에게만 허용 - // 이 조건문은 가능한 변경하지 마십시오. - if ($list[$i]['lo_url'] && $is_admin == 'super') - echo ""; - else - echo ""; - - echo << - -HEREDOC; -} - -if ($i == 0) - echo ""; -?> - - - -
    번호이름링크
    {$list[$i]['num']}{$list[$i]['name']} {$location} {$location}
    현재 접속자가 없습니다.
    diff --git a/mobile/skin/connect/basic/img/dot_bg.gif b/mobile/skin/connect/basic/img/dot_bg.gif deleted file mode 100644 index bd5f0a0d7..000000000 Binary files a/mobile/skin/connect/basic/img/dot_bg.gif and /dev/null differ diff --git a/mobile/skin/connect/basic/img/icon.gif b/mobile/skin/connect/basic/img/icon.gif deleted file mode 100644 index 49abe3199..000000000 Binary files a/mobile/skin/connect/basic/img/icon.gif and /dev/null differ diff --git a/mobile/skin/connect/basic/img/list_top_01.gif b/mobile/skin/connect/basic/img/list_top_01.gif deleted file mode 100644 index 200b1e106..000000000 Binary files a/mobile/skin/connect/basic/img/list_top_01.gif and /dev/null differ diff --git a/mobile/skin/connect/basic/img/list_top_02.gif b/mobile/skin/connect/basic/img/list_top_02.gif deleted file mode 100644 index 60cbe21c6..000000000 Binary files a/mobile/skin/connect/basic/img/list_top_02.gif and /dev/null differ diff --git a/mobile/skin/connect/basic/img/list_top_03.gif b/mobile/skin/connect/basic/img/list_top_03.gif deleted file mode 100644 index 05b85066c..000000000 Binary files a/mobile/skin/connect/basic/img/list_top_03.gif and /dev/null differ diff --git a/mobile/skin/connect/basic/img/list_top_04.gif b/mobile/skin/connect/basic/img/list_top_04.gif deleted file mode 100644 index 16a44b0a7..000000000 Binary files a/mobile/skin/connect/basic/img/list_top_04.gif and /dev/null differ diff --git a/mobile/skin/connect/basic/img/visit_bg.gif b/mobile/skin/connect/basic/img/visit_bg.gif deleted file mode 100644 index bc8b17231..000000000 Binary files a/mobile/skin/connect/basic/img/visit_bg.gif and /dev/null differ diff --git a/mobile/skin/connect/neo/connect.skin.php b/mobile/skin/connect/neo/connect.skin.php deleted file mode 100644 index f0785667d..000000000 --- a/mobile/skin/connect/neo/connect.skin.php +++ /dev/null @@ -1,8 +0,0 @@ - - -
    -

    현재접속자

    -
    명 중 회원
    -
    diff --git a/mobile/skin/connect/neo/current_connect.skin.php b/mobile/skin/connect/neo/current_connect.skin.php deleted file mode 100644 index 57851277d..000000000 --- a/mobile/skin/connect/neo/current_connect.skin.php +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - -".$location.""; - else $display_location = $location; -?> - - - - - -"; -?> - -
    현재접속자 목록
    번호이름위치
    현재 접속자가 없습니다.
    diff --git a/mobile/skin/connect/neo/img/dot_bg.gif b/mobile/skin/connect/neo/img/dot_bg.gif deleted file mode 100644 index bd5f0a0d7..000000000 Binary files a/mobile/skin/connect/neo/img/dot_bg.gif and /dev/null differ diff --git a/mobile/skin/connect/neo/img/icon.gif b/mobile/skin/connect/neo/img/icon.gif deleted file mode 100644 index 49abe3199..000000000 Binary files a/mobile/skin/connect/neo/img/icon.gif and /dev/null differ diff --git a/mobile/skin/connect/neo/img/list_top_01.gif b/mobile/skin/connect/neo/img/list_top_01.gif deleted file mode 100644 index 200b1e106..000000000 Binary files a/mobile/skin/connect/neo/img/list_top_01.gif and /dev/null differ diff --git a/mobile/skin/connect/neo/img/list_top_02.gif b/mobile/skin/connect/neo/img/list_top_02.gif deleted file mode 100644 index 60cbe21c6..000000000 Binary files a/mobile/skin/connect/neo/img/list_top_02.gif and /dev/null differ diff --git a/mobile/skin/connect/neo/img/list_top_03.gif b/mobile/skin/connect/neo/img/list_top_03.gif deleted file mode 100644 index 05b85066c..000000000 Binary files a/mobile/skin/connect/neo/img/list_top_03.gif and /dev/null differ diff --git a/mobile/skin/connect/neo/img/list_top_04.gif b/mobile/skin/connect/neo/img/list_top_04.gif deleted file mode 100644 index 16a44b0a7..000000000 Binary files a/mobile/skin/connect/neo/img/list_top_04.gif and /dev/null differ diff --git a/mobile/skin/connect/neo/img/visit_bg.gif b/mobile/skin/connect/neo/img/visit_bg.gif deleted file mode 100644 index bc8b17231..000000000 Binary files a/mobile/skin/connect/neo/img/visit_bg.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/bg_latest.gif b/mobile/skin/latest/basic/img/bg_latest.gif deleted file mode 100644 index abaf9a6c5..000000000 Binary files a/mobile/skin/latest/basic/img/bg_latest.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/board_bg_line.gif b/mobile/skin/latest/basic/img/board_bg_line.gif deleted file mode 100644 index d0e5021fb..000000000 Binary files a/mobile/skin/latest/basic/img/board_bg_line.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/board_icon.gif b/mobile/skin/latest/basic/img/board_icon.gif deleted file mode 100644 index 29c3df70b..000000000 Binary files a/mobile/skin/latest/basic/img/board_icon.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/board_more.gif b/mobile/skin/latest/basic/img/board_more.gif deleted file mode 100644 index 194e5f8ff..000000000 Binary files a/mobile/skin/latest/basic/img/board_more.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/board_title_bg.gif b/mobile/skin/latest/basic/img/board_title_bg.gif deleted file mode 100644 index ce65ea408..000000000 Binary files a/mobile/skin/latest/basic/img/board_title_bg.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/board_title_left.gif b/mobile/skin/latest/basic/img/board_title_left.gif deleted file mode 100644 index 474ba7bb0..000000000 Binary files a/mobile/skin/latest/basic/img/board_title_left.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/board_title_right.gif b/mobile/skin/latest/basic/img/board_title_right.gif deleted file mode 100644 index 7920f0004..000000000 Binary files a/mobile/skin/latest/basic/img/board_title_right.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/icon_file.gif b/mobile/skin/latest/basic/img/icon_file.gif deleted file mode 100644 index b9aa391da..000000000 Binary files a/mobile/skin/latest/basic/img/icon_file.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/icon_hit.gif b/mobile/skin/latest/basic/img/icon_hit.gif deleted file mode 100644 index 29b20be16..000000000 Binary files a/mobile/skin/latest/basic/img/icon_hit.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/icon_hot.gif b/mobile/skin/latest/basic/img/icon_hot.gif deleted file mode 100644 index 2069c932e..000000000 Binary files a/mobile/skin/latest/basic/img/icon_hot.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/icon_link.gif b/mobile/skin/latest/basic/img/icon_link.gif deleted file mode 100644 index f5d6d3ca3..000000000 Binary files a/mobile/skin/latest/basic/img/icon_link.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/icon_new.gif b/mobile/skin/latest/basic/img/icon_new.gif deleted file mode 100644 index 38edbdb8e..000000000 Binary files a/mobile/skin/latest/basic/img/icon_new.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/icon_reply.gif b/mobile/skin/latest/basic/img/icon_reply.gif deleted file mode 100644 index bfecc0c96..000000000 Binary files a/mobile/skin/latest/basic/img/icon_reply.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/icon_secret.gif b/mobile/skin/latest/basic/img/icon_secret.gif deleted file mode 100644 index d0d43a36d..000000000 Binary files a/mobile/skin/latest/basic/img/icon_secret.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/latest_icon.gif b/mobile/skin/latest/basic/img/latest_icon.gif deleted file mode 100644 index 3cb27bdac..000000000 Binary files a/mobile/skin/latest/basic/img/latest_icon.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/latest_t01.gif b/mobile/skin/latest/basic/img/latest_t01.gif deleted file mode 100644 index 638b80682..000000000 Binary files a/mobile/skin/latest/basic/img/latest_t01.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/latest_t02.gif b/mobile/skin/latest/basic/img/latest_t02.gif deleted file mode 100644 index de98bc92d..000000000 Binary files a/mobile/skin/latest/basic/img/latest_t02.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/img/more.gif b/mobile/skin/latest/basic/img/more.gif deleted file mode 100644 index d81816256..000000000 Binary files a/mobile/skin/latest/basic/img/more.gif and /dev/null differ diff --git a/mobile/skin/latest/basic/latest.skin.php b/mobile/skin/latest/basic/latest.skin.php deleted file mode 100644 index e86234e3c..000000000 --- a/mobile/skin/latest/basic/latest.skin.php +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - -
      /board.php?bo_table='>/board.php?bo_table='>
    - - - - - - - - - - -
    - - - - -
       - "; - if ($list[$i]['is_notice']) - echo "{$list[$i]['subject']}"; - else - echo "{$list[$i]['subject']}"; - echo ""; - - if ($list[$i]['comment_cnt']) - echo " {$list[$i]['comment_cnt']}"; - - // if ($list[$i]['link']['count']) { echo "[{$list[$i]['link']['count']}]"; } - // if ($list[$i]['file']['count']) { echo "<{$list[$i]['file']['count']}>"; } - - echo " " . $list[$i]['icon_new']; - echo " " . $list[$i]['icon_file']; - echo " " . $list[$i]['icon_link']; - echo " " . $list[$i]['icon_hot']; - echo " " . $list[$i]['icon_secret']; - ?>
    게시물이 없습니다.
    diff --git a/mobile/skin/latest/neo/img/bg_latest.gif b/mobile/skin/latest/neo/img/bg_latest.gif deleted file mode 100644 index abaf9a6c5..000000000 Binary files a/mobile/skin/latest/neo/img/bg_latest.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/board_bg_line.gif b/mobile/skin/latest/neo/img/board_bg_line.gif deleted file mode 100644 index d0e5021fb..000000000 Binary files a/mobile/skin/latest/neo/img/board_bg_line.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/board_icon.gif b/mobile/skin/latest/neo/img/board_icon.gif deleted file mode 100644 index 29c3df70b..000000000 Binary files a/mobile/skin/latest/neo/img/board_icon.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/board_more.gif b/mobile/skin/latest/neo/img/board_more.gif deleted file mode 100644 index 194e5f8ff..000000000 Binary files a/mobile/skin/latest/neo/img/board_more.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/board_title_bg.gif b/mobile/skin/latest/neo/img/board_title_bg.gif deleted file mode 100644 index ce65ea408..000000000 Binary files a/mobile/skin/latest/neo/img/board_title_bg.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/board_title_left.gif b/mobile/skin/latest/neo/img/board_title_left.gif deleted file mode 100644 index 474ba7bb0..000000000 Binary files a/mobile/skin/latest/neo/img/board_title_left.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/board_title_right.gif b/mobile/skin/latest/neo/img/board_title_right.gif deleted file mode 100644 index 7920f0004..000000000 Binary files a/mobile/skin/latest/neo/img/board_title_right.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/icon_file.gif b/mobile/skin/latest/neo/img/icon_file.gif deleted file mode 100644 index b9aa391da..000000000 Binary files a/mobile/skin/latest/neo/img/icon_file.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/icon_hit.gif b/mobile/skin/latest/neo/img/icon_hit.gif deleted file mode 100644 index 29b20be16..000000000 Binary files a/mobile/skin/latest/neo/img/icon_hit.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/icon_hot.gif b/mobile/skin/latest/neo/img/icon_hot.gif deleted file mode 100644 index 2069c932e..000000000 Binary files a/mobile/skin/latest/neo/img/icon_hot.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/icon_link.gif b/mobile/skin/latest/neo/img/icon_link.gif deleted file mode 100644 index f5d6d3ca3..000000000 Binary files a/mobile/skin/latest/neo/img/icon_link.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/icon_new.gif b/mobile/skin/latest/neo/img/icon_new.gif deleted file mode 100644 index 38edbdb8e..000000000 Binary files a/mobile/skin/latest/neo/img/icon_new.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/icon_reply.gif b/mobile/skin/latest/neo/img/icon_reply.gif deleted file mode 100644 index bfecc0c96..000000000 Binary files a/mobile/skin/latest/neo/img/icon_reply.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/icon_secret.gif b/mobile/skin/latest/neo/img/icon_secret.gif deleted file mode 100644 index d0d43a36d..000000000 Binary files a/mobile/skin/latest/neo/img/icon_secret.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/latest_icon.gif b/mobile/skin/latest/neo/img/latest_icon.gif deleted file mode 100644 index 3cb27bdac..000000000 Binary files a/mobile/skin/latest/neo/img/latest_icon.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/latest_t01.gif b/mobile/skin/latest/neo/img/latest_t01.gif deleted file mode 100644 index 638b80682..000000000 Binary files a/mobile/skin/latest/neo/img/latest_t01.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/latest_t02.gif b/mobile/skin/latest/neo/img/latest_t02.gif deleted file mode 100644 index de98bc92d..000000000 Binary files a/mobile/skin/latest/neo/img/latest_t02.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/img/more.gif b/mobile/skin/latest/neo/img/more.gif deleted file mode 100644 index d81816256..000000000 Binary files a/mobile/skin/latest/neo/img/more.gif and /dev/null differ diff --git a/mobile/skin/latest/neo/latest.skin.php b/mobile/skin/latest/neo/latest.skin.php deleted file mode 100644 index 74331f58e..000000000 --- a/mobile/skin/latest/neo/latest.skin.php +++ /dev/null @@ -1,38 +0,0 @@ - - -
    - - - -

    게시물이 없습니다.

    - - -
    diff --git a/mobile/skin/member/basic/_common.php b/mobile/skin/member/basic/_common.php deleted file mode 100644 index ee9534b35..000000000 --- a/mobile/skin/member/basic/_common.php +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/mobile/skin/member/basic/ajax_mb_email_check.php b/mobile/skin/member/basic/ajax_mb_email_check.php deleted file mode 100644 index bb019124c..000000000 --- a/mobile/skin/member/basic/ajax_mb_email_check.php +++ /dev/null @@ -1,20 +0,0 @@ - '$reg_mb_id' and mb_email = '$reg_mb_email' "); - if ($row[cnt]) { - echo "130"; // 이미 존재하는 회원아이디 - } else { - //if (preg_match("/[\,]?{$reg_mb_email}\,/i", $config[cf_prohibit_id].",")) - if (preg_match("/[\,]?{$reg_mb_email}/i", $config[cf_prohibit_id])) - echo "140"; // 예약어로 금지된 회원아이디 - else - echo "000"; // 정상 - } -} -?> \ No newline at end of file diff --git a/mobile/skin/member/basic/ajax_mb_id_check.php b/mobile/skin/member/basic/ajax_mb_id_check.php deleted file mode 100644 index 612ed7b51..000000000 --- a/mobile/skin/member/basic/ajax_mb_id_check.php +++ /dev/null @@ -1,22 +0,0 @@ - \ No newline at end of file diff --git a/mobile/skin/member/basic/ajax_mb_nick_check.php b/mobile/skin/member/basic/ajax_mb_nick_check.php deleted file mode 100644 index da47eab5a..000000000 --- a/mobile/skin/member/basic/ajax_mb_nick_check.php +++ /dev/null @@ -1,40 +0,0 @@ - \ No newline at end of file diff --git a/mobile/skin/member/basic/ajax_register_form.jquery.js b/mobile/skin/member/basic/ajax_register_form.jquery.js deleted file mode 100644 index cd6509ca2..000000000 --- a/mobile/skin/member/basic/ajax_register_form.jquery.js +++ /dev/null @@ -1,70 +0,0 @@ -var reg_mb_id_check = function() { - $.ajax({ - type: 'POST', - url: member_skin_path+'/ajax_mb_id_check.php', - data: { - 'reg_mb_id': encodeURIComponent($('#reg_mb_id').val()) - }, - cache: false, - async: false, - success: function(result) { - var msg = $('#msg_mb_id'); - switch(result) { - case '110' : msg.html('영문자, 숫자, _ 만 입력하세요.').css('color', 'red'); break; - case '120' : msg.html('최소 3자이상 입력하세요.').css('color', 'red'); break; - case '130' : msg.html('이미 사용중인 아이디 입니다.').css('color', 'red'); break; - case '140' : msg.html('예약어로 사용할 수 없는 아이디 입니다.').css('color', 'red'); break; - case '000' : msg.html('사용하셔도 좋은 아이디 입니다.').css('color', 'blue'); break; - default : alert( '잘못된 접근입니다.\n\n' + result ); break; - } - $('#mb_id_enabled').val(result); - } - }); -} - -var reg_mb_nick_check = function() { - $.ajax({ - type: 'POST', - url: member_skin_path+'/ajax_mb_nick_check.php', - data: { - 'reg_mb_nick': ($('#reg_mb_nick').val()) - }, - cache: false, - async: false, - success: function(result) { - var msg = $('#msg_mb_nick'); - switch(result) { - case '110' : msg.html('별명은 공백없이 한글, 영문, 숫자만 입력 가능합니다.').css('color', 'red'); break; - case '120' : msg.html('한글 2글자, 영문 4글자 이상 입력 가능합니다.').css('color', 'red'); break; - case '130' : msg.html('이미 존재하는 별명입니다.').css('color', 'red'); break; - case '000' : msg.html('사용하셔도 좋은 별명 입니다.').css('color', 'blue'); break; - default : alert( '잘못된 접근입니다.\n\n' + result ); break; - } - $('#mb_nick_enabled').val(result); - } - }); -} - -var reg_mb_email_check = function() { - $.ajax({ - type: 'POST', - url: member_skin_path+'/ajax_mb_email_check.php', - data: { - 'reg_mb_id': encodeURIComponent($('#reg_mb_id').val()), - 'reg_mb_email': $('#reg_mb_email').val() - }, - cache: false, - async: false, - success: function(result) { - var msg = $('#msg_mb_email'); - switch(result) { - case '110' : msg.html('E-mail 주소를 입력하십시오.').css('color', 'red'); break; - case '120' : msg.html('E-mail 주소가 형식에 맞지 않습니다.').css('color', 'red'); break; - case '130' : msg.html('이미 존재하는 E-mail 주소입니다.').css('color', 'red'); break; - case '000' : msg.html('사용하셔도 좋은 E-mail 주소입니다.').css('color', 'blue'); break; - default : alert( '잘못된 접근입니다.\n\n' + result ); break; - } - $('#mb_email_enabled').val(result); - } - }); -} \ No newline at end of file diff --git a/mobile/skin/member/basic/ajax_register_form.js b/mobile/skin/member/basic/ajax_register_form.js deleted file mode 100644 index 103e9efc0..000000000 --- a/mobile/skin/member/basic/ajax_register_form.js +++ /dev/null @@ -1,113 +0,0 @@ -/* -** 2010.03.12 : jQuery 로 대체하여 앞으로 사용하지 않습니다. -*/ - -// 회원아이디 검사 -function reg_mb_id_check() { - var url = member_skin_path + "/ajax_mb_id_check.php"; - var para = "reg_mb_id="+encodeURIComponent($F('reg_mb_id')); - var myAjax = new Ajax.Request( - url, - { - method: 'post', - // 주소창 보안 방지 javascript:void(document.fregisterform.mb_id_enabled.value='000'); - // 동기식 (폼전송시 입력값이 바른지 검사한 후 mb_id_enabled 를 체크하기 때문) - asynchronous: false, - parameters: para, - onComplete: return_reg_mb_id_check - }); -} - -function return_reg_mb_id_check(req) { - var msg = $('msg_mb_id'); - var result = req.responseText; - switch(result) { - case '110' : msg.update('영문자, 숫자, _ 만 입력하세요.').setStyle({ color: 'red' }); break; - case '120' : msg.update('최소 3자이상 입력하세요.').setStyle({ color: 'red' }); break; - case '130' : msg.update('이미 사용중인 아이디 입니다.').setStyle({ color: 'red' }); break; - case '140' : msg.update('예약어로 사용할 수 없는 아이디 입니다.').setStyle({ color: 'red' }); break; - case '000' : msg.update('사용하셔도 좋은 아이디 입니다.').setStyle({ color: 'blue' }); break; - default : alert( '잘못된 접근입니다.\n\n' + result ); break; - } - $('mb_id_enabled').value = result; -} - -// 별명 검사 -function reg_mb_nick_check() { - var url = member_skin_path + "/ajax_mb_nick_check.php"; - var para = "reg_mb_nick="+encodeURIComponent($F('reg_mb_nick')); - var myAjax = new Ajax.Request( - url, - { - method: 'post', - // 주소창 보안 방지 javascript:void(document.fregisterform.mb_id_enabled.value='000'); - // 동기식 (폼전송시 입력값이 바른지 검사한 후 mb_id_enabled 를 체크하기 때문) - asynchronous: false, - parameters: para, - onComplete: return_reg_mb_nick_check - }); -} - -function return_reg_mb_nick_check(req) { - var msg = $('msg_mb_nick'); - var result = req.responseText; - switch(result) { - case '110' : msg.update('별명은 공백없이 한글, 영문, 숫자만 입력 가능합니다.').setStyle({ color: 'red' }); break; - case '120' : msg.update('한글 2글자, 영문 4글자 이상 입력 가능합니다.').setStyle({ color: 'red' }); break; - case '130' : msg.update('이미 존재하는 별명입니다.').setStyle({ color: 'red' }); break; - case '000' : msg.update('사용하셔도 좋은 별명 입니다.').setStyle({ color: 'blue' }); break; - default : alert( '잘못된 접근입니다.\n\n' + result ); break; - } - $('mb_nick_enabled').value = result; -} - - -// E-mail 주소 검사 -function reg_mb_email_check() { - var url = member_skin_path + "/ajax_mb_email_check.php"; - var para = "reg_mb_id="+encodeURIComponent($F('reg_mb_id')); - para += "®_mb_email="+encodeURIComponent($F('reg_mb_email')); - var myAjax = new Ajax.Request( - url, - { - method: 'post', - // 주소창 보안 방지 javascript:void(document.fregisterform.mb_email_enabled.value='000'); - // 동기식 (폼전송시 입력값이 바른지 검사한 후 mb_email_enabled 를 체크하기 때문) - asynchronous: false, - parameters: para, - onComplete: return_reg_mb_email_check - }); -} - -function return_reg_mb_email_check(req) { - var msg = $('msg_mb_email'); - var result = req.responseText; - switch(result) { - case '110' : msg.update('E-mail 주소를 입력하십시오.').setStyle({ color: 'red' }); break; - case '120' : msg.update('E-mail 주소가 형식에 맞지 않습니다.').setStyle({ color: 'red' }); break; - case '130' : msg.update('이미 존재하는 E-mail 주소입니다.').setStyle({ color: 'red' }); break; - case '000' : msg.update('사용하셔도 좋은 E-mail 주소입니다.').setStyle({ color: 'blue' }); break; - default : alert( '잘못된 접근입니다.\n\n' + result ); break; - } - $('mb_email_enabled').value = result; -} - -// 세션에 저장된 토큰을 얻는다. -function get_token() { - var url = member_skin_path + "/ajax_get_token.php"; - var para = "reg_mb_id="+encodeURIComponent($F('reg_mb_id')); - para += "®_mb_email="+encodeURIComponent($F('reg_mb_email')); - var myAjax = new Ajax.Request( - url, - { - method: 'post', - asynchronous: false, - parameters: para, - onComplete: return_get_token - }); -} - -function return_get_token(req) { - var result = req.responseText; - $('mb_token').value = result; -} \ No newline at end of file diff --git a/mobile/skin/member/basic/formmail.skin.php b/mobile/skin/member/basic/formmail.skin.php deleted file mode 100644 index 86cb9ac13..000000000 --- a/mobile/skin/member/basic/formmail.skin.php +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - -
    - - - - - -
    - - - - - - - - - - - -
    님께 메일보내기
    - -
    - - - - - - - - - - - - - - - - -
    - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    이름
    E-mail
    제목
    선택 TEXT HTML TEXT+HTML
    내용
    첨부파일 #1
    첨부파일 #2
      왼쪽의 글자를 입력하세요.
      
    -
    - - - - diff --git a/mobile/skin/member/basic/img/arrow_01.gif b/mobile/skin/member/basic/img/arrow_01.gif deleted file mode 100644 index 99bbad6a9..000000000 Binary files a/mobile/skin/member/basic/img/arrow_01.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/back_bg_1.gif b/mobile/skin/member/basic/img/back_bg_1.gif deleted file mode 100644 index 515b14612..000000000 Binary files a/mobile/skin/member/basic/img/back_bg_1.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/bar_bg_img.gif b/mobile/skin/member/basic/img/bar_bg_img.gif deleted file mode 100644 index 26e9e214b..000000000 Binary files a/mobile/skin/member/basic/img/bar_bg_img.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_close.gif b/mobile/skin/member/basic/img/btn_close.gif deleted file mode 100644 index 999ac74c0..000000000 Binary files a/mobile/skin/member/basic/img/btn_close.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_comment_delete.gif b/mobile/skin/member/basic/img/btn_comment_delete.gif deleted file mode 100644 index 2bff4b225..000000000 Binary files a/mobile/skin/member/basic/img/btn_comment_delete.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_confirm.gif b/mobile/skin/member/basic/img/btn_confirm.gif deleted file mode 100644 index 1da1365ff..000000000 Binary files a/mobile/skin/member/basic/img/btn_confirm.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_go_home.gif b/mobile/skin/member/basic/img/btn_go_home.gif deleted file mode 100644 index c436e36ac..000000000 Binary files a/mobile/skin/member/basic/img/btn_go_home.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_id_pw.gif b/mobile/skin/member/basic/img/btn_id_pw.gif deleted file mode 100644 index c1f1e7f1a..000000000 Binary files a/mobile/skin/member/basic/img/btn_id_pw.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_list_view.gif b/mobile/skin/member/basic/img/btn_list_view.gif deleted file mode 100644 index 34624ef26..000000000 Binary files a/mobile/skin/member/basic/img/btn_list_view.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_login.gif b/mobile/skin/member/basic/img/btn_login.gif deleted file mode 100644 index 8c30a732e..000000000 Binary files a/mobile/skin/member/basic/img/btn_login.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_mail_send.gif b/mobile/skin/member/basic/img/btn_mail_send.gif deleted file mode 100644 index 2f8fc24cc..000000000 Binary files a/mobile/skin/member/basic/img/btn_mail_send.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_memo_next.gif b/mobile/skin/member/basic/img/btn_memo_next.gif deleted file mode 100644 index b409b2976..000000000 Binary files a/mobile/skin/member/basic/img/btn_memo_next.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_memo_prev.gif b/mobile/skin/member/basic/img/btn_memo_prev.gif deleted file mode 100644 index a0eddb484..000000000 Binary files a/mobile/skin/member/basic/img/btn_memo_prev.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_next_01.gif b/mobile/skin/member/basic/img/btn_next_01.gif deleted file mode 100644 index 1ca07f003..000000000 Binary files a/mobile/skin/member/basic/img/btn_next_01.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_paper_send.gif b/mobile/skin/member/basic/img/btn_paper_send.gif deleted file mode 100644 index a7140b26c..000000000 Binary files a/mobile/skin/member/basic/img/btn_paper_send.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_password_forget.gif b/mobile/skin/member/basic/img/btn_password_forget.gif deleted file mode 100644 index c1f1e7f1a..000000000 Binary files a/mobile/skin/member/basic/img/btn_password_forget.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_post_search.gif b/mobile/skin/member/basic/img/btn_post_search.gif deleted file mode 100644 index c81152086..000000000 Binary files a/mobile/skin/member/basic/img/btn_post_search.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_recv_paper_off.gif b/mobile/skin/member/basic/img/btn_recv_paper_off.gif deleted file mode 100644 index c3890de5b..000000000 Binary files a/mobile/skin/member/basic/img/btn_recv_paper_off.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_recv_paper_on.gif b/mobile/skin/member/basic/img/btn_recv_paper_on.gif deleted file mode 100644 index 0c3a6bcb3..000000000 Binary files a/mobile/skin/member/basic/img/btn_recv_paper_on.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_register.gif b/mobile/skin/member/basic/img/btn_register.gif deleted file mode 100644 index 54a9887c6..000000000 Binary files a/mobile/skin/member/basic/img/btn_register.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_reply.gif b/mobile/skin/member/basic/img/btn_reply.gif deleted file mode 100644 index 9916025ca..000000000 Binary files a/mobile/skin/member/basic/img/btn_reply.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_send_paper_off.gif b/mobile/skin/member/basic/img/btn_send_paper_off.gif deleted file mode 100644 index 0cbe01f09..000000000 Binary files a/mobile/skin/member/basic/img/btn_send_paper_off.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_send_paper_on.gif b/mobile/skin/member/basic/img/btn_send_paper_on.gif deleted file mode 100644 index f4e0b167a..000000000 Binary files a/mobile/skin/member/basic/img/btn_send_paper_on.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_write_paper_off.gif b/mobile/skin/member/basic/img/btn_write_paper_off.gif deleted file mode 100644 index 78d1dc4a4..000000000 Binary files a/mobile/skin/member/basic/img/btn_write_paper_off.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/btn_write_paper_on.gif b/mobile/skin/member/basic/img/btn_write_paper_on.gif deleted file mode 100644 index 8e4b8084d..000000000 Binary files a/mobile/skin/member/basic/img/btn_write_paper_on.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/calendar.gif b/mobile/skin/member/basic/img/calendar.gif deleted file mode 100644 index d55de6ed1..000000000 Binary files a/mobile/skin/member/basic/img/calendar.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/dot_bg_img.gif b/mobile/skin/member/basic/img/dot_bg_img.gif deleted file mode 100644 index 1ecd849df..000000000 Binary files a/mobile/skin/member/basic/img/dot_bg_img.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/dot_bg_img_01.gif b/mobile/skin/member/basic/img/dot_bg_img_01.gif deleted file mode 100644 index 393e71400..000000000 Binary files a/mobile/skin/member/basic/img/dot_bg_img_01.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/dot_bg_img_02.gif b/mobile/skin/member/basic/img/dot_bg_img_02.gif deleted file mode 100644 index d7fbca666..000000000 Binary files a/mobile/skin/member/basic/img/dot_bg_img_02.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/dot_line.gif b/mobile/skin/member/basic/img/dot_line.gif deleted file mode 100644 index bf78fd223..000000000 Binary files a/mobile/skin/member/basic/img/dot_line.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/down_line.gif b/mobile/skin/member/basic/img/down_line.gif deleted file mode 100644 index fc43b6334..000000000 Binary files a/mobile/skin/member/basic/img/down_line.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/gray_bg_img.gif b/mobile/skin/member/basic/img/gray_bg_img.gif deleted file mode 100644 index 14f7d015f..000000000 Binary files a/mobile/skin/member/basic/img/gray_bg_img.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/icon.gif b/mobile/skin/member/basic/img/icon.gif deleted file mode 100644 index ba95a6d1a..000000000 Binary files a/mobile/skin/member/basic/img/icon.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/icon_01.gif b/mobile/skin/member/basic/img/icon_01.gif deleted file mode 100644 index 4cb5179e6..000000000 Binary files a/mobile/skin/member/basic/img/icon_01.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/icon_02.gif b/mobile/skin/member/basic/img/icon_02.gif deleted file mode 100644 index 311d16d97..000000000 Binary files a/mobile/skin/member/basic/img/icon_02.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/join_check_btn.gif b/mobile/skin/member/basic/img/join_check_btn.gif deleted file mode 100644 index 5473a0bc2..000000000 Binary files a/mobile/skin/member/basic/img/join_check_btn.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/join_form_title.gif b/mobile/skin/member/basic/img/join_form_title.gif deleted file mode 100644 index 89db25114..000000000 Binary files a/mobile/skin/member/basic/img/join_form_title.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/join_ok_btn.gif b/mobile/skin/member/basic/img/join_ok_btn.gif deleted file mode 100644 index 3f239dc90..000000000 Binary files a/mobile/skin/member/basic/img/join_ok_btn.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/join_result_title.gif b/mobile/skin/member/basic/img/join_result_title.gif deleted file mode 100644 index 3f5a6dc05..000000000 Binary files a/mobile/skin/member/basic/img/join_result_title.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/join_title.gif b/mobile/skin/member/basic/img/join_title.gif deleted file mode 100644 index 0f0ce8634..000000000 Binary files a/mobile/skin/member/basic/img/join_title.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/l.gif b/mobile/skin/member/basic/img/l.gif deleted file mode 100644 index 3b317d754..000000000 Binary files a/mobile/skin/member/basic/img/l.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/left_img.gif b/mobile/skin/member/basic/img/left_img.gif deleted file mode 100644 index fdaf561f9..000000000 Binary files a/mobile/skin/member/basic/img/left_img.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/line.gif b/mobile/skin/member/basic/img/line.gif deleted file mode 100644 index af17ed4fb..000000000 Binary files a/mobile/skin/member/basic/img/line.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/login_img.gif b/mobile/skin/member/basic/img/login_img.gif deleted file mode 100644 index 7dce2daa4..000000000 Binary files a/mobile/skin/member/basic/img/login_img.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/login_table_bg.gif b/mobile/skin/member/basic/img/login_table_bg.gif deleted file mode 100644 index 8abb3747d..000000000 Binary files a/mobile/skin/member/basic/img/login_table_bg.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/login_table_bg_top.gif b/mobile/skin/member/basic/img/login_table_bg_top.gif deleted file mode 100644 index 13a159270..000000000 Binary files a/mobile/skin/member/basic/img/login_table_bg_top.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/login_title.gif b/mobile/skin/member/basic/img/login_title.gif deleted file mode 100644 index 56ccd2be0..000000000 Binary files a/mobile/skin/member/basic/img/login_title.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/mid_line.gif b/mobile/skin/member/basic/img/mid_line.gif deleted file mode 100644 index 71bfc1f5a..000000000 Binary files a/mobile/skin/member/basic/img/mid_line.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/modify_img.gif b/mobile/skin/member/basic/img/modify_img.gif deleted file mode 100644 index 32d6422df..000000000 Binary files a/mobile/skin/member/basic/img/modify_img.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/modify_table_bg.gif b/mobile/skin/member/basic/img/modify_table_bg.gif deleted file mode 100644 index 8abb3747d..000000000 Binary files a/mobile/skin/member/basic/img/modify_table_bg.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/modify_table_bg_top.gif b/mobile/skin/member/basic/img/modify_table_bg_top.gif deleted file mode 100644 index 13a159270..000000000 Binary files a/mobile/skin/member/basic/img/modify_table_bg_top.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/ok_btn.gif b/mobile/skin/member/basic/img/ok_btn.gif deleted file mode 100644 index bed82275b..000000000 Binary files a/mobile/skin/member/basic/img/ok_btn.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/ok_button.gif b/mobile/skin/member/basic/img/ok_button.gif deleted file mode 100644 index 1da1365ff..000000000 Binary files a/mobile/skin/member/basic/img/ok_button.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/post_search_btn.gif b/mobile/skin/member/basic/img/post_search_btn.gif deleted file mode 100644 index 6a27171a1..000000000 Binary files a/mobile/skin/member/basic/img/post_search_btn.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/right_img.gif b/mobile/skin/member/basic/img/right_img.gif deleted file mode 100644 index 211f7e1c9..000000000 Binary files a/mobile/skin/member/basic/img/right_img.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/s_title_1.gif b/mobile/skin/member/basic/img/s_title_1.gif deleted file mode 100644 index 7da6d07ef..000000000 Binary files a/mobile/skin/member/basic/img/s_title_1.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/secrecy_img.gif b/mobile/skin/member/basic/img/secrecy_img.gif deleted file mode 100644 index 1c66aa6f2..000000000 Binary files a/mobile/skin/member/basic/img/secrecy_img.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/secrecy_table_bg_top.gif b/mobile/skin/member/basic/img/secrecy_table_bg_top.gif deleted file mode 100644 index 13a159270..000000000 Binary files a/mobile/skin/member/basic/img/secrecy_table_bg_top.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/secrecy_title.gif b/mobile/skin/member/basic/img/secrecy_title.gif deleted file mode 100644 index f3525c372..000000000 Binary files a/mobile/skin/member/basic/img/secrecy_title.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/self_intro_bg.gif b/mobile/skin/member/basic/img/self_intro_bg.gif deleted file mode 100644 index 598c9fcb3..000000000 Binary files a/mobile/skin/member/basic/img/self_intro_bg.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/self_intro_bg_1.gif b/mobile/skin/member/basic/img/self_intro_bg_1.gif deleted file mode 100644 index 82d58b6bb..000000000 Binary files a/mobile/skin/member/basic/img/self_intro_bg_1.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/self_intro_icon_01.gif b/mobile/skin/member/basic/img/self_intro_icon_01.gif deleted file mode 100644 index 74897e425..000000000 Binary files a/mobile/skin/member/basic/img/self_intro_icon_01.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/step_01.gif b/mobile/skin/member/basic/img/step_01.gif deleted file mode 100644 index 06bc2c75e..000000000 Binary files a/mobile/skin/member/basic/img/step_01.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/step_02.gif b/mobile/skin/member/basic/img/step_02.gif deleted file mode 100644 index 983c7ad29..000000000 Binary files a/mobile/skin/member/basic/img/step_02.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/text_title_01.gif b/mobile/skin/member/basic/img/text_title_01.gif deleted file mode 100644 index fe7d29c30..000000000 Binary files a/mobile/skin/member/basic/img/text_title_01.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/text_title_02.gif b/mobile/skin/member/basic/img/text_title_02.gif deleted file mode 100644 index 7dd386648..000000000 Binary files a/mobile/skin/member/basic/img/text_title_02.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/top_line.gif b/mobile/skin/member/basic/img/top_line.gif deleted file mode 100644 index 2c3179a85..000000000 Binary files a/mobile/skin/member/basic/img/top_line.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/zip_img_01.gif b/mobile/skin/member/basic/img/zip_img_01.gif deleted file mode 100644 index 07a1e9551..000000000 Binary files a/mobile/skin/member/basic/img/zip_img_01.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/zip_img_02.gif b/mobile/skin/member/basic/img/zip_img_02.gif deleted file mode 100644 index 8285e961e..000000000 Binary files a/mobile/skin/member/basic/img/zip_img_02.gif and /dev/null differ diff --git a/mobile/skin/member/basic/img/zip_img_03.gif b/mobile/skin/member/basic/img/zip_img_03.gif deleted file mode 100644 index 8d862fd59..000000000 Binary files a/mobile/skin/member/basic/img/zip_img_03.gif and /dev/null differ diff --git a/mobile/skin/member/basic/login.skin.php b/mobile/skin/member/basic/login.skin.php deleted file mode 100644 index 3e0057372..000000000 --- a/mobile/skin/member/basic/login.skin.php +++ /dev/null @@ -1,126 +0,0 @@ - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - -
    아이디
    패스워드
    자동로그인 - 사용
    -
    아직 회원이 아니십니까?    
    아이디/패스워드를 잊으셨습니까?    
    - -
    - - diff --git a/mobile/skin/member/basic/login_check.skin.php b/mobile/skin/member/basic/login_check.skin.php deleted file mode 100644 index c3825c12a..000000000 --- a/mobile/skin/member/basic/login_check.skin.php +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/mobile/skin/member/basic/member_confirm.skin.php b/mobile/skin/member/basic/member_confirm.skin.php deleted file mode 100644 index a1eb7d15d..000000000 --- a/mobile/skin/member/basic/member_confirm.skin.php +++ /dev/null @@ -1,93 +0,0 @@ - - - - -
    -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - - - - - - - - -
    - - - - - - - - - - - -
    회원아이디
    패스워드
    -
    - - - - - -
    외부로부터 회원님의 정보를 안전하게 보호하기 위해
    패스워드를 확인하셔야 합니다.
    - -
    - - diff --git a/mobile/skin/member/basic/memo.skin.php b/mobile/skin/member/basic/memo.skin.php deleted file mode 100644 index 40aa67992..000000000 --- a/mobile/skin/member/basic/memo.skin.php +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - -
    - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - -
        전체 쪽지 [ ]통
    - - - - - - - - - - - - - - -
    - - - - - - - - - - -
    * 쪽지 보관일수는 최장 일 입니다.
    - - - - - - - - - - - - - - - - - - "; } ?> -
    보낸시간읽은시간쪽지삭제
    자료가 없습니다.


    - diff --git a/mobile/skin/member/basic/memo_form.skin.php b/mobile/skin/member/basic/memo_form.skin.php deleted file mode 100644 index 03036f6d0..000000000 --- a/mobile/skin/member/basic/memo_form.skin.php +++ /dev/null @@ -1,52 +0,0 @@ - - -
    -

    쪽지보내기

    - - - -
    - - - - - - - - - - - - - - - - -
    쪽지쓰기
    - - 여러 회원에게 보낼때는 컴마(,)로 구분하세요. -
    자동등록방지 - -
    - -
    - - 창닫기 -
    -
    -
    - - diff --git a/mobile/skin/member/basic/memo_view.skin.php b/mobile/skin/member/basic/memo_view.skin.php deleted file mode 100644 index b6056dfcb..000000000 --- a/mobile/skin/member/basic/memo_view.skin.php +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - -
    - - - - - - -
    - - - - - - - - - - - -
    - $nick 님께서 {$memo[me_send_datetime]}에 보내온 쪽지의 내용입니다."; - - if ($kind == "send") - echo "$nick 님께 {$memo[me_send_datetime]}에 보낸 쪽지의 내용입니다."; - ?> -  
    - - - - - - - - - - - - - - -
    - - - - - - - - - - -
    -   "; - echo ""; - ?> -
    - - - -
    -   "; ?> -    -
    -
    \ No newline at end of file diff --git a/mobile/skin/member/basic/password.skin.php b/mobile/skin/member/basic/password.skin.php deleted file mode 100644 index 0f890d9dc..000000000 --- a/mobile/skin/member/basic/password.skin.php +++ /dev/null @@ -1,76 +0,0 @@ - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - - - - - - - - - - -
    패스워드
    이 게시물의 패스워드를 입력하십시오.
    - -
    - - diff --git a/mobile/skin/member/basic/password_lost.skin.php b/mobile/skin/member/basic/password_lost.skin.php deleted file mode 100644 index c35a59464..000000000 --- a/mobile/skin/member/basic/password_lost.skin.php +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - -
    - - - - - -
    - -
    - - - - - - - - - - - - - -
    - - - - - - - - - - - - -
    이메일주소 - -
    회원가입시 등록하신 이메일주소 입력 -
    - -
    왼쪽의 숫자를 입력하세요. -
    -
      
    -
    - - - - - - diff --git a/mobile/skin/member/basic/profile.skin.php b/mobile/skin/member/basic/profile.skin.php deleted file mode 100644 index 5e657333f..000000000 --- a/mobile/skin/member/basic/profile.skin.php +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - -
    - - - - - - -
    자기소개
    - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    회원권한 :
    포인트 :
    홈페이지 :
    회원가입일 : = $mb[mb_level]) ? substr($mb[mb_datetime],0,10) ." (".$mb_reg_after." 일)" : "알 수 없음"; ?>
    최종접속일 : = $mb[mb_level]) ? $mb[mb_today_login] : "알 수 없음";?>
    - - - - - - -
    diff --git a/mobile/skin/member/basic/register.skin.php b/mobile/skin/member/basic/register.skin.php deleted file mode 100644 index 1cbf1d956..000000000 --- a/mobile/skin/member/basic/register.skin.php +++ /dev/null @@ -1,102 +0,0 @@ - - -
    - -
    - - - - - -
    - - - - - -
    - - - - - - - - - - -
      회원가입약관
    -     -     -
    - -
    - - - - - - - - - - -
      개인정보취급방침
    -     -     -
    - -
    - -
    -
    - -
    - -
    - - - diff --git a/mobile/skin/member/basic/register_form.skin.php b/mobile/skin/member/basic/register_form.skin.php deleted file mode 100644 index e27428b73..000000000 --- a/mobile/skin/member/basic/register_form.skin.php +++ /dev/null @@ -1,575 +0,0 @@ - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - -
    - - - - - -
    - - - - - - - - - - - - - - -
    아이디 - - > - - - -
    ※ 영문자, 숫자, _ 만 입력 가능. 최소 3자이상 입력하세요.
    -
    패스워드 itemname="패스워드">
    패스워드 확인 itemname="패스워드 확인">
    -
    - - - - - -
    - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    이름 - > - -
    별명 - - -
    공백없이 한글,영문,숫자만 입력 가능 (한글2자, 영문4자 이상) -
    별명을 바꾸시면 앞으로 일 이내에는 변경 할 수 없습니다. -
    E-mail - - - - e-mail 로 발송된 내용을 확인한 후 인증하셔야 회원가입이 완료됩니다."; } ?> - e-mail 주소를 변경하시면 다시 인증하셔야 합니다."; } ?> - -
    생년월일
    성별 - - -
    홈페이지 itemname='홈페이지' value=''>
    전화번호 itemname='전화번호' value=''>
    핸드폰번호 itemname='핸드폰번호' value=''>
    주소 - - - - - - - - - - -
    itemname='우편번호 앞자리' value=''> - - - itemname='우편번호 뒷자리' value=''> -  
    itemname='주소' value=''>
    itemname='상세주소' value=''>
    -
    -
    - - - - - -
    - - - - - -
    - - - - - - - - - - - - - - - - - = $config[cf_icon_level]) { ?> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    서명
    자기소개
    회원아이콘 - - - - -
    * 이미지 크기는 가로(픽셀)x세로(픽셀) 이하로 해주세요.
      (gif만 가능 / 용량:바이트 이하만 등록됩니다.) - -
    삭제 - -
    메일링서비스>정보 메일을 받겠습니다.
    SMS 수신여부>핸드폰 문자메세지를 받겠습니다.
    정보공개>다른분들이 나의 정보를 볼 수 있도록 합니다. -
         정보공개를 바꾸시면 앞으로 일 이내에는 변경이 안됩니다.
    정보공개 - 정보공개는 수정후 일 이내, 까지는 변경이 안됩니다.
    - 이렇게 하는 이유는 잦은 정보공개 수정으로 인하여 쪽지를 보낸 후 받지 않는 경우를 막기 위해서 입니다. -
    추천인아이디
    -
    - - - - - -
    - - - - - -
    - - - - - -
    - - -   왼쪽의 글자를 입력하세요. -
    -
    - -

    - - -

    - -
    - - - - diff --git a/mobile/skin/member/basic/register_result.skin.php b/mobile/skin/member/basic/register_result.skin.php deleted file mode 100644 index 0ec4c41b4..000000000 --- a/mobile/skin/member/basic/register_result.skin.php +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - -
    님의 회원가입을 진심으로 축하합니다. -

    회원님의 아이디는 입니다. -

    회원님의 패스워드는 아무도 알 수 없는 암호화 코드로 저장되므로 안심하셔도 좋습니다. -

    아이디, 패스워드 분실시에는 회원가입시 입력하신 패스워드 분실시 질문, 답변을 이용하여 찾을 수 있습니다. - - -

    E-mail()로 발송된 내용을 확인한 후 인증하셔야 회원가입이 완료됩니다. - - -

    회원의 탈퇴는 언제든지 가능하며 탈퇴 후 일정기간이 지난 후, 회원님의 모든 소중한 정보는 삭제하고 있습니다.

    감사합니다.

    diff --git a/mobile/skin/member/basic/register_update.skin.php b/mobile/skin/member/basic/register_update.skin.php deleted file mode 100644 index 34fef072a..000000000 --- a/mobile/skin/member/basic/register_update.skin.php +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/mobile/skin/member/basic/scrap.skin.php b/mobile/skin/member/basic/scrap.skin.php deleted file mode 100644 index c000c3da2..000000000 --- a/mobile/skin/member/basic/scrap.skin.php +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - -
    - - - - - - -
    스크랩
    - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - "; ?> -
    번호게시판제목보관일시삭제
     
    자료가 없습니다.
    -
    diff --git a/mobile/skin/member/basic/scrap_popin.skin.php b/mobile/skin/member/basic/scrap_popin.skin.php deleted file mode 100644 index 77714273f..000000000 --- a/mobile/skin/member/basic/scrap_popin.skin.php +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - -
    - - - - - - -
    스크랩하기
    - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - -
    - - - - - - - - - - - - - - - - -
    제목
    코멘트
    diff --git a/mobile/skin/member/basic/zip.skin.php b/mobile/skin/member/basic/zip.skin.php deleted file mode 100644 index 215128501..000000000 --- a/mobile/skin/member/basic/zip.skin.php +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - -
    - - - - - - -
    - - - - - - 0) { ?> - - - - - - - - - - -
    - - - - - \n"; - } - ?> - - - -
    건 가나다순
    {$list[$i][zip1]}-{$list[$i][zip2]} : {$list[$i][addr]} {$list[$i][bunji]}
    [끝]
    -
    - - - diff --git a/mobile/skin/member/neo/_common.php b/mobile/skin/member/neo/_common.php deleted file mode 100644 index ee9534b35..000000000 --- a/mobile/skin/member/neo/_common.php +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/mobile/skin/member/neo/ajax_mb_email_check.php b/mobile/skin/member/neo/ajax_mb_email_check.php deleted file mode 100644 index 9d255f106..000000000 --- a/mobile/skin/member/neo/ajax_mb_email_check.php +++ /dev/null @@ -1,11 +0,0 @@ - \ No newline at end of file diff --git a/mobile/skin/member/neo/ajax_mb_id_check.php b/mobile/skin/member/neo/ajax_mb_id_check.php deleted file mode 100644 index 8fa3f02f0..000000000 --- a/mobile/skin/member/neo/ajax_mb_id_check.php +++ /dev/null @@ -1,12 +0,0 @@ - \ No newline at end of file diff --git a/mobile/skin/member/neo/ajax_mb_nick_check.php b/mobile/skin/member/neo/ajax_mb_nick_check.php deleted file mode 100644 index c47659321..000000000 --- a/mobile/skin/member/neo/ajax_mb_nick_check.php +++ /dev/null @@ -1,12 +0,0 @@ - \ No newline at end of file diff --git a/mobile/skin/member/neo/ajax_register_form.jquery.js b/mobile/skin/member/neo/ajax_register_form.jquery.js deleted file mode 100644 index 788260ccc..000000000 --- a/mobile/skin/member/neo/ajax_register_form.jquery.js +++ /dev/null @@ -1,54 +0,0 @@ -var reg_mb_id_check = function() { - var result = ""; - $.ajax({ - type: "POST", - url: member_skin_path+"/ajax_mb_id_check.php", - data: { - "reg_mb_id": encodeURIComponent($("#reg_mb_id").val()) - }, - cache: false, - async: false, - success: function(data) { - result = data; - } - }); - return result; -} - - -var reg_mb_nick_check = function() { - var result = ""; - $.ajax({ - type: "POST", - url: member_skin_path+"/ajax_mb_nick_check.php", - data: { - "reg_mb_nick": ($("#reg_mb_nick").val()), - 'reg_mb_id': encodeURIComponent($('#reg_mb_id').val()) - }, - cache: false, - async: false, - success: function(data) { - result = data; - } - }); - return result; -} - - -var reg_mb_email_check = function() { - var result = ""; - $.ajax({ - type: 'POST', - url: member_skin_path+'/ajax_mb_email_check.php', - data: { - 'reg_mb_email': $('#reg_mb_email').val(), - 'reg_mb_id': encodeURIComponent($('#reg_mb_id').val()) - }, - cache: false, - async: false, - success: function(data) { - result = data; - } - }); - return result; -} \ No newline at end of file diff --git a/mobile/skin/member/neo/ajax_register_form.js b/mobile/skin/member/neo/ajax_register_form.js deleted file mode 100644 index 103e9efc0..000000000 --- a/mobile/skin/member/neo/ajax_register_form.js +++ /dev/null @@ -1,113 +0,0 @@ -/* -** 2010.03.12 : jQuery 로 대체하여 앞으로 사용하지 않습니다. -*/ - -// 회원아이디 검사 -function reg_mb_id_check() { - var url = member_skin_path + "/ajax_mb_id_check.php"; - var para = "reg_mb_id="+encodeURIComponent($F('reg_mb_id')); - var myAjax = new Ajax.Request( - url, - { - method: 'post', - // 주소창 보안 방지 javascript:void(document.fregisterform.mb_id_enabled.value='000'); - // 동기식 (폼전송시 입력값이 바른지 검사한 후 mb_id_enabled 를 체크하기 때문) - asynchronous: false, - parameters: para, - onComplete: return_reg_mb_id_check - }); -} - -function return_reg_mb_id_check(req) { - var msg = $('msg_mb_id'); - var result = req.responseText; - switch(result) { - case '110' : msg.update('영문자, 숫자, _ 만 입력하세요.').setStyle({ color: 'red' }); break; - case '120' : msg.update('최소 3자이상 입력하세요.').setStyle({ color: 'red' }); break; - case '130' : msg.update('이미 사용중인 아이디 입니다.').setStyle({ color: 'red' }); break; - case '140' : msg.update('예약어로 사용할 수 없는 아이디 입니다.').setStyle({ color: 'red' }); break; - case '000' : msg.update('사용하셔도 좋은 아이디 입니다.').setStyle({ color: 'blue' }); break; - default : alert( '잘못된 접근입니다.\n\n' + result ); break; - } - $('mb_id_enabled').value = result; -} - -// 별명 검사 -function reg_mb_nick_check() { - var url = member_skin_path + "/ajax_mb_nick_check.php"; - var para = "reg_mb_nick="+encodeURIComponent($F('reg_mb_nick')); - var myAjax = new Ajax.Request( - url, - { - method: 'post', - // 주소창 보안 방지 javascript:void(document.fregisterform.mb_id_enabled.value='000'); - // 동기식 (폼전송시 입력값이 바른지 검사한 후 mb_id_enabled 를 체크하기 때문) - asynchronous: false, - parameters: para, - onComplete: return_reg_mb_nick_check - }); -} - -function return_reg_mb_nick_check(req) { - var msg = $('msg_mb_nick'); - var result = req.responseText; - switch(result) { - case '110' : msg.update('별명은 공백없이 한글, 영문, 숫자만 입력 가능합니다.').setStyle({ color: 'red' }); break; - case '120' : msg.update('한글 2글자, 영문 4글자 이상 입력 가능합니다.').setStyle({ color: 'red' }); break; - case '130' : msg.update('이미 존재하는 별명입니다.').setStyle({ color: 'red' }); break; - case '000' : msg.update('사용하셔도 좋은 별명 입니다.').setStyle({ color: 'blue' }); break; - default : alert( '잘못된 접근입니다.\n\n' + result ); break; - } - $('mb_nick_enabled').value = result; -} - - -// E-mail 주소 검사 -function reg_mb_email_check() { - var url = member_skin_path + "/ajax_mb_email_check.php"; - var para = "reg_mb_id="+encodeURIComponent($F('reg_mb_id')); - para += "®_mb_email="+encodeURIComponent($F('reg_mb_email')); - var myAjax = new Ajax.Request( - url, - { - method: 'post', - // 주소창 보안 방지 javascript:void(document.fregisterform.mb_email_enabled.value='000'); - // 동기식 (폼전송시 입력값이 바른지 검사한 후 mb_email_enabled 를 체크하기 때문) - asynchronous: false, - parameters: para, - onComplete: return_reg_mb_email_check - }); -} - -function return_reg_mb_email_check(req) { - var msg = $('msg_mb_email'); - var result = req.responseText; - switch(result) { - case '110' : msg.update('E-mail 주소를 입력하십시오.').setStyle({ color: 'red' }); break; - case '120' : msg.update('E-mail 주소가 형식에 맞지 않습니다.').setStyle({ color: 'red' }); break; - case '130' : msg.update('이미 존재하는 E-mail 주소입니다.').setStyle({ color: 'red' }); break; - case '000' : msg.update('사용하셔도 좋은 E-mail 주소입니다.').setStyle({ color: 'blue' }); break; - default : alert( '잘못된 접근입니다.\n\n' + result ); break; - } - $('mb_email_enabled').value = result; -} - -// 세션에 저장된 토큰을 얻는다. -function get_token() { - var url = member_skin_path + "/ajax_get_token.php"; - var para = "reg_mb_id="+encodeURIComponent($F('reg_mb_id')); - para += "®_mb_email="+encodeURIComponent($F('reg_mb_email')); - var myAjax = new Ajax.Request( - url, - { - method: 'post', - asynchronous: false, - parameters: para, - onComplete: return_get_token - }); -} - -function return_get_token(req) { - var result = req.responseText; - $('mb_token').value = result; -} \ No newline at end of file diff --git a/mobile/skin/member/neo/formmail.skin.php b/mobile/skin/member/neo/formmail.skin.php deleted file mode 100644 index 422e09095..000000000 --- a/mobile/skin/member/neo/formmail.skin.php +++ /dev/null @@ -1,95 +0,0 @@ - - -
    -

    님께 메일보내기

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    메일쓰기
    형식 - - - -
    자동등록방지
    - -
    - - 창닫기 -
    - - -
    - - - - diff --git a/mobile/skin/member/neo/img/arrow_01.gif b/mobile/skin/member/neo/img/arrow_01.gif deleted file mode 100644 index 99bbad6a9..000000000 Binary files a/mobile/skin/member/neo/img/arrow_01.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/back_bg_1.gif b/mobile/skin/member/neo/img/back_bg_1.gif deleted file mode 100644 index 515b14612..000000000 Binary files a/mobile/skin/member/neo/img/back_bg_1.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/bar_bg_img.gif b/mobile/skin/member/neo/img/bar_bg_img.gif deleted file mode 100644 index 26e9e214b..000000000 Binary files a/mobile/skin/member/neo/img/bar_bg_img.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_close.gif b/mobile/skin/member/neo/img/btn_close.gif deleted file mode 100644 index 999ac74c0..000000000 Binary files a/mobile/skin/member/neo/img/btn_close.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_comment_delete.gif b/mobile/skin/member/neo/img/btn_comment_delete.gif deleted file mode 100644 index 2bff4b225..000000000 Binary files a/mobile/skin/member/neo/img/btn_comment_delete.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_confirm.gif b/mobile/skin/member/neo/img/btn_confirm.gif deleted file mode 100644 index 1da1365ff..000000000 Binary files a/mobile/skin/member/neo/img/btn_confirm.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_go_home.gif b/mobile/skin/member/neo/img/btn_go_home.gif deleted file mode 100644 index c436e36ac..000000000 Binary files a/mobile/skin/member/neo/img/btn_go_home.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_id_pw.gif b/mobile/skin/member/neo/img/btn_id_pw.gif deleted file mode 100644 index c1f1e7f1a..000000000 Binary files a/mobile/skin/member/neo/img/btn_id_pw.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_list_view.gif b/mobile/skin/member/neo/img/btn_list_view.gif deleted file mode 100644 index 34624ef26..000000000 Binary files a/mobile/skin/member/neo/img/btn_list_view.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_login.gif b/mobile/skin/member/neo/img/btn_login.gif deleted file mode 100644 index 8c30a732e..000000000 Binary files a/mobile/skin/member/neo/img/btn_login.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_mail_send.gif b/mobile/skin/member/neo/img/btn_mail_send.gif deleted file mode 100644 index 2f8fc24cc..000000000 Binary files a/mobile/skin/member/neo/img/btn_mail_send.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_memo_next.gif b/mobile/skin/member/neo/img/btn_memo_next.gif deleted file mode 100644 index b409b2976..000000000 Binary files a/mobile/skin/member/neo/img/btn_memo_next.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_memo_prev.gif b/mobile/skin/member/neo/img/btn_memo_prev.gif deleted file mode 100644 index a0eddb484..000000000 Binary files a/mobile/skin/member/neo/img/btn_memo_prev.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_next_01.gif b/mobile/skin/member/neo/img/btn_next_01.gif deleted file mode 100644 index 1ca07f003..000000000 Binary files a/mobile/skin/member/neo/img/btn_next_01.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_paper_send.gif b/mobile/skin/member/neo/img/btn_paper_send.gif deleted file mode 100644 index a7140b26c..000000000 Binary files a/mobile/skin/member/neo/img/btn_paper_send.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_password_forget.gif b/mobile/skin/member/neo/img/btn_password_forget.gif deleted file mode 100644 index c1f1e7f1a..000000000 Binary files a/mobile/skin/member/neo/img/btn_password_forget.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_post_search.gif b/mobile/skin/member/neo/img/btn_post_search.gif deleted file mode 100644 index c81152086..000000000 Binary files a/mobile/skin/member/neo/img/btn_post_search.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_recv_paper_off.gif b/mobile/skin/member/neo/img/btn_recv_paper_off.gif deleted file mode 100644 index c3890de5b..000000000 Binary files a/mobile/skin/member/neo/img/btn_recv_paper_off.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_recv_paper_on.gif b/mobile/skin/member/neo/img/btn_recv_paper_on.gif deleted file mode 100644 index 0c3a6bcb3..000000000 Binary files a/mobile/skin/member/neo/img/btn_recv_paper_on.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_register.gif b/mobile/skin/member/neo/img/btn_register.gif deleted file mode 100644 index 54a9887c6..000000000 Binary files a/mobile/skin/member/neo/img/btn_register.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_reply.gif b/mobile/skin/member/neo/img/btn_reply.gif deleted file mode 100644 index 9916025ca..000000000 Binary files a/mobile/skin/member/neo/img/btn_reply.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_send_paper_off.gif b/mobile/skin/member/neo/img/btn_send_paper_off.gif deleted file mode 100644 index 0cbe01f09..000000000 Binary files a/mobile/skin/member/neo/img/btn_send_paper_off.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_send_paper_on.gif b/mobile/skin/member/neo/img/btn_send_paper_on.gif deleted file mode 100644 index f4e0b167a..000000000 Binary files a/mobile/skin/member/neo/img/btn_send_paper_on.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_write_paper_off.gif b/mobile/skin/member/neo/img/btn_write_paper_off.gif deleted file mode 100644 index 78d1dc4a4..000000000 Binary files a/mobile/skin/member/neo/img/btn_write_paper_off.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/btn_write_paper_on.gif b/mobile/skin/member/neo/img/btn_write_paper_on.gif deleted file mode 100644 index 8e4b8084d..000000000 Binary files a/mobile/skin/member/neo/img/btn_write_paper_on.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/calendar.gif b/mobile/skin/member/neo/img/calendar.gif deleted file mode 100644 index d55de6ed1..000000000 Binary files a/mobile/skin/member/neo/img/calendar.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/dot_bg_img.gif b/mobile/skin/member/neo/img/dot_bg_img.gif deleted file mode 100644 index 1ecd849df..000000000 Binary files a/mobile/skin/member/neo/img/dot_bg_img.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/dot_bg_img_01.gif b/mobile/skin/member/neo/img/dot_bg_img_01.gif deleted file mode 100644 index 393e71400..000000000 Binary files a/mobile/skin/member/neo/img/dot_bg_img_01.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/dot_bg_img_02.gif b/mobile/skin/member/neo/img/dot_bg_img_02.gif deleted file mode 100644 index d7fbca666..000000000 Binary files a/mobile/skin/member/neo/img/dot_bg_img_02.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/dot_line.gif b/mobile/skin/member/neo/img/dot_line.gif deleted file mode 100644 index bf78fd223..000000000 Binary files a/mobile/skin/member/neo/img/dot_line.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/down_line.gif b/mobile/skin/member/neo/img/down_line.gif deleted file mode 100644 index fc43b6334..000000000 Binary files a/mobile/skin/member/neo/img/down_line.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/gray_bg_img.gif b/mobile/skin/member/neo/img/gray_bg_img.gif deleted file mode 100644 index 14f7d015f..000000000 Binary files a/mobile/skin/member/neo/img/gray_bg_img.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/icon.gif b/mobile/skin/member/neo/img/icon.gif deleted file mode 100644 index ba95a6d1a..000000000 Binary files a/mobile/skin/member/neo/img/icon.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/icon_01.gif b/mobile/skin/member/neo/img/icon_01.gif deleted file mode 100644 index 4cb5179e6..000000000 Binary files a/mobile/skin/member/neo/img/icon_01.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/icon_02.gif b/mobile/skin/member/neo/img/icon_02.gif deleted file mode 100644 index 311d16d97..000000000 Binary files a/mobile/skin/member/neo/img/icon_02.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/join_check_btn.gif b/mobile/skin/member/neo/img/join_check_btn.gif deleted file mode 100644 index 5473a0bc2..000000000 Binary files a/mobile/skin/member/neo/img/join_check_btn.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/join_form_title.gif b/mobile/skin/member/neo/img/join_form_title.gif deleted file mode 100644 index 89db25114..000000000 Binary files a/mobile/skin/member/neo/img/join_form_title.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/join_ok_btn.gif b/mobile/skin/member/neo/img/join_ok_btn.gif deleted file mode 100644 index 3f239dc90..000000000 Binary files a/mobile/skin/member/neo/img/join_ok_btn.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/join_result_title.gif b/mobile/skin/member/neo/img/join_result_title.gif deleted file mode 100644 index 3f5a6dc05..000000000 Binary files a/mobile/skin/member/neo/img/join_result_title.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/join_title.gif b/mobile/skin/member/neo/img/join_title.gif deleted file mode 100644 index 0f0ce8634..000000000 Binary files a/mobile/skin/member/neo/img/join_title.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/l.gif b/mobile/skin/member/neo/img/l.gif deleted file mode 100644 index 3b317d754..000000000 Binary files a/mobile/skin/member/neo/img/l.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/left_img.gif b/mobile/skin/member/neo/img/left_img.gif deleted file mode 100644 index fdaf561f9..000000000 Binary files a/mobile/skin/member/neo/img/left_img.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/line.gif b/mobile/skin/member/neo/img/line.gif deleted file mode 100644 index af17ed4fb..000000000 Binary files a/mobile/skin/member/neo/img/line.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/login_img.gif b/mobile/skin/member/neo/img/login_img.gif deleted file mode 100644 index 7dce2daa4..000000000 Binary files a/mobile/skin/member/neo/img/login_img.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/login_table_bg.gif b/mobile/skin/member/neo/img/login_table_bg.gif deleted file mode 100644 index 8abb3747d..000000000 Binary files a/mobile/skin/member/neo/img/login_table_bg.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/login_table_bg_top.gif b/mobile/skin/member/neo/img/login_table_bg_top.gif deleted file mode 100644 index 13a159270..000000000 Binary files a/mobile/skin/member/neo/img/login_table_bg_top.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/login_title.gif b/mobile/skin/member/neo/img/login_title.gif deleted file mode 100644 index 56ccd2be0..000000000 Binary files a/mobile/skin/member/neo/img/login_title.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/mid_line.gif b/mobile/skin/member/neo/img/mid_line.gif deleted file mode 100644 index 71bfc1f5a..000000000 Binary files a/mobile/skin/member/neo/img/mid_line.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/modify_img.gif b/mobile/skin/member/neo/img/modify_img.gif deleted file mode 100644 index 32d6422df..000000000 Binary files a/mobile/skin/member/neo/img/modify_img.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/modify_table_bg.gif b/mobile/skin/member/neo/img/modify_table_bg.gif deleted file mode 100644 index 8abb3747d..000000000 Binary files a/mobile/skin/member/neo/img/modify_table_bg.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/modify_table_bg_top.gif b/mobile/skin/member/neo/img/modify_table_bg_top.gif deleted file mode 100644 index 13a159270..000000000 Binary files a/mobile/skin/member/neo/img/modify_table_bg_top.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/ok_btn.gif b/mobile/skin/member/neo/img/ok_btn.gif deleted file mode 100644 index bed82275b..000000000 Binary files a/mobile/skin/member/neo/img/ok_btn.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/ok_button.gif b/mobile/skin/member/neo/img/ok_button.gif deleted file mode 100644 index 1da1365ff..000000000 Binary files a/mobile/skin/member/neo/img/ok_button.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/post_search_btn.gif b/mobile/skin/member/neo/img/post_search_btn.gif deleted file mode 100644 index 6a27171a1..000000000 Binary files a/mobile/skin/member/neo/img/post_search_btn.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/right_img.gif b/mobile/skin/member/neo/img/right_img.gif deleted file mode 100644 index 211f7e1c9..000000000 Binary files a/mobile/skin/member/neo/img/right_img.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/s_title_1.gif b/mobile/skin/member/neo/img/s_title_1.gif deleted file mode 100644 index 7da6d07ef..000000000 Binary files a/mobile/skin/member/neo/img/s_title_1.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/secrecy_img.gif b/mobile/skin/member/neo/img/secrecy_img.gif deleted file mode 100644 index 1c66aa6f2..000000000 Binary files a/mobile/skin/member/neo/img/secrecy_img.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/secrecy_table_bg_top.gif b/mobile/skin/member/neo/img/secrecy_table_bg_top.gif deleted file mode 100644 index 13a159270..000000000 Binary files a/mobile/skin/member/neo/img/secrecy_table_bg_top.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/secrecy_title.gif b/mobile/skin/member/neo/img/secrecy_title.gif deleted file mode 100644 index f3525c372..000000000 Binary files a/mobile/skin/member/neo/img/secrecy_title.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/self_intro_bg.gif b/mobile/skin/member/neo/img/self_intro_bg.gif deleted file mode 100644 index 598c9fcb3..000000000 Binary files a/mobile/skin/member/neo/img/self_intro_bg.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/self_intro_bg_1.gif b/mobile/skin/member/neo/img/self_intro_bg_1.gif deleted file mode 100644 index 82d58b6bb..000000000 Binary files a/mobile/skin/member/neo/img/self_intro_bg_1.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/self_intro_icon_01.gif b/mobile/skin/member/neo/img/self_intro_icon_01.gif deleted file mode 100644 index 74897e425..000000000 Binary files a/mobile/skin/member/neo/img/self_intro_icon_01.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/step_01.gif b/mobile/skin/member/neo/img/step_01.gif deleted file mode 100644 index 06bc2c75e..000000000 Binary files a/mobile/skin/member/neo/img/step_01.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/step_02.gif b/mobile/skin/member/neo/img/step_02.gif deleted file mode 100644 index 983c7ad29..000000000 Binary files a/mobile/skin/member/neo/img/step_02.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/text_title_01.gif b/mobile/skin/member/neo/img/text_title_01.gif deleted file mode 100644 index fe7d29c30..000000000 Binary files a/mobile/skin/member/neo/img/text_title_01.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/text_title_02.gif b/mobile/skin/member/neo/img/text_title_02.gif deleted file mode 100644 index 7dd386648..000000000 Binary files a/mobile/skin/member/neo/img/text_title_02.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/top_line.gif b/mobile/skin/member/neo/img/top_line.gif deleted file mode 100644 index 2c3179a85..000000000 Binary files a/mobile/skin/member/neo/img/top_line.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/zip_img_01.gif b/mobile/skin/member/neo/img/zip_img_01.gif deleted file mode 100644 index 07a1e9551..000000000 Binary files a/mobile/skin/member/neo/img/zip_img_01.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/zip_img_02.gif b/mobile/skin/member/neo/img/zip_img_02.gif deleted file mode 100644 index 8285e961e..000000000 Binary files a/mobile/skin/member/neo/img/zip_img_02.gif and /dev/null differ diff --git a/mobile/skin/member/neo/img/zip_img_03.gif b/mobile/skin/member/neo/img/zip_img_03.gif deleted file mode 100644 index 8d862fd59..000000000 Binary files a/mobile/skin/member/neo/img/zip_img_03.gif and /dev/null differ diff --git a/mobile/skin/member/neo/login.skin.php b/mobile/skin/member/neo/login.skin.php deleted file mode 100644 index ded13682e..000000000 --- a/mobile/skin/member/neo/login.skin.php +++ /dev/null @@ -1,43 +0,0 @@ - - -
    - - -
    - - - - - - - -
    - -
    -

    회원로그인 안내

    -

    - 회원아이디 및 패스워드가 기억 안나실 때는 아이디/패스워드 찾기를 이용하십시오.
    - 아직 회원이 아니시라면 회원으로 가입 후 이용해 주십시오. -

    - 아이디/패스워드 찾기 - 회원가입 -
    - -
    - - diff --git a/mobile/skin/member/neo/login_check.skin.php b/mobile/skin/member/neo/login_check.skin.php deleted file mode 100644 index c3825c12a..000000000 --- a/mobile/skin/member/neo/login_check.skin.php +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/mobile/skin/member/neo/member_confirm.skin.php b/mobile/skin/member/neo/member_confirm.skin.php deleted file mode 100644 index 0aa638400..000000000 --- a/mobile/skin/member/neo/member_confirm.skin.php +++ /dev/null @@ -1,34 +0,0 @@ - - - - -
    - - -
    - 패스워드 확인 - -

    회원님의 정보를 안전하게 보호하기 위해 패스워드를 한번 더 확인합니다.

    - - 회원아이디 - - - - - -
    -
    - - diff --git a/mobile/skin/member/neo/memo.skin.php b/mobile/skin/member/neo/memo.skin.php deleted file mode 100644 index 058b378cd..000000000 --- a/mobile/skin/member/neo/memo.skin.php +++ /dev/null @@ -1,43 +0,0 @@ - - -
    -

    - - - - - - - - - - - - - - - - - - - - - - - "; } ?> - -
    - 전체 쪽지
    - 쪽지 보관일수는 최장 일 입니다. -
    보낸시간읽은시간관리
    삭제
    자료가 없습니다.
    - -
    - 창닫기 -
    -
    diff --git a/mobile/skin/member/neo/memo_form.skin.php b/mobile/skin/member/neo/memo_form.skin.php deleted file mode 100644 index 03036f6d0..000000000 --- a/mobile/skin/member/neo/memo_form.skin.php +++ /dev/null @@ -1,52 +0,0 @@ - - -
    -

    쪽지보내기

    - - - -
    - - - - - - - - - - - - - - - - -
    쪽지쓰기
    - - 여러 회원에게 보낼때는 컴마(,)로 구분하세요. -
    자동등록방지 - -
    - -
    - - 창닫기 -
    -
    -
    - - diff --git a/mobile/skin/member/neo/memo_view.skin.php b/mobile/skin/member/neo/memo_view.skin.php deleted file mode 100644 index 298ee6824..000000000 --- a/mobile/skin/member/neo/memo_view.skin.php +++ /dev/null @@ -1,34 +0,0 @@ - - -
    -

    - -

    - -
    -

    쪽지내용

    -

    - -

    -
    - - diff --git a/mobile/skin/member/neo/password.skin.php b/mobile/skin/member/neo/password.skin.php deleted file mode 100644 index 1c0d328d1..000000000 --- a/mobile/skin/member/neo/password.skin.php +++ /dev/null @@ -1,26 +0,0 @@ - - -
    - - - - - - - - -
    - 패스워드 확인 -

    비밀글 기능으로 보호된 글입니다. 작성자와 관리자만 열람하실 수 있습니다.
    작성자 본인이시라면 패스워드를 입력하세요.

    - - - -
    - -
    - - diff --git a/mobile/skin/member/neo/password_lost.skin.php b/mobile/skin/member/neo/password_lost.skin.php deleted file mode 100644 index 2a90332f6..000000000 --- a/mobile/skin/member/neo/password_lost.skin.php +++ /dev/null @@ -1,46 +0,0 @@ - - -
    -

    아이디/패스워드 찾기

    - -
    -
    - 이메일 주소 입력 -

    - 회원가입 시 등록하신 이메일 주소를 입력해 주세요.
    - 해당 이메일로 아이디와 패스워드 정보를 보내드립니다. -

    - - -
    - -
    - - 창닫기 -
    -
    -
    - - diff --git a/mobile/skin/member/neo/profile.skin.php b/mobile/skin/member/neo/profile.skin.php deleted file mode 100644 index 5580c1fa7..000000000 --- a/mobile/skin/member/neo/profile.skin.php +++ /dev/null @@ -1,43 +0,0 @@ - - -
    -

    님의 프로필

    - - - - - - - - - - - - - - - - - - - - - - - - - - -
    회원권한
    포인트
    홈페이지
    회원가입일= $mb[mb_level]) ? substr($mb[mb_datetime],0,10) ." (".$mb_reg_after." 일)" : "알 수 없음"; ?>
    최종접속일= $mb[mb_level]) ? $mb[mb_today_login] : "알 수 없음";?>
    - -
    -

    님의 자기소개

    -

    -
    - -
    - 창닫기 -
    -
    diff --git a/mobile/skin/member/neo/register.skin.php b/mobile/skin/member/neo/register.skin.php deleted file mode 100644 index fd40535ea..000000000 --- a/mobile/skin/member/neo/register.skin.php +++ /dev/null @@ -1,54 +0,0 @@ - - -
    - -
    -

    회원가입약관

    - -
    - - - - -
    -
    - -
    -

    개인정보수집이용안내

    - -
    - - - - -
    -
    - -
    - -
    - -
    - - diff --git a/mobile/skin/member/neo/register_form.skin.php b/mobile/skin/member/neo/register_form.skin.php deleted file mode 100644 index e605e540d..000000000 --- a/mobile/skin/member/neo/register_form.skin.php +++ /dev/null @@ -1,303 +0,0 @@ - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - -
    사이트 이용정보 입력
    - title="회원아이디"> - - 영문자, 숫자, _ 만 입력 가능. 최소 3자이상 입력하세요. -
    title="패스워드">
    title="패스워드 확인">
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    개인정보 입력
    - title="이름"> - 공백없이 한글만 입력하세요."; } ?> -
    - - - - - 공백없이 한글,영문,숫자만 입력 가능 (한글2자, 영문4자 이상)
    - 별명을 바꾸시면 앞으로 일 이내에는 변경 할 수 없습니다. -
    -
    - - " maxlength="100" size="50" value='' title="E-mail"> - - - - - - - -
    " maxlength="255" value="">
    " maxlength="20" value="">
    " maxlength="20" value="">
    주소 - " maxlength="3" readonly value="" title="우편번호 앞자리"> - - - " maxlength="3" readonly value="" title="우편번호 뒷자리"> - 주소찾기 - " readonly value="" title="행정구역주소"> - " value="" title="상세주소"> -
    - - - - - - - - - - - - - - - - - -= $config['cf_icon_level']) { ?> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    기타 개인설정
    - - - - - - - 이미지 크기는 가로 픽셀, 세로 픽셀 이하로 해주세요.
    - gif만 가능하며 용량 바이트 이하만 등록됩니다. -
    -
    - > - 정보 메일을 받겠습니다. -
    - > - 핸드폰 문자메세지를 받겠습니다. -
    - - > - 다른분들이 나의 정보를 볼 수 있도록 합니다. - - 정보공개를 바꾸시면 앞으로 일 이내에는 변경이 안됩니다. - -
    정보공개 - - - 정보공개는 수정후 일 이내, 까지는 변경이 안됩니다.
    - 이렇게 하는 이유는 잦은 정보공개 수정으로 인하여 쪽지를 보낸 후 받지 않는 경우를 막기 위해서 입니다. -
    -
    자동등록방지
    - -
    - - 취소 -
    -
    - - diff --git a/mobile/skin/member/neo/register_result.skin.php b/mobile/skin/member/neo/register_result.skin.php deleted file mode 100644 index 7092cb97e..000000000 --- a/mobile/skin/member/neo/register_result.skin.php +++ /dev/null @@ -1,43 +0,0 @@ - - -
    - -
    - -

    - 님의 회원가입을 진심으로 축하합니다.
    -

    - - -

    - 회원 가입 시 입력하신 이메일 주소로 인증메일이 발송되었습니다.
    - 발송된 인증메일을 확인하신 후 인증처리를 하시면 사이트를 원활하게 이용하실 수 있습니다. -

    -
    - 아이디 -
    - 이메일 주소 - -
    -

    - 이메일 주소를 잘못 입력하셨다면, 사이트 관리자에게 문의해주시기 바랍니다. -

    - - -

    - 회원님의 패스워드는 아무도 알 수 없는 암호화 코드로 저장되므로 안심하셔도 좋습니다.
    - 아이디, 패스워드 분실시에는 회원가입시 입력하신 패스워드 분실시 질문, 답변을 이용하여 찾을 수 있습니다. -

    - -

    - 회원 탈퇴는 언제든지 가능하며 일정기간이 지난 후, 회원님의 소중한 정보는 삭제하고 있습니다.
    - 감사합니다. -

    - - - -
    \ No newline at end of file diff --git a/mobile/skin/member/neo/register_update.skin.php b/mobile/skin/member/neo/register_update.skin.php deleted file mode 100644 index 34fef072a..000000000 --- a/mobile/skin/member/neo/register_update.skin.php +++ /dev/null @@ -1,5 +0,0 @@ - diff --git a/mobile/skin/member/neo/scrap.skin.php b/mobile/skin/member/neo/scrap.skin.php deleted file mode 100644 index 5341f55d4..000000000 --- a/mobile/skin/member/neo/scrap.skin.php +++ /dev/null @@ -1,47 +0,0 @@ - - -
    -

    - - - - - - - - - - - - - - - - - - - - - - - - "; ?> - -
    스크랩 목록
    번호게시판제목보관일시삭제
    삭제
    자료가 없습니다.
    - -
    - -
    -
    - - \ No newline at end of file diff --git a/mobile/skin/member/neo/scrap_popin.skin.php b/mobile/skin/member/neo/scrap_popin.skin.php deleted file mode 100644 index 662b48735..000000000 --- a/mobile/skin/member/neo/scrap_popin.skin.php +++ /dev/null @@ -1,34 +0,0 @@ - - -
    -

    스크랩하기

    - -
    - - - - - - - - - - - - - - - -
    스크랩 확인 및 댓글 달기
    제목
    - -

    - 스크랩을 하시면서 감사 혹은 격려의 댓글을 남기실 수 있습니다. -

    - -
    - -
    -
    -
    \ No newline at end of file diff --git a/mobile/skin/member/neo/zip.skin.php b/mobile/skin/member/neo/zip.skin.php deleted file mode 100644 index e9068402f..000000000 --- a/mobile/skin/member/neo/zip.skin.php +++ /dev/null @@ -1,63 +0,0 @@ - - -
    -

    - -
    - - - - - - -
    - 우편번호 검색 - - - -
    - - - - - - - 0) { ?> -
    -
    건 가나다순 정렬
    -
    -
      - -
    • -
    • - -
    -
    -
    - -

    검색결과가 끝났습니다.

    - -
    - 창닫기 -
    - - - -
    diff --git a/mobile/skin/new/basic/img/dot_bg.gif b/mobile/skin/new/basic/img/dot_bg.gif deleted file mode 100644 index bd5f0a0d7..000000000 Binary files a/mobile/skin/new/basic/img/dot_bg.gif and /dev/null differ diff --git a/mobile/skin/new/basic/img/list_top_01.gif b/mobile/skin/new/basic/img/list_top_01.gif deleted file mode 100644 index 200b1e106..000000000 Binary files a/mobile/skin/new/basic/img/list_top_01.gif and /dev/null differ diff --git a/mobile/skin/new/basic/img/list_top_02.gif b/mobile/skin/new/basic/img/list_top_02.gif deleted file mode 100644 index 60cbe21c6..000000000 Binary files a/mobile/skin/new/basic/img/list_top_02.gif and /dev/null differ diff --git a/mobile/skin/new/basic/img/list_top_03.gif b/mobile/skin/new/basic/img/list_top_03.gif deleted file mode 100644 index 05b85066c..000000000 Binary files a/mobile/skin/new/basic/img/list_top_03.gif and /dev/null differ diff --git a/mobile/skin/new/basic/img/list_top_04.gif b/mobile/skin/new/basic/img/list_top_04.gif deleted file mode 100644 index 16a44b0a7..000000000 Binary files a/mobile/skin/new/basic/img/list_top_04.gif and /dev/null differ diff --git a/mobile/skin/new/basic/new.skin.php b/mobile/skin/new/basic/new.skin.php deleted file mode 100644 index a0eef5908..000000000 --- a/mobile/skin/new/basic/new.skin.php +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - -
    - - -  회원아이디 : - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -HEREDOC; -} -?> - - - - - - - -
    그룹게시판제목이름일시
    {$gr_subject}{$bo_subject} {$list[$i][comment]}{$wr_subject}{$list[$i][name]}{$list[$i][datetime2]}
    게시물이 없습니다.
    diff --git a/mobile/skin/new/neo/img/dot_bg.gif b/mobile/skin/new/neo/img/dot_bg.gif deleted file mode 100644 index bd5f0a0d7..000000000 Binary files a/mobile/skin/new/neo/img/dot_bg.gif and /dev/null differ diff --git a/mobile/skin/new/neo/img/list_top_01.gif b/mobile/skin/new/neo/img/list_top_01.gif deleted file mode 100644 index 200b1e106..000000000 Binary files a/mobile/skin/new/neo/img/list_top_01.gif and /dev/null differ diff --git a/mobile/skin/new/neo/img/list_top_02.gif b/mobile/skin/new/neo/img/list_top_02.gif deleted file mode 100644 index 60cbe21c6..000000000 Binary files a/mobile/skin/new/neo/img/list_top_02.gif and /dev/null differ diff --git a/mobile/skin/new/neo/img/list_top_03.gif b/mobile/skin/new/neo/img/list_top_03.gif deleted file mode 100644 index 05b85066c..000000000 Binary files a/mobile/skin/new/neo/img/list_top_03.gif and /dev/null differ diff --git a/mobile/skin/new/neo/img/list_top_04.gif b/mobile/skin/new/neo/img/list_top_04.gif deleted file mode 100644 index 16a44b0a7..000000000 Binary files a/mobile/skin/new/neo/img/list_top_04.gif and /dev/null differ diff --git a/mobile/skin/new/neo/new.skin.php b/mobile/skin/new/neo/new.skin.php deleted file mode 100644 index de1d179ad..000000000 --- a/mobile/skin/new/neo/new.skin.php +++ /dev/null @@ -1,65 +0,0 @@ - - - -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - -"; -?> - -
    그룹게시판제목이름일시
    게시물이 없습니다.
    - -
    - -
    diff --git a/mobile/skin/outlogin/basic/img/admin.gif b/mobile/skin/outlogin/basic/img/admin.gif deleted file mode 100644 index adf17872e..000000000 Binary files a/mobile/skin/outlogin/basic/img/admin.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/leave_button.gif b/mobile/skin/outlogin/basic/img/leave_button.gif deleted file mode 100644 index b7ea25783..000000000 Binary files a/mobile/skin/outlogin/basic/img/leave_button.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_auto.gif b/mobile/skin/outlogin/basic/img/login_auto.gif deleted file mode 100644 index 968be8915..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_auto.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_button.gif b/mobile/skin/outlogin/basic/img/login_button.gif deleted file mode 100644 index 4402ac228..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_button.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_down.gif b/mobile/skin/outlogin/basic/img/login_down.gif deleted file mode 100644 index 8c684e938..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_down.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_id.gif b/mobile/skin/outlogin/basic/img/login_id.gif deleted file mode 100644 index e84382fea..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_id.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_ing_icon.gif b/mobile/skin/outlogin/basic/img/login_ing_icon.gif deleted file mode 100644 index 4ecc023d2..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_ing_icon.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_ing_top.gif b/mobile/skin/outlogin/basic/img/login_ing_top.gif deleted file mode 100644 index a5a918b61..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_ing_top.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_join_button.gif b/mobile/skin/outlogin/basic/img/login_join_button.gif deleted file mode 100644 index 622e25fc0..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_join_button.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_left_bg.gif b/mobile/skin/outlogin/basic/img/login_left_bg.gif deleted file mode 100644 index 2faea8e47..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_left_bg.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_memo.gif b/mobile/skin/outlogin/basic/img/login_memo.gif deleted file mode 100644 index c5902e65a..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_memo.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_modify.gif b/mobile/skin/outlogin/basic/img/login_modify.gif deleted file mode 100644 index d1ffc16ce..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_modify.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_pw.gif b/mobile/skin/outlogin/basic/img/login_pw.gif deleted file mode 100644 index 6f82fc2b2..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_pw.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_pw_find_button.gif b/mobile/skin/outlogin/basic/img/login_pw_find_button.gif deleted file mode 100644 index d74df4d04..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_pw_find_button.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_right_bg.gif b/mobile/skin/outlogin/basic/img/login_right_bg.gif deleted file mode 100644 index 2faea8e47..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_right_bg.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/login_top.gif b/mobile/skin/outlogin/basic/img/login_top.gif deleted file mode 100644 index d9b2ac8c3..000000000 Binary files a/mobile/skin/outlogin/basic/img/login_top.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/logout_button.gif b/mobile/skin/outlogin/basic/img/logout_button.gif deleted file mode 100644 index 8d7b31077..000000000 Binary files a/mobile/skin/outlogin/basic/img/logout_button.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/img/scrap_button.gif b/mobile/skin/outlogin/basic/img/scrap_button.gif deleted file mode 100644 index c2b5070df..000000000 Binary files a/mobile/skin/outlogin/basic/img/scrap_button.gif and /dev/null differ diff --git a/mobile/skin/outlogin/basic/outlogin.skin.1.php b/mobile/skin/outlogin/basic/outlogin.skin.1.php deleted file mode 100644 index 912d35803..000000000 --- a/mobile/skin/outlogin/basic/outlogin.skin.1.php +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - -
    - -
    -
    -
    -
    - - - - - -
    - - - - - - - - - - -
    -
    -
    -
    -
    -
    -
    - - - -
    -
    -
    -
    -
    -
    - - - diff --git a/mobile/skin/outlogin/basic/outlogin.skin.2.php b/mobile/skin/outlogin/basic/outlogin.skin.2.php deleted file mode 100644 index 9f111f000..000000000 --- a/mobile/skin/outlogin/basic/outlogin.skin.2.php +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - -
    포인트 :
    - - - - -
    - - - - - - - - - - - - - -
    쪽지 ()
    - - - diff --git a/mobile/skin/outlogin/neo/img/admin.gif b/mobile/skin/outlogin/neo/img/admin.gif deleted file mode 100644 index adf17872e..000000000 Binary files a/mobile/skin/outlogin/neo/img/admin.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/leave_button.gif b/mobile/skin/outlogin/neo/img/leave_button.gif deleted file mode 100644 index b7ea25783..000000000 Binary files a/mobile/skin/outlogin/neo/img/leave_button.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_auto.gif b/mobile/skin/outlogin/neo/img/login_auto.gif deleted file mode 100644 index 968be8915..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_auto.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_button.gif b/mobile/skin/outlogin/neo/img/login_button.gif deleted file mode 100644 index 4402ac228..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_button.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_down.gif b/mobile/skin/outlogin/neo/img/login_down.gif deleted file mode 100644 index 8c684e938..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_down.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_id.gif b/mobile/skin/outlogin/neo/img/login_id.gif deleted file mode 100644 index e84382fea..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_id.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_ing_icon.gif b/mobile/skin/outlogin/neo/img/login_ing_icon.gif deleted file mode 100644 index 4ecc023d2..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_ing_icon.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_ing_top.gif b/mobile/skin/outlogin/neo/img/login_ing_top.gif deleted file mode 100644 index a5a918b61..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_ing_top.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_join_button.gif b/mobile/skin/outlogin/neo/img/login_join_button.gif deleted file mode 100644 index 622e25fc0..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_join_button.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_left_bg.gif b/mobile/skin/outlogin/neo/img/login_left_bg.gif deleted file mode 100644 index 2faea8e47..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_left_bg.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_memo.gif b/mobile/skin/outlogin/neo/img/login_memo.gif deleted file mode 100644 index c5902e65a..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_memo.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_modify.gif b/mobile/skin/outlogin/neo/img/login_modify.gif deleted file mode 100644 index d1ffc16ce..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_modify.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_pw.gif b/mobile/skin/outlogin/neo/img/login_pw.gif deleted file mode 100644 index 6f82fc2b2..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_pw.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_pw_find_button.gif b/mobile/skin/outlogin/neo/img/login_pw_find_button.gif deleted file mode 100644 index d74df4d04..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_pw_find_button.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_right_bg.gif b/mobile/skin/outlogin/neo/img/login_right_bg.gif deleted file mode 100644 index 2faea8e47..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_right_bg.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/login_top.gif b/mobile/skin/outlogin/neo/img/login_top.gif deleted file mode 100644 index d9b2ac8c3..000000000 Binary files a/mobile/skin/outlogin/neo/img/login_top.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/logout_button.gif b/mobile/skin/outlogin/neo/img/logout_button.gif deleted file mode 100644 index 8d7b31077..000000000 Binary files a/mobile/skin/outlogin/neo/img/logout_button.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/img/scrap_button.gif b/mobile/skin/outlogin/neo/img/scrap_button.gif deleted file mode 100644 index c2b5070df..000000000 Binary files a/mobile/skin/outlogin/neo/img/scrap_button.gif and /dev/null differ diff --git a/mobile/skin/outlogin/neo/outlogin.skin.1.php b/mobile/skin/outlogin/neo/outlogin.skin.1.php deleted file mode 100644 index 94ee6e364..000000000 --- a/mobile/skin/outlogin/neo/outlogin.skin.1.php +++ /dev/null @@ -1,65 +0,0 @@ - - -
    -

    멤버쉽

    - -
    -
    - - - - - - - -
    -
    -
    - - - diff --git a/mobile/skin/outlogin/neo/outlogin.skin.2.php b/mobile/skin/outlogin/neo/outlogin.skin.2.php deleted file mode 100644 index d8f77a8de..000000000 --- a/mobile/skin/outlogin/neo/outlogin.skin.2.php +++ /dev/null @@ -1,33 +0,0 @@ - - - -
    -
    -

    나의 이용정보

    - 님 - 관리자 -
    - - -
    - - - diff --git a/mobile/skin/poll/basic/img/a.gif b/mobile/skin/poll/basic/img/a.gif deleted file mode 100644 index c8dc185ac..000000000 Binary files a/mobile/skin/poll/basic/img/a.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/admin.gif b/mobile/skin/poll/basic/img/admin.gif deleted file mode 100644 index adf17872e..000000000 Binary files a/mobile/skin/poll/basic/img/admin.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/bg_b.gif b/mobile/skin/poll/basic/img/bg_b.gif deleted file mode 100644 index eed737cea..000000000 Binary files a/mobile/skin/poll/basic/img/bg_b.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/bg_bl.gif b/mobile/skin/poll/basic/img/bg_bl.gif deleted file mode 100644 index e8b77cf2c..000000000 Binary files a/mobile/skin/poll/basic/img/bg_bl.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/bg_br.gif b/mobile/skin/poll/basic/img/bg_br.gif deleted file mode 100644 index efa202f83..000000000 Binary files a/mobile/skin/poll/basic/img/bg_br.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/bg_mc.gif b/mobile/skin/poll/basic/img/bg_mc.gif deleted file mode 100644 index dd6826885..000000000 Binary files a/mobile/skin/poll/basic/img/bg_mc.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/bg_mcl.gif b/mobile/skin/poll/basic/img/bg_mcl.gif deleted file mode 100644 index 887e544c0..000000000 Binary files a/mobile/skin/poll/basic/img/bg_mcl.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/bg_mcr.gif b/mobile/skin/poll/basic/img/bg_mcr.gif deleted file mode 100644 index 8a164468b..000000000 Binary files a/mobile/skin/poll/basic/img/bg_mcr.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/bg_ml.gif b/mobile/skin/poll/basic/img/bg_ml.gif deleted file mode 100644 index 2f9aac8e7..000000000 Binary files a/mobile/skin/poll/basic/img/bg_ml.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/bg_mr.gif b/mobile/skin/poll/basic/img/bg_mr.gif deleted file mode 100644 index 8e9a474b7..000000000 Binary files a/mobile/skin/poll/basic/img/bg_mr.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/bg_t.gif b/mobile/skin/poll/basic/img/bg_t.gif deleted file mode 100644 index a505103e6..000000000 Binary files a/mobile/skin/poll/basic/img/bg_t.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/bg_tl.gif b/mobile/skin/poll/basic/img/bg_tl.gif deleted file mode 100644 index 785c791a5..000000000 Binary files a/mobile/skin/poll/basic/img/bg_tl.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/bg_tr.gif b/mobile/skin/poll/basic/img/bg_tr.gif deleted file mode 100644 index 046a0684b..000000000 Binary files a/mobile/skin/poll/basic/img/bg_tr.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/poll_button.gif b/mobile/skin/poll/basic/img/poll_button.gif deleted file mode 100644 index 3a2a0c8a5..000000000 Binary files a/mobile/skin/poll/basic/img/poll_button.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/poll_view.gif b/mobile/skin/poll/basic/img/poll_view.gif deleted file mode 100644 index 8155e7b65..000000000 Binary files a/mobile/skin/poll/basic/img/poll_view.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/q.gif b/mobile/skin/poll/basic/img/q.gif deleted file mode 100644 index 39155f08b..000000000 Binary files a/mobile/skin/poll/basic/img/q.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/img/title.gif b/mobile/skin/poll/basic/img/title.gif deleted file mode 100644 index 7b4cba5ba..000000000 Binary files a/mobile/skin/poll/basic/img/title.gif and /dev/null differ diff --git a/mobile/skin/poll/basic/poll.skin.php b/mobile/skin/poll/basic/poll.skin.php deleted file mode 100644 index 1c67d2897..000000000 --- a/mobile/skin/poll/basic/poll.skin.php +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - - - - -
    - -
    - - - - - - - - -
    "; } else { echo " "; } ?>
    - -
    - - diff --git a/mobile/skin/poll/basic/poll_result.skin.php b/mobile/skin/poll/basic/poll_result.skin.php deleted file mode 100644 index aae68e195..000000000 --- a/mobile/skin/poll/basic/poll_result.skin.php +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - -
    - - - - -
    - - - - - - - -
    질 문l (전체 표)
    - - - - - -
    - - - - - -
    - - - - - - - - -
    . 표 (%)
    - - - - - -
    - - - - = $po[po_level]) { ?> -
    - - - - - - -
    - - - - - - - - -
    - - -
    - - -   - - 이름   - - - 의견   -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - -
    "; } ?>
     
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - - - -
     
     
    -
    - - diff --git a/mobile/skin/poll/neo/img/a.gif b/mobile/skin/poll/neo/img/a.gif deleted file mode 100644 index c8dc185ac..000000000 Binary files a/mobile/skin/poll/neo/img/a.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/admin.gif b/mobile/skin/poll/neo/img/admin.gif deleted file mode 100644 index adf17872e..000000000 Binary files a/mobile/skin/poll/neo/img/admin.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/bg_b.gif b/mobile/skin/poll/neo/img/bg_b.gif deleted file mode 100644 index eed737cea..000000000 Binary files a/mobile/skin/poll/neo/img/bg_b.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/bg_bl.gif b/mobile/skin/poll/neo/img/bg_bl.gif deleted file mode 100644 index e8b77cf2c..000000000 Binary files a/mobile/skin/poll/neo/img/bg_bl.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/bg_br.gif b/mobile/skin/poll/neo/img/bg_br.gif deleted file mode 100644 index efa202f83..000000000 Binary files a/mobile/skin/poll/neo/img/bg_br.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/bg_mc.gif b/mobile/skin/poll/neo/img/bg_mc.gif deleted file mode 100644 index dd6826885..000000000 Binary files a/mobile/skin/poll/neo/img/bg_mc.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/bg_mcl.gif b/mobile/skin/poll/neo/img/bg_mcl.gif deleted file mode 100644 index 887e544c0..000000000 Binary files a/mobile/skin/poll/neo/img/bg_mcl.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/bg_mcr.gif b/mobile/skin/poll/neo/img/bg_mcr.gif deleted file mode 100644 index 8a164468b..000000000 Binary files a/mobile/skin/poll/neo/img/bg_mcr.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/bg_ml.gif b/mobile/skin/poll/neo/img/bg_ml.gif deleted file mode 100644 index 2f9aac8e7..000000000 Binary files a/mobile/skin/poll/neo/img/bg_ml.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/bg_mr.gif b/mobile/skin/poll/neo/img/bg_mr.gif deleted file mode 100644 index 8e9a474b7..000000000 Binary files a/mobile/skin/poll/neo/img/bg_mr.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/bg_t.gif b/mobile/skin/poll/neo/img/bg_t.gif deleted file mode 100644 index a505103e6..000000000 Binary files a/mobile/skin/poll/neo/img/bg_t.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/bg_tl.gif b/mobile/skin/poll/neo/img/bg_tl.gif deleted file mode 100644 index 785c791a5..000000000 Binary files a/mobile/skin/poll/neo/img/bg_tl.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/bg_tr.gif b/mobile/skin/poll/neo/img/bg_tr.gif deleted file mode 100644 index 046a0684b..000000000 Binary files a/mobile/skin/poll/neo/img/bg_tr.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/poll_button.gif b/mobile/skin/poll/neo/img/poll_button.gif deleted file mode 100644 index 3a2a0c8a5..000000000 Binary files a/mobile/skin/poll/neo/img/poll_button.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/poll_view.gif b/mobile/skin/poll/neo/img/poll_view.gif deleted file mode 100644 index 8155e7b65..000000000 Binary files a/mobile/skin/poll/neo/img/poll_view.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/q.gif b/mobile/skin/poll/neo/img/q.gif deleted file mode 100644 index 39155f08b..000000000 Binary files a/mobile/skin/poll/neo/img/q.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/img/title.gif b/mobile/skin/poll/neo/img/title.gif deleted file mode 100644 index 7b4cba5ba..000000000 Binary files a/mobile/skin/poll/neo/img/title.gif and /dev/null differ diff --git a/mobile/skin/poll/neo/poll.skin.php b/mobile/skin/poll/neo/poll.skin.php deleted file mode 100644 index 757797e42..000000000 --- a/mobile/skin/poll/neo/poll.skin.php +++ /dev/null @@ -1,61 +0,0 @@ - - -
    - - -
    -
    -

    설문조사

    - 설문조사 관리 -

    -
    -
      - -
    • - -
    - -
    -
    - - \ No newline at end of file diff --git a/mobile/skin/poll/neo/poll_result.skin.php b/mobile/skin/poll/neo/poll_result.skin.php deleted file mode 100644 index 940d4e48d..000000000 --- a/mobile/skin/poll/neo/poll_result.skin.php +++ /dev/null @@ -1,91 +0,0 @@ - - -
    -

    - -
    -

    결과

    - -
    -
    전체
    -
    -
      - -
    1. -

      - - % -

      -
      - -
      -
    2. - -
    -
    -
    -
    - - -
    -

    이 설문에 대한 기타의견

    - - -
    -
    -

    님의 의견

    - - "; } ?> -
    -

    - -

    -
    - - - = $po['po_level']) { ?> -
    - - - -
    - 의견남기기 -

    - - - - - - - - -
    -
    - - - - -
    - - -
    -

    다른 투표 결과 보기

    - -
    - -
    - 창닫기 -
    -
    \ No newline at end of file diff --git a/mobile/skin/popular/basic/img/dot_bg.gif b/mobile/skin/popular/basic/img/dot_bg.gif deleted file mode 100644 index bd5f0a0d7..000000000 Binary files a/mobile/skin/popular/basic/img/dot_bg.gif and /dev/null differ diff --git a/mobile/skin/popular/basic/img/icon.gif b/mobile/skin/popular/basic/img/icon.gif deleted file mode 100644 index 49abe3199..000000000 Binary files a/mobile/skin/popular/basic/img/icon.gif and /dev/null differ diff --git a/mobile/skin/popular/basic/img/visit_bg.gif b/mobile/skin/popular/basic/img/visit_bg.gif deleted file mode 100644 index bc8b17231..000000000 Binary files a/mobile/skin/popular/basic/img/visit_bg.gif and /dev/null differ diff --git a/mobile/skin/popular/basic/popular.skin.php b/mobile/skin/popular/basic/popular.skin.php deleted file mode 100644 index bf7a8bde8..000000000 --- a/mobile/skin/popular/basic/popular.skin.php +++ /dev/null @@ -1,9 +0,0 @@ - -인기검색어 : -{$list[$i][pp_word]} "; -} -?> \ No newline at end of file diff --git a/mobile/skin/popular/neo/img/dot_bg.gif b/mobile/skin/popular/neo/img/dot_bg.gif deleted file mode 100644 index bd5f0a0d7..000000000 Binary files a/mobile/skin/popular/neo/img/dot_bg.gif and /dev/null differ diff --git a/mobile/skin/popular/neo/img/icon.gif b/mobile/skin/popular/neo/img/icon.gif deleted file mode 100644 index 49abe3199..000000000 Binary files a/mobile/skin/popular/neo/img/icon.gif and /dev/null differ diff --git a/mobile/skin/popular/neo/img/visit_bg.gif b/mobile/skin/popular/neo/img/visit_bg.gif deleted file mode 100644 index bc8b17231..000000000 Binary files a/mobile/skin/popular/neo/img/visit_bg.gif and /dev/null differ diff --git a/mobile/skin/popular/neo/popular.skin.php b/mobile/skin/popular/neo/popular.skin.php deleted file mode 100644 index 6cb0b7f17..000000000 --- a/mobile/skin/popular/neo/popular.skin.php +++ /dev/null @@ -1,12 +0,0 @@ - - - \ No newline at end of file diff --git a/mobile/skin/search/basic/search.skin.php b/mobile/skin/search/basic/search.skin.php deleted file mode 100644 index ba2aa8177..000000000 --- a/mobile/skin/search/basic/search.skin.php +++ /dev/null @@ -1,120 +0,0 @@ - - -
    - - - - - - - - -
    - - - - - - - - - - -
    - 연산자   - >OR   - >AND -
    -
    -

    - - - - -
    - -
  • 검색된 게시판 리스트 ({$board_count}개의 게시판, ".number_format($total_count)."개의 게시글, ".number_format($page)."/".number_format($total_page)." 페이지)"; - if ($board_count) - { - echo ""; - } - else - { - echo "
    • 검색된 자료가 하나도 없습니다.
    "; - } - } - ?> - - -
  • {$bo_subject[$idx]}에서의 검색결과"; - $comment_href = ""; - for ($i=0; $i
    • "; - if ($list[$idx][$i][wr_is_comment]) - { - echo "[코멘트] "; - $comment_href = "#c_".$list[$idx][$i][wr_id]; - } - echo ""; - echo $list[$idx][$i][subject]; - echo " [새창]
      "; - echo $list[$idx][$i][content]; - echo "
      {$list[$idx][$i][wr_datetime]}   "; - echo $list[$idx][$i][name]; - echo "
    "; - } - } - ?> - -

    - -

  • \ No newline at end of file diff --git a/mobile/skin/search/neo/search.skin.php b/mobile/skin/search/neo/search.skin.php deleted file mode 100644 index 60da8219c..000000000 --- a/mobile/skin/search/neo/search.skin.php +++ /dev/null @@ -1,133 +0,0 @@ - - -

    - -
    - 상세검색 - - - - - - - - - - - > - - > - -
    -
    - -
    - - - -
    -
    에 대한 검색 결과입니다.
    -
    -
      -
    • 개의 게시판
    • -
    • 개의 게시물
    • -
    • 현재 / 페이지 열람 중
    • -
    -
    -
    - - - - -
    -
    검색결과가 있는 게시판 목록
    -
    - -
    -
    - -

    검색된 자료가 하나도 없습니다.

    - - -
    - -
    - -
    에서
    -
    - - -
    - -
    - -
    - -
    - -
    diff --git a/mobile/skin/visit/basic/img/admin.gif b/mobile/skin/visit/basic/img/admin.gif deleted file mode 100644 index adf17872e..000000000 Binary files a/mobile/skin/visit/basic/img/admin.gif and /dev/null differ diff --git a/mobile/skin/visit/basic/img/visit_1.gif b/mobile/skin/visit/basic/img/visit_1.gif deleted file mode 100644 index 433f964a6..000000000 Binary files a/mobile/skin/visit/basic/img/visit_1.gif and /dev/null differ diff --git a/mobile/skin/visit/basic/img/visit_2.gif b/mobile/skin/visit/basic/img/visit_2.gif deleted file mode 100644 index 90c9347e7..000000000 Binary files a/mobile/skin/visit/basic/img/visit_2.gif and /dev/null differ diff --git a/mobile/skin/visit/basic/img/visit_3.gif b/mobile/skin/visit/basic/img/visit_3.gif deleted file mode 100644 index f10b06ca1..000000000 Binary files a/mobile/skin/visit/basic/img/visit_3.gif and /dev/null differ diff --git a/mobile/skin/visit/basic/img/visit_4.gif b/mobile/skin/visit/basic/img/visit_4.gif deleted file mode 100644 index 425b7fa51..000000000 Binary files a/mobile/skin/visit/basic/img/visit_4.gif and /dev/null differ diff --git a/mobile/skin/visit/basic/img/visit_down.gif b/mobile/skin/visit/basic/img/visit_down.gif deleted file mode 100644 index 54b7d9d6a..000000000 Binary files a/mobile/skin/visit/basic/img/visit_down.gif and /dev/null differ diff --git a/mobile/skin/visit/basic/img/visit_top.gif b/mobile/skin/visit/basic/img/visit_top.gif deleted file mode 100644 index 7859a8e5b..000000000 Binary files a/mobile/skin/visit/basic/img/visit_top.gif and /dev/null differ diff --git a/mobile/skin/visit/basic/visit.skin.php b/mobile/skin/visit/basic/visit.skin.php deleted file mode 100644 index d56e0d4dd..000000000 --- a/mobile/skin/visit/basic/visit.skin.php +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - -
    -
    diff --git a/mobile/skin/visit/neo/img/admin.gif b/mobile/skin/visit/neo/img/admin.gif deleted file mode 100644 index adf17872e..000000000 Binary files a/mobile/skin/visit/neo/img/admin.gif and /dev/null differ diff --git a/mobile/skin/visit/neo/img/visit_1.gif b/mobile/skin/visit/neo/img/visit_1.gif deleted file mode 100644 index 433f964a6..000000000 Binary files a/mobile/skin/visit/neo/img/visit_1.gif and /dev/null differ diff --git a/mobile/skin/visit/neo/img/visit_2.gif b/mobile/skin/visit/neo/img/visit_2.gif deleted file mode 100644 index 90c9347e7..000000000 Binary files a/mobile/skin/visit/neo/img/visit_2.gif and /dev/null differ diff --git a/mobile/skin/visit/neo/img/visit_3.gif b/mobile/skin/visit/neo/img/visit_3.gif deleted file mode 100644 index f10b06ca1..000000000 Binary files a/mobile/skin/visit/neo/img/visit_3.gif and /dev/null differ diff --git a/mobile/skin/visit/neo/img/visit_4.gif b/mobile/skin/visit/neo/img/visit_4.gif deleted file mode 100644 index 425b7fa51..000000000 Binary files a/mobile/skin/visit/neo/img/visit_4.gif and /dev/null differ diff --git a/mobile/skin/visit/neo/img/visit_down.gif b/mobile/skin/visit/neo/img/visit_down.gif deleted file mode 100644 index 54b7d9d6a..000000000 Binary files a/mobile/skin/visit/neo/img/visit_down.gif and /dev/null differ diff --git a/mobile/skin/visit/neo/img/visit_top.gif b/mobile/skin/visit/neo/img/visit_top.gif deleted file mode 100644 index 7859a8e5b..000000000 Binary files a/mobile/skin/visit/neo/img/visit_top.gif and /dev/null differ diff --git a/mobile/skin/visit/neo/visit.skin.php b/mobile/skin/visit/neo/visit.skin.php deleted file mode 100644 index 35fc26c74..000000000 --- a/mobile/skin/visit/neo/visit.skin.php +++ /dev/null @@ -1,20 +0,0 @@ - - -
    -

    방문자집계

    -
    -
    오늘
    -
    -
    어제
    -
    -
    최대
    -
    -
    전체
    -
    -
    - 상세보기 -
    diff --git a/shop.config.php b/shop.config.php deleted file mode 100644 index 925566700..000000000 --- a/shop.config.php +++ /dev/null @@ -1,93 +0,0 @@ - \ No newline at end of file diff --git a/shop.head.php b/shop.head.php index 856ef2800..0337e2a02 100644 --- a/shop.head.php +++ b/shop.head.php @@ -1,12 +1,12 @@ ' cellpadding=0 cellspacing=0 border=0> - +
    - +
    - 로그아웃 | - 정보수정 | + 로그아웃 | + 정보수정 | - 로그인 | - 회원가입 | + 로그인 | + 회원가입 | - 장바구니() | - 주문조회 | - FAQ | - 사용후기 | - 마이페이지  + 장바구니() | + 주문조회 | + FAQ | + 사용후기 | + 마이페이지  @@ -70,15 +70,15 @@ $table_width = 900;