cheidtor 제거

This commit is contained in:
gnuboard
2012-12-31 10:40:36 +09:00
parent 55f2cb1bdd
commit 37f4b5feb5
202 changed files with 126 additions and 9022 deletions

View File

@ -96,12 +96,7 @@ if ($w == '') {
alert('글을 답변할 권한이 없습니다.'.PHP_EOL.PHP_EOL.'회원이시라면 로그인 후 이용해 보십시오.', './login.php?$qstr&url='.urlencode($_SERVER['PHP_SELF'].'?bo_table='.$bo_table));
}
/*
if ($member['mb_point'] + $board['bo_comment_point'] < 0)
alert('보유하신 포인트('.number_format($member['mb_point']).')가 없거나 모자라서 글답변('.number_format($board['bo_comment_point']).')가 불가합니다.'.PHP_EOL.PHP_EOL.'포인트를 적립하신 후 다시 글답변 해 주십시오.');
*/
$tmp_point = $member['mb_point'] ? $member['mb_point'] : 0;
$tmp_point = isset($member['mb_point']) ? $member['mb_point'] : 0;
if ($tmp_point + $board['bo_write_point'] < 0 && !$is_admin)
alert('보유하신 포인트('.number_format($member['mb_point']).')가 없거나 모자라서 글답변('.number_format($board['bo_comment_point']).')가 불가합니다.'.PHP_EOL.PHP_EOL.'포인트를 적립하신 후 다시 글답변 해 주십시오.');
@ -323,6 +318,7 @@ if (isset($write['wr_subject'])) {
$subject = preg_replace("/\"/", "&#034;", get_text(cut_str($write['wr_subject'], 255), 0));
}
$content = '';
if ($w == '') {
$content = $board['bo_insert_content'];
} else if ($w == 'r') {

View File

@ -1,8 +1,33 @@
<?
include_once('./_common.php');
$g4['title'] = '게시글 저장';
if (isset($captcha->lib)) include_once($captcha->lib);
$msg = array();
$wr_subject = '';
if (isset($_POST['wr_subject'])) {
$wr_subject = trim($_POST['wr_subject']);
}
if ($wr_subject == '') {
$msg[] = '<strong>제목</strong>을 입력하세요.';
}
$wr_content = '';
if (isset($_POST['wr_content'])) {
$wr_content = trim($_POST['wr_content']);
}
if ($wr_content == '') {
$msg[] = '<strong>내용</strong>을 입력하세요.';
}
$msg = implode('<br>', $msg);
if ($msg) {
alert($msg);
}
// 090710
if (substr_count($wr_content, '&#') > 50) {
alert('내용에 올바르지 않은 코드가 다수 포함되어 있습니다.');
@ -13,8 +38,9 @@ if (substr_count($wr_content, '&#') > 50) {
$upload_max_filesize = ini_get('upload_max_filesize');
if (empty($_POST))
alert('파일 또는 글내용의 크기가 서버에서 설정한 값을 넘어 오류가 발생하였습니다.'.PHP_EOL.PHP_EOL.'post_max_size='.ini_get('post_max_size').' , upload_max_filesize='.$upload_max_filesize.PHP_EOL.PHP_EOL.'게시판관리자 또는 서버관리자에게 문의 바랍니다.');
if (empty($_POST)) {
alert("파일 또는 글내용의 크기가 서버에서 설정한 값을 넘어 오류가 발생하였습니다.\\npost_max_size=".ini_get('post_max_size')." , upload_max_filesize=".$upload_max_filesize."\\n게시판관리자 또는 서버관리자에게 문의 바랍니다.");
}
$w = $_POST['w'];
$wr_link1 = mysql_real_escape_string($_POST['wr_link1']);
@ -24,30 +50,36 @@ $notice_array = explode(',', trim($board['bo_notice']));
if ($w == 'u' || $w == 'r') {
$wr = get_write($write_table, $wr_id);
if (!$wr['wr_id'])
alert('글이 존재하지 않습니다.'.PHP_EOL.PHP_EOL.'글이 삭제되었거나 이동하였을 수 있습니다.');
if (!$wr['wr_id']) {
alert("글이 존재하지 않습니다.\\n글이 삭제되었거나 이동하였을 수 있습니다.");
}
}
// 외부에서 글을 등록할 수 있는 버그가 존재하므로 비밀글은 사용일 경우에만 가능해야 함
if (!$is_admin && !$board['bo_use_secret'] && $secret)
if (!$is_admin && !$board['bo_use_secret'] && $secret) {
alert('비밀글 미사용 게시판 이므로 비밀글로 등록할 수 없습니다.');
}
// 외부에서 글을 등록할 수 있는 버그가 존재하므로 비밀글 무조건 사용일때는 관리자를 제외(공지)하고 무조건 비밀글로 등록
$secret = '';
if (!$is_admin && $board['bo_use_secret'] == 2)
if (!$is_admin && $board['bo_use_secret'] == 2) {
$secret = 'secret';
}
$html = '';
if (isset($_POST['html']) && $_POST['html'])
if (isset($_POST['html']) && $_POST['html']) {
$html = $_POST['html'];
}
$mail = '';
if (isset($_POST['mail']) && $_POST['mail'])
if (isset($_POST['mail']) && $_POST['mail']) {
$mail = $_POST['mail'];
}
$notice = '';
if (isset($_POST['notice']) && $_POST['notice'])
if (isset($_POST['notice']) && $_POST['notice']) {
$notice = $_POST['notice'];
}
for ($i=1; $i<=10; $i++) {
$var = "wr_$i";
@ -58,30 +90,36 @@ for ($i=1; $i<=10; $i++) {
}
if ($w == '' || $w == 'u') {
// 김선용 1.00 : 글쓰기 권한과 수정은 별도로 처리되어야 함
if($w =='u' && $member['mb_id'] && $wr['mb_id'] == $member['mb_id'])
if($w =='u' && $member['mb_id'] && $wr['mb_id'] == $member['mb_id']) {
;
else if ($member['mb_level'] < $board['bo_write_level'])
} else if ($member['mb_level'] < $board['bo_write_level']) {
alert('글을 쓸 권한이 없습니다.');
}
// 외부에서 글을 등록할 수 있는 버그가 존재하므로 공지는 관리자만 등록이 가능해야 함
if (!$is_admin && $notice)
if (!$is_admin && $notice) {
alert('관리자만 공지할 수 있습니다.');
}
else if ($w == 'r')
{
if (in_array((int)$wr_id, $notice_array))
alert('공지에는 답변 할 수 없습니다.');
}
if ($member['mb_level'] < $board['bo_reply_level'])
} else if ($w == 'r') {
if (in_array((int)$wr_id, $notice_array)) {
alert('공지에는 답변 할 수 없습니다.');
}
if ($member['mb_level'] < $board['bo_reply_level']) {
alert('글을 답변할 권한이 없습니다.');
}
// 게시글 배열 참조
$reply_array = &$wr;
// 최대 답변은 테이블에 잡아놓은 wr_reply 사이즈만큼만 가능합니다.
if (strlen($reply_array['wr_reply']) == 10)
alert('더 이상 답변하실 수 없습니다.'.PHP_EOL.PHP_EOL.'답변은 10단계 까지만 가능합니다.');
if (strlen($reply_array['wr_reply']) == 10) {
alert("더 이상 답변하실 수 없습니다.\\n답변은 10단계 까지만 가능합니다.");
}
$reply_len = strlen($reply_array['wr_reply']) + 1;
if ($board['bo_reply_order']) {
@ -98,36 +136,33 @@ else if ($w == 'r')
if ($reply_array['wr_reply']) $sql .= " and wr_reply like '{$reply_array['wr_reply']}%' ";
$row = sql_fetch($sql);
if (!$row['reply'])
if (!$row['reply']) {
$reply_char = $begin_reply_char;
else if ($row['reply'] == $end_reply_char) // A~Z은 26 입니다.
alert('더 이상 답변하실 수 없습니다.'.PHP_EOL.PHP_EOL.'답변은 26개 까지만 가능합니다.');
else
} else if ($row['reply'] == $end_reply_char) { // A~Z은 26 입니다.
alert("더 이상 답변하실 수 없습니다.\\n답변은 26개 까지만 가능합니다.");
} else {
$reply_char = chr(ord($row['reply']) + $reply_number);
}
$reply = $reply_array['wr_reply'] . $reply_char;
} else
} else {
alert('w 값이 제대로 넘어오지 않았습니다.');
if ($w == "" || $w == "r")
{
if ($_SESSION["ss_datetime"] >= ($g4['server_time'] - $config['cf_delay_sec']) && !$is_admin)
alert('너무 빠른 시간내에 게시물을 연속해서 올릴 수 없습니다.');
set_session("ss_datetime", $g4['server_time']);
// 동일내용 연속 등록 불가
$row = sql_fetch(" select MD5(CONCAT(wr_ip, wr_subject, wr_content)) as prev_md5 from $write_table order by wr_id desc limit 1 ");
$curr_md5 = md5($_SERVER['REMOTE_ADDR'].$wr_subject.$wr_content);
if ($row['prev_md5'] == $curr_md5 && !$is_admin)
alert('동일한 내용을 연속해서 등록할 수 없습니다.');
}
}
if (!chk_captcha()) {
alert('자동등록방지의 답변으로 입력한 숫자가 틀렸습니다.');
}
if ($w == '' || $w == 'r') {
if (isset($_SESSION['ss_datetime'])) {
if ($_SESSION['ss_datetime'] >= ($g4['server_time'] - $config['cf_delay_sec']) && !$is_admin)
alert('너무 빠른 시간내에 게시물을 연속해서 올릴 수 없습니다.');
}
set_session("ss_datetime", $g4['server_time']);
}
if (!isset($_POST['wr_subject']) || !trim($_POST['wr_subject']))
alert('제목을 입력하여 주십시오.');
@ -135,12 +170,7 @@ if (!isset($_POST['wr_subject']) || !trim($_POST['wr_subject']))
@mkdir($g4['path'].'/data/file/'.$bo_table, 0707);
@chmod($g4['path'].'/data/file/'.$bo_table, 0707);
// "인터넷옵션 > 보안 > 사용자정의수준 > 스크립팅 > Action 스크립팅 > 사용 안 함" 일 경우의 오류 처리
// 이 옵션을 사용 안 함으로 설정할 경우 어떤 스크립트도 실행 되지 않습니다.
//if (!$_POST['wr_content']) die ("내용을 입력하여 주십시오.");
$chars_array = array_merge(range(0,9), range('a','z'), range('A','Z'));
//print_r2($chars_array); exit;
// 가변 파일 업로드
$file_upload_msg = '';
@ -241,18 +271,15 @@ for ($i=0; $i<count($_FILES['bf_file']['name']); $i++) {
}
}
if ($w == '' || $w == 'r')
{
if ($member['mb_id'])
{
if ($w == '' || $w == 'r') {
if ($member['mb_id']) {
$mb_id = $member['mb_id'];
$wr_name = $board['bo_use_name'] ? $member['mb_name'] : $member['mb_nick'];
$wr_password = $member['mb_password'];
$wr_email = $member['mb_email'];
$wr_homepage = $member['mb_homepage'];
}
else
{
} else {
$mb_id = '';
// 비회원의 경우 이름이 누락되는 경우가 있음
$wr_name = strip_tags(mysql_escape_string($_POST['wr_name']));
@ -261,8 +288,7 @@ if ($w == '' || $w == 'r')
$wr_password = sql_password($wr_password);
}
if ($w == 'r')
{
if ($w == 'r') {
// 답변의 원글이 비밀글이라면 패스워드는 원글과 동일하게 넣는다.
if ($secret)
$wr_password = $wr['wr_password'];
@ -270,9 +296,7 @@ if ($w == '' || $w == 'r')
$wr_id = $wr_id . $reply;
$wr_num = $write['wr_num'];
$wr_reply = $reply;
}
else
{
} else {
$wr_num = get_next_num($write_table);
$wr_reply = '';
}
@ -364,26 +388,20 @@ if ($w == '' || $w == 'r')
alert('로그인 후 수정하세요.', './login.php?url='.urlencode('./board.php?bo_table='.$bo_table.'&amp;wr_id='.$wr_id));
}
if ($member['mb_id'])
{
if ($member['mb_id']) {
// 자신의 글이라면
if ($member['mb_id'] == $wr['mb_id'])
{
if ($member['mb_id'] == $wr['mb_id']) {
$mb_id = $member['mb_id'];
$wr_name = $board['bo_use_name'] ? $member['mb_name'] : $member['mb_nick'];
$wr_email = $member['mb_email'];
$wr_homepage = $member['mb_homepage'];
}
else
{
} else {
$mb_id = $wr['mb_id'];
$wr_name = $wr['wr_name'];
$wr_email = $wr['wr_email'];
$wr_homepage = $wr['wr_homepage'];
}
}
else
{
} else {
$mb_id = "";
// 비회원의 경우 이름이 누락되는 경우가 있음
//if (!trim($wr_name)) alert("이름은 필히 입력하셔야 합니다.");
@ -426,17 +444,13 @@ if ($w == '' || $w == 'r')
$sql = " update {$write_table} set ca_name = '{$ca_name}' where wr_parent = '{$wr['wr_id']}' ";
sql_query($sql);
if ($notice)
{
if ($notice) {
//if (!preg_match("/[^0-9]{0,1}{$wr_id}[\r]{0,1}/",$board['bo_notice']))
if (!in_array((int)$wr_id, $notice_array))
{
if (!in_array((int)$wr_id, $notice_array)) {
$bo_notice = $wr_id . '\n' . $board['bo_notice'];
sql_query(" update {$g4['board_table']} set bo_notice = '{$bo_notice}' where bo_table = '{$bo_table}' ");
}
}
else
{
} else {
$bo_notice = '';
for ($i=0; $i<count($notice_array); $i++)
if ((int)$wr_id != (int)$notice_array[$i])
@ -527,8 +541,8 @@ if ($secret)
set_session("ss_secret_{$bo_table}_{$wr_num}", TRUE);
// 메일발송 사용 (수정글은 발송하지 않음)
if (!($w == 'u' || $w == 'cu') && $config['cf_email_use'] && $board['bo_use_email'])
{
if (!($w == 'u' || $w == 'cu') && $config['cf_email_use'] && $board['bo_use_email']) {
// 관리자의 정보를 얻고
$super_admin = get_admin('super');
$group_admin = get_admin('group');

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +0,0 @@
/* CSS file */
Application
{
}

View File

@ -1,429 +0,0 @@
a.cheditor-tag-path-elem {
text-decoration:none;
color:#0033cc;
font-size: 8pt;
font-family: dotum,tahoma,helvetica;
cursor:pointer;
}
a.cheditor-tag-path-elem:hover {
color:#0033cc;
text-decoration:underline;
cursor:pointer;
}
.cheditor-container {
border-top: 1px #ccc solid;
position: relative;
text-align: left;
}
.cheditor-tb-wrapper {
border-right:1px #ccc solid;
border-left:1px #ccc solid;
position: relative;
display: block;
background: #f5f5f5 url(../icons/toolbar-wrapper-bg.png) repeat-x left bottom;
}
.cheditor-editarea-wrapper {
border-right: 1px #ccc solid;
border-bottom: 1px #ccc solid;
border-left: 1px #ccc solid;
vertical-align: top;
}
.cheditor-editarea {
width:100%;
overflow:auto;
background-color: #fff;
}
.cheditor-modify-block .cheditor-ico {
width: 16px;
height: 16px;
vertical-align: middle;
margin-right: 5px;
}
.cheditor-modify-block select {
font-size: 9pt;
color: #000;
}
.cheditor-modify-block div {
padding: 5px 10px 5px 10px;
color: #000;
display: block;
}
.cheditor-modify-block div .wrap-text-desc {
line-height: 1em;
color: #000;
}
.cheditor-modify-block div .user-input-width {
width: 30px;
margin-left: 5px;
font-size: 9pt;
color: #000;
}
.cheditor-modify-block div .user-input-alt {
width: 150px;
margin: 3px 10px 0px 5px;
font-size: 9pt;
color: #000;
}
.cheditor-modify-block div .wrap-checked {
vertical-align: middle;
padding: 0px;
margin-right: 2px;
}
.cheditor-modify-block div .input-submit {
cursor: pointer;
vertical-align: middle;
margin-left: 20px;
height:20px;
width:64px;
}
.cheditor-modify-block div .color-picker {
cursor: pointer;
vertical-align: middle;
height:20px;
width:20px;
}
.cheditor-modify-block div .delete-submit {
cursor: pointer;
vertical-align: middle;
margin-left: 3px;
height:20px;
width:64px;
}
.cheditor-modify-block div .edit-table-ico {
cursor: pointer;
vertical-align: middle;
width: 16px;
height: 16px;
margin: 0px 3px;
}
.cheditor-modify-block {
display:none;
border-right: 1px #ccc solid;
border-bottom: 1px #ccc solid;
border-left: 1px #ccc solid;
padding:2px;
background-color:#eee;
font-size:9pt;
font-family: gulim,tahoma,helvetica;
text-align:center;
}
.cheditor-status-bar {
font-size:8pt;
font-family: dotum,tahoma,helvetica;
color:#333;
}
.cheditor-tag-path {
border-right: 1px #ccc solid;
border-bottom: 1px #ccc solid;
border-left: 1px #ccc solid;
padding: 0px 2px 0px 2px;
display: none;
height: 18px;
line-height:18px;
overflow: hidden;
}
.cheditor-fullscreen {
float: right;
background: transparent url(../icons/fullscreen.png) no-repeat 0 0;
}
.cheditor-viewmode {
padding: 0px 4px 0px 4px;
height: 16px;
background: transparent url(../icons/statusbar_bgline.gif) repeat-x 0 0;
}
.cheditor-viewmode div {
width: 24px;
height: 16px;
cursor: pointer;
}
.cheditor-tab-rich {
background: transparent url(../icons/edit_mode_rich_a.png) no-repeat 0 0;
float: left;
}
.cheditor-tab-rich-off {
background: transparent url(../icons/edit_mode_rich_b.png) no-repeat 0 0;
float: left;
}
.cheditor-tab-code {
background: transparent url(../icons/edit_mode_code_a.png) no-repeat 0 0;
float: left;
}
.cheditor-tab-code-off {
background: transparent url(../icons/edit_mode_code_b.png) no-repeat 0 0;
float: left;
}
.cheditor-tab-preview {
background: transparent url(../icons/edit_mode_view_a.png) no-repeat 0 0;
float: left;
}
.cheditor-tab-preview-off {
background: transparent url(../icons/edit_mode_view_b.png) no-repeat 0 0;
float: left;
}
.cheditor-popup-window {
border:1px solid #8db3e5;
display:none;
position:absolute;
background-color:#ebe9ed;
left:0px;
top:0px;
}
.cheditor-popup-drag-handle {
border-bottom:1px solid #8db3e5;
height:24px;
background: #6b90c0 url(../icons/title_bar_bg.gif) repeat-x 0 0;
}
.cheditor-popup-titlebar {
padding: 4px 0px 0px 0px !important;
line-height: 1em;
}
.cheditor-resizebar {
height: 11px;
overflow:hidden;
border-left: 1px #ccc solid;
border-right: 1px #ccc solid;
cursor:s-resize;
background: #eee url(../icons/splitter.gif) no-repeat center top;
}
.cheditor_mode_icon { width: 24px; height: 16px; cursor: pointer; vertical-align:top }
.cheditor-popup-title { font-size: 9pt; font-family:gulim,tahoma,helvetica; font-weight:bold; color:#003366; }
.cheditor-popup-cframe {
background-color: #ebe9ed;
}
.cheditor-pulldown-container {
border:#8db3e5 1px solid;
background-color:#fff;
padding:1px;
position: relative;
}
.cheditor-pulldown-container div {
padding: 2px 2px 2px 15px;
line-height: 1.1;
margin: 1px;
font-size: 9pt;
font-family: gulim,tahoma,helvetica;
color: #000;
position: relative;
}
.cheditor-pulldown-color-container {
border:#8db3e5 1px solid;
background-color:#fff;
padding:2px;
height: 160px;
}
.cheditor-pulldown-container div label, .cheditor-pulldown-textblock-container div label {
position: relative;
overflow: hidden;
}
.cheditor-pulldown-textblock-container div div {
text-align: center;
padding: 2px;
font-size: 9pt;
color: #000;
line-height: 1;
}
.cheditor-pulldown-textblock-container div {
padding: 1px;
}
.cheditor-pulldown-textblock-out {
border: #fff 1px solid;
}
.cheditor-pulldown-textblock-over {
border: #316ac5 1px solid;
}
.cheditor-pulldown-textblock-container {
border:#8db3e5 1px solid;
background-color:#fff;
padding:2px;
}
.cheditor-pulldown-mouseout {
border: #fff 1px solid;
}
.cheditor-pulldown-mouseover {
background-color: #f0f0f0;
border: #e0e0e0 1px solid;
}
.cheditor-pulldown-frame {
position:absolute;
visibility:hidden;
z-index: -1;
width:1px;
height:1px;
line-height:12px;
}
.cheditor-pulldown-color-over {
float: left;
border: 1px solid #c00000;
width: 15px;
height: 15px;
margin: 1px;
font-size: 7px;
cursor: pointer;
}
.cheditor-pulldown-color-cell {
float: left;
border: 1px #000 solid;
width: 15px;
height: 15px;
margin: 1px;
font-size: 7px;
cursor: pointer;
}
.cheditor-pulldown-color-selected {
border: 1px solid #000;
text-align: center;
margin: 1px;
height: 15px;
line-height: 1.1;
}
.cheditor-pulldown-color-selected label {
font-family: verdana;
font-size: 8pt;
color: #000;
}
.cheditor-pulldown-color-spacer {
clear: both;
height: 4px;
overflow: hidden;
}
.cheditor-pulldown-color-wrapper {
line-height: 1;
height: 340px;
}
.cheditor-container-fullscreen {
border-top: 1px #ccc solid;
position: fixed;
left: 0px;
top: 0px;
_position: absolute;
_left: expression((0 + (ignoreMe2 =
document.documentElement.scrollLeft ?
document.documentElement.scrollLeft :
document.body.scrollLeft)) + 'px');
_top: expression((270 + (ignoreMe =
document.documentElement.scrollTop ?
document.documentElement.scrollTop :
document.body.scrollTop)) + 'px');
z-index: 1000;
text-align: left;
background-color: #fff;
}
.cheditor-modalPopupTransparent {
background-color: #f0f0f0;
position: fixed;
display: none;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
_position: absolute;
_left: expression((0 + (ignoreMe2 =
document.documentElement.scrollLeft ?
document.documentElement.scrollLeft :
document.body.scrollLeft)) + 'px');
_top: expression((270 + (ignoreMe =
document.documentElement.scrollTop ?
document.documentElement.scrollTop :
document.body.scrollTop)) + 'px');
}
.cheditor-dragWindowTransparent { background-color: #fff; position: absolute; display: block; left:0px; top: 24px; }
.cheditor-pulldown-wrapper {line-height: 1; }
.cheditor-toolbar-icon-wrapper {
margin: 0px 2px 0px 0px;
float: left;
height: 24px;
overflow: hidden;
}
.cheditor-tb-icon {
height: 22px;
width: 16px;
margin-left: 3px;
overflow: hidden;
}
.cheditor-tb-text {
height: 22px;
margin-left: 5px;
color: #555;
font-family: gulim,tahoma,helvetica;
font-size: 9pt;
overflow: hidden;
margin-right: 13px;
line-height: 24px;
position: relative;
}
.cheditor-tb-bg55 {
float: left;
overflow: hidden;
background: transparent url(../icons/toolbar-background.png) no-repeat left -414px;
position: relative;
}
.cheditor-tb-bg40 {
float: left;
overflow: hidden;
background: transparent url(../icons/toolbar-background.png) no-repeat left -483px;
position: relative;
}
.cheditor-tb-icon23 {
height: 22px;
width: 23px;
margin-left: 3px;
overflow: hidden;
}
.cheditor-tb-bg30 {
float: left;
overflow: hidden;
background: transparent url(../icons/toolbar-background.png) no-repeat left -276px;
position: relative;
}
.cheditor-tb-bg30-last {
float: left;
overflow: hidden;
background: transparent url(../icons/toolbar-background.png) no-repeat left -345px;
position: relative;
}
.cheditor-tb-bg {
float: left;
overflow: hidden;
background: transparent url(../icons/toolbar-background.png) no-repeat left -69px;
position: relative;
}
.cheditor-tb-bg-first {
float: left;
overflow: hidden;
background: transparent url(../icons/toolbar-background.png) no-repeat left top;
position: relative;
}
.cheditor-tb-bg-last {
float: left;
overflow: hidden;
background: transparent url(../icons/toolbar-background.png) no-repeat left -138px;
position: relative;
}
.cheditor-tb-bg-single {
float: left;
overflow: hidden;
background: transparent url(../icons/toolbar-background.png) no-repeat left -207px;
position: relative;
}
.cheditor-tb-color-btn {
width: 16px;
height: 3px;
overflow: hidden;
position: absolute;
top: 16px;
left: 3px;
}
.cheditor-tb-button-spacer {
overflow: hidden;
width: 4px;
height: 4px;
float: left;
}
.cheditor-tb-split {
overflow: hidden;
height: 2px;
width: 3px;
clear: both;
}

View File

@ -1,133 +0,0 @@
body {
background-color: #ebe9ed;
margin: 0px;
border: 0px;
padding: 10px;
font-size: 9pt;
font-family: gulim,tahoma,helvetica;
}
td, input, select {
font-size: 9pt;
vertical-align: middle;
margin:0px;
}
.handCursor {
cursor: pointer;
}
td.hover
{
background-color : Fuchsia;
}
table.dlg {
border: 0px;
}
fieldset {
border: 1px solid #c5c5cc;
padding: 2px;
margin: 0px;
}
.dlg td {
text-align: left;
height: 20px;
}
form {
display: inline;
}
.dlg input {
border: 2px;
}
.img {
border: 0px;
vertical-align: middle;
}
.font-normal {
font-size: 9pt;
}
.button {
width: 64px;
height: 22px;
margin: 0px 2px 0px 2px;
cursor: pointer;
vertical-align: middle;
}
.button8em {
font-size: 9pt;
padding-top:2px !important; padding-top:2px;
height: 21px;
width: 8em;
}
.button10em {
font-size: 9pt;
padding-top:1px !important;padding-top:2px;
height: 21px;
width: 10em;
}
.emIcon {
width: 19px;
height: 19px;
cursor: pointer;
}
.emImgBlock {
padding: 5px;
text-align: center;
}
.emImgRow {
margin: 3px;
text-align: center;
}
.schar {
border:1px solid #ccc;
background-color:#fff;
width: 18px;
height: 17px;
text-align:center;
cursor: pointer;
font-size: 9pt;
line-height: 17px;
}
.spacer {
margin: 10px 0px 0px 0px;
}
.spacer5 {
margin: 5px 0px 0px 0px;
clear: both;
}
.wrapper {
text-align: center;
}
.clear { clear: both }
.flash-player-wrapper {
width:480px;
height:385px;
margin-top:5px;
border:1px #c5c5cc solid;
text-align:center;
overflow-x:auto;
overflow-y:hidden;
}
.media-player-wrapper {
height:200px;
margin-top:5px;
text-align:center;
overflow-x:auto;
overflow-y:hidden;
}

View File

@ -1,99 +0,0 @@
#uploadWindow {
position:absolute;
display: none;
background-color: #ebe9ed;
}
.clear { clear: both; }
#container {
padding: 8px;
font-family: gulim,tahoma,helvetica;
}
#imageListWrapper {
background-color: #fff;
border:1px #c5c5cc solid;
position: absolute;
}
#imageInfoBox {
padding: 7px;
background-color: #fff;
border:1px #c5c5cc solid;
float: right;
}
.button {
width: 77px;
height: 22px;
cursor: pointer;
vertical-align: middle;
}
.imageBox, .imageBoxHighlighted {
width: 124px;
height: 94px;
margin: 3px;
float:left;
}
.imageBox_theImage,.imageBox_theImage_over {
width:100%;
height:100%;
}
.imageBox .imageBox_theImage{
border: 1px solid #ddd;
background-image: url('../icons/dot.gif');
background-position: center center;
background-repeat: no-repeat;
}
.imageBox .imageBox_theImage_over {
border: 1px solid #000;
background-image: url('../icons/dot.gif');
background-position: center center;
background-repeat: no-repeat;
}
.imageBoxHighlighted .imageBox_theImage {
border: 1px solid #ff6600;
}
.imageBoxHighlighted .imageBox_theImage_over {
border: 1px solid #ff6600;
background-image: url('../icons/dot.gif');
background-position: center center;
background-repeat: no-repeat;
}
#removeImage {
display: none;
width: 28px;
height: 16px;
position:absolute;
cursor: pointer;
z-index: 100;
}
#insertionMarker {
height:102px;
width:6px;
position:absolute;
display:none;
}
#insertionMarkerLine {
width:6px;
height:100px;
}
#insertionMarker img {
float:left;
}
#dragDropContent{
position:absolute;
z-index:10;
display:none;
}
body {
background-color: #ebe9ed;
margin: 0px;
border: none;
padding: 0px;
overflow: hidden;
}

View File

@ -1,95 +0,0 @@
/************************************************
CHEditor Image Caption Util
************************************************/
img.chimg_photo
{
border: 1px darkgray solid;
padding:10px;
}
div.imgblock
{
}
div.leftjust
{
}
div.rightjust
{
}
div.caption
{
margin-top: 5px;
margin-left: 0.2em;
color: darkgray;
font-size: 9pt;
}
div.caption-marker
{
float: left;
margin-right: 0.2em;
}
div.caption-text
{
float: left;
clear: right;
text-align: left;
}
.imageUtil {
cursor: url(icons/imageutil/zoomin.cur), pointer;
outline: none;
}
.imageUtil img {
border: 2px solid gray;
}
.imageUtil:hover img {
border: 2px solid silver;
}
.imageUtil-image {
border-bottom: 1px solid white;
}
.imageUtil-image-blur {
}
.imageUtil-caption {
display: none;
border-bottom: 1px solid white;
font-family: gulim, Verdana, Helvetica;
font-size: 9pt;
padding: 5px;
background-color: #fff;
}
.imageUtil-loading {
display: block;
color: white;
font-size: 9px;
font-weight: normal;
text-decoration: none;
padding: 3px;
border-top: 1px solid white;
border-bottom: 1px solid white;
background-color: black;
padding-left: 22px;
background-image: url(icons/imageutil/loader.gif);
background-repeat: no-repeat;
background-position: 3px 1px;
}
a.imageUtil-credits,
a.imageUtil-credits i {
padding: 2px;
color: silver;
text-decoration: none;
font-size: 10px;
}
a.imageUtil-credits:hover,
a.imageUtil-credits:hover i {
color: white;
background-color: gray;
}
.imageUtil-display-block {
display: block;
}
.imageUtil-display-none {
display: none;
}

View File

@ -1 +0,0 @@
p { margin: 0px }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 190 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 180 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 188 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 187 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 208 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 543 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1012 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1014 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 393 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 386 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 538 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 528 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 640 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 859 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Some files were not shown because too many files have changed in this diff Show More