editor colorset 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4792 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2008-11-07 10:47:24 +00:00
parent b36a63192b
commit fbd6020d07
13 changed files with 147 additions and 80 deletions

View file

@ -1,7 +1,7 @@
<!--// 스킨 css 로드 -->
<!--%import("css/editor.css")-->
<!--@if($module_info->colorset == "black")-->
<!--@if($colorset == "black")-->
<!--%import("css/black.css")-->
<!--@else-->
<!--%import("css/white.css")-->
@ -17,7 +17,7 @@
<input type="hidden" name="_saved_doc_content" value="{htmlspecialchars($saved_doc->content)}" />
<input type="hidden" name="_saved_doc_message" value="{$lang->msg_load_saved_doc}" />
<!--@end-->
<input type="hidden" name="_editor_sequence" value="{$editor_sequence}" />
<div class="editorTemporary">
<!--@if($is_logged)-->
<span class="button small"><input type="button" value="{$lang->cmd_temp_save}" onclick="doDocumentSave(this); return false;" /></span>
@ -41,10 +41,10 @@
</ul>
<!-- 에디터 -->
<div id="xeEditor_{$editor_sequence}" class="xeEditor rich">
<div id="xeEditor_{$editor_sequence}" class="xeEditor rich" >
<!-- class="xeEditor rich" | class="xeEditor html" -->
<div id="xeEditorOption_{$editor_sequence}" class="toolBox">
<div id="xeEditorOption_{$editor_sequence}" class="toolBox" >
<!--@if($enable_default_component)-->
<!-- 기본 컴포넌트 출력 -->
@ -162,8 +162,8 @@
<!--@end-->
<!-- 에디터 출력 -->
<div class="editorBox" id="editorBox">
<div class="editorMargin">
<div class="editorBox" id="editorBox" >
<div class="editorMargin" >
<iframe id="editor_iframe_{$editor_sequence}" class="richEditor" frameborder="0" height="{$editor_height}" title="Rich Text Editor"></iframe>
<textarea id="editor_textarea_{$editor_sequence}" class="htmlEditor" style="height:{$editor_height}" rows="5" cols="20" title="HTML Editor"></textarea>
</div>
@ -218,6 +218,13 @@
var auto_saved_msg = "{$lang->msg_auto_saved}";
<!--@if(!$editor_manual_start)-->
editorStart("{$editor_sequence}", "{$editor_primary_key_name}", "{$editor_content_key_name}", '{$editor_height}' , '#000000');
<!--@if($colorset == "black")-->
editorStart("{$editor_sequence}", "{$editor_primary_key_name}", "{$editor_content_key_name}", '{$editor_height}' , '#FFF');
<!--@else-->
editorStart("{$editor_sequence}", "{$editor_primary_key_name}", "{$editor_content_key_name}", '{$editor_height}' , '#000');
<!--@end-->
<!--@end-->
//]]></script>

View file

@ -1,20 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<skin version="0.2">
<title xml:lang="ko">XE 기본 에디터</title>
<title xml:lang="zh-CN">XE编辑器默认皮肤</title>
<title xml:lang="jp">XE基本エディター</title>
<title xml:lang="zh-TW">XE編輯器預設面板</title>
<description xml:lang="ko">개발 : zero (http://blog.nzeo.com)</description>
<description xml:lang="zh-CN">程序 : zero (http://blog.nzeo.com) </description>
<description xml:lang="jp">開発 : zero (http://blog.nzeo.com)</description>
<description xml:lang="zh-TW">程式 : zero (http://blog.nzeo.com)</description>
<version>0.1</version>
<date>2007-02-28</date>
<title xml:lang="ko">XE 기본 에디터</title>
<title xml:lang="zh-CN">XE编辑器默认皮肤</title>
<title xml:lang="jp">XE基本エディター</title>
<title xml:lang="zh-TW">XE編輯器預設面板</title>
<description xml:lang="ko">개발 : zero (http://blog.nzeo.com)</description>
<description xml:lang="zh-CN">程序 : zero (http://blog.nzeo.com) </description>
<description xml:lang="jp">開発 : zero (http://blog.nzeo.com)</description>
<description xml:lang="zh-TW">程式 : zero (http://blog.nzeo.com)</description>
<version>0.1</version>
<date>2007-02-28</date>
<author email_address="zero@zeroboard.com" link="http://blog.nzeo.com">
<name xml:lang="ko">zero</name>
<name xml:lang="zh-CN">Zero</name>
<name xml:lang="jp">zero</name>
<name xml:lang="zh-TW">zero</name>
</author>
<author email_address="zero@zeroboard.com" link="http://blog.nzeo.com">
<name xml:lang="ko">zero</name>
<name xml:lang="zh-CN">Zero</name>
<name xml:lang="jp">zero</name>
<name xml:lang="zh-TW">zero</name>
</author>
<colorset>
<color name="white">
<title xml:lang="ko">하얀색(기본)</title>
<title xml:lang="jp">白(デフォルト)</title>
<title xml:lang="zh-CN">白色(基本)</title>
<title xml:lang="en">White (default)</title>
<title xml:lang="es">Blanco (por defecto)</title>
<title xml:lang="zh-TW">白色(預設)</title>
</color>
<color name="black">
<title xml:lang="ko">검은색</title>
<title xml:lang="jp"></title>
<title xml:lang="en">Black</title>
<title xml:lang="ru">Черного</title>
<title xml:lang="es">Negro</title>
<title xml:lang="zh-CN">黑色</title>
<title xml:lang="zh-TW">黑色</title>
</color>
</colorset>
</skin>