git-svn-id: http://xe-core.googlecode.com/svn/trunk@805 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-30 06:01:24 +00:00
parent 84d0a85ebb
commit df75151c85
79 changed files with 1972 additions and 1919 deletions

View file

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<component version="0.1">
<title xml:lang="ko">링크 생성</title>
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<description xml:lang="ko">에디터에 링크를 추가하거나 링크의 속성을 변경할 수 있습니다.</description>
</author>
<title xml:lang="ko">링크 생성</title>
<author email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<description xml:lang="ko">에디터에 링크를 추가하거나 링크의 속성을 변경할 수 있습니다.</description>
</author>
</component>

View file

@ -1,67 +1,68 @@
@charset "utf-8";
.editor_window {
width:400px;
clear:both;
width:400px;
clear:both;
}
.editor_title {
font-size:10pt;
font-weight:bold;
clear:both;
height:20px;
background-color:#555555;
color:#EFEFEF;
vertical-align:middle;
padding-top:5px;
border-bottom:1px solid #000000;
text-align:center;
font-size:10pt;
font-weight:bold;
clear:both;
height:20px;
background-color:#555555;
color:#EFEFEF;
vertical-align:middle;
padding-top:5px;
border-bottom:1px solid #000000;
text-align:center;
}
.header {
float:left;
width:60px;
clear:left;
text-align:left;
font-weight:bold;
margin:5px;
font-size:9pt;
padding-left:20px;
float:left;
width:60px;
clear:left;
text-align:left;
font-weight:bold;
margin:5px;
font-size:9pt;
padding-left:20px;
}
.body {
float:left;
width:290px;
text-align:left;
margin:5px;
font-size:9pt;
float:left;
width:290px;
text-align:left;
margin:5px;
font-size:9pt;
}
.editor_textarea {
width:280px;
height:50px;
border:1px solid #AAAAAA;
font-size:9pt;
width:280px;
height:50px;
border:1px solid #AAAAAA;
font-size:9pt;
}
.editor_input {
width:280px;
border:1px solid #AAAAAA;
font-size:9pt;
height:13px;
width:280px;
border:1px solid #AAAAAA;
font-size:9pt;
height:13px;
}
.editor_button_area {
border-top:1px solid #AAAAAA;
text-align:center;
background-color:#EEEEEE;
padding:0px 0px 2px 0px;
clear:both;
height:25px;
border-top:1px solid #AAAAAA;
text-align:center;
background-color:#EEEEEE;
padding:0px 0px 2px 0px;
clear:both;
height:25px;
}
.editor_button {
margin-top:4px;
background-color:#FFFFFF;
border:1px solid #AAAAAA;
height:18px;
font-size:9pt;
margin-top:4px;
background-color:#FFFFFF;
border:1px solid #AAAAAA;
height:18px;
font-size:9pt;
}

View file

@ -2,46 +2,45 @@
<!--%import("popup.css")-->
<!--%import("../lang")-->
<form action="./" method="get" id="fo_component" onSubmit="return false">
<div class="editor_window">
<div class="editor_title">{$component_info->title} ver. {$component_info->version} <a href="#" onclick="winopen('./?module=editor&amp;act=viewComponentInfo&amp;component_name={$component_info->component_name}','ComponentInfo','left=10,top=10,width=10,height=10,resizable=no,scrollbars=no,toolbars=no');return false;"><img src="../../../tpl/images/about_component.gif" title="{$lang->about_component}" alt="{$lang->about_component}" class="about_component_icon" border="0" /></a></div>
<div class="editor_window">
<div class="editor_title">{$component_info->title} ver. {$component_info->version} <a href="#" onclick="winopen('./?module=editor&amp;act=viewComponentInfo&amp;component_name={$component_info->component_name}','ComponentInfo','left=10,top=10,width=10,height=10,resizable=no,scrollbars=no,toolbars=no');return false;"><img src="../../../tpl/images/about_component.gif" title="{$lang->about_component}" alt="{$lang->about_component}" class="about_component_icon" border="0" /></a></div>
<div class="header">{$lang->urllink_title}</div>
<div class="body"><textarea name="text" class="editor_textarea"></textarea></div>
<div class="header">{$lang->urllink_title}</div>
<div class="body"><textarea name="text" class="editor_textarea"></textarea></div>
<div class="header">{$lang->urllink_url}</div>
<div class="body"><input type="text" name="url" class="editor_input" value="{$manual_url}"/></div>
<div class="header">{$lang->urllink_url}</div>
<div class="body"><input type="text" name="url" class="editor_input" value="{$manual_url}"/></div>
<div class="header">{$lang->urllink_open_window}</div>
<div class="body"><input type="checkbox" name="open_window" value="Y" id="editor_open_window" /> <label for="editor_open_window">{$lang->about_url_link_open_window}</label></div>
<div class="header">{$lang->urllink_open_window}</div>
<div class="body"><input type="checkbox" name="open_window" value="Y" id="editor_open_window" /> <label for="editor_open_window">{$lang->about_url_link_open_window}</label></div>
<div class="header">{$lang->urllink_bold}</div>
<div class="body"><input type="checkbox" name="bold" value="Y" id="editor_bold" /> <label for="editor_bold">{$lang->about_url_link_bold}</label></div>
<div class="header">{$lang->urllink_bold}</div>
<div class="body"><input type="checkbox" name="bold" value="Y" id="editor_bold" /> <label for="editor_bold">{$lang->about_url_link_bold}</label></div>
<div class="header">{$lang->urllink_color}</div>
<div class="body">
<span>
<input type="radio" name="color" value="blue" id="color_blue" />
<label for="color_blue" class="editor_blue_text">{$lang->urllink_color_blue}</label>
</span>
<span>
<input type="radio" name="color" value="red" id="color_red" />
<label for="color_red" class="editor_red_text">{$lang->urllink_color_red}</label>
</span>
<span>
<input type="radio" name="color" value="yellow" id="color_yellow" />
<label for="color_yellow" class="editor_yellow_text">{$lang->urllink_color_yellow}</label>
</span>
<span>
<input type="radio" name="color" value="green" id="color_green" />
<label for="color_green" class="editor_green_text">{$lang->urllink_color_green}</label>
</span>
</div>
<div class="editor_button_area">
<input type="button" class="editor_button" value="{$lang->cmd_insert}" onclick="setText()" />
<input type="button" class="editor_button" value="{$lang->cmd_close}" onclick="window.close()" />
</div>
<div class="header">{$lang->urllink_color}</div>
<div class="body">
<span>
<input type="radio" name="color" value="blue" id="color_blue" />
<label for="color_blue" class="editor_blue_text">{$lang->urllink_color_blue}</label>
</span>
<span>
<input type="radio" name="color" value="red" id="color_red" />
<label for="color_red" class="editor_red_text">{$lang->urllink_color_red}</label>
</span>
<span>
<input type="radio" name="color" value="yellow" id="color_yellow" />
<label for="color_yellow" class="editor_yellow_text">{$lang->urllink_color_yellow}</label>
</span>
<span>
<input type="radio" name="color" value="green" id="color_green" />
<label for="color_green" class="editor_green_text">{$lang->urllink_color_green}</label>
</span>
</div>
</div>
<div class="editor_button_area">
<input type="button" class="editor_button" value="{$lang->cmd_insert}" onclick="setText()" />
<input type="button" class="editor_button" value="{$lang->cmd_close}" onclick="window.close()" />
</div>
</form>