mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 19:51:42 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4735 201d5d3c-b55e-5fd7-737f-ddc643e51545
136 lines
6.2 KiB
HTML
136 lines
6.2 KiB
HTML
<!--%import("filter/insert.xml")-->
|
|
<!--#include("_header.html")-->
|
|
|
|
<form action="./" method="post" onsubmit="return procFilter(this, window.insert)" id="fo_write" class="boardWrite">
|
|
<input type="hidden" name="mid" value="{$mid}" />
|
|
<input type="hidden" name="content" value="{$oDocument->getContentText()}" />
|
|
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
|
|
|
<div class="boardWriteHeader">
|
|
|
|
<!--@if(!$is_logged)-->
|
|
<div class="userNameAndPw">
|
|
<dl>
|
|
<dt><label for="userName">{$lang->writer}</label> :</dt>
|
|
<dd class="userName"><input type="text" name="nick_name" value="{$oDocument->getNickName()}" class="inputText" id="userName"/></dd>
|
|
</dl>
|
|
<dl>
|
|
<dt><label for="userPw">{$lang->password}</label> :</dt>
|
|
<dd class="userPw"><input type="password" name="password" value="" id="userPw" class="inputText" /></dd>
|
|
</dl>
|
|
<dl>
|
|
<dt><label for="emailAddress">{$lang->email_address}</label> :</dt>
|
|
<dd class="emailAddress"><input type="text" name="email_address" value="{htmlspecialchars($oDocument->get('email_address'))}" id="emailAddress" class="inputText"/></dd>
|
|
</dl>
|
|
<dl>
|
|
<dt><label for="homePage">{$lang->homepage}</label> :</dt>
|
|
<dd class="homePage"><input type="text" name="homepage" value="{htmlspecialchars($oDocument->get('homepage'))}" id="homePage" class="inputText"/></dd>
|
|
</dl>
|
|
</div>
|
|
<!--@end-->
|
|
|
|
<dl class="title">
|
|
<dt>제목 : </dt>
|
|
<dd>
|
|
<!--@if($module_info->use_category=="Y")-->
|
|
<select name="category_srl" class="category">
|
|
<option value="">{$lang->category}</option>
|
|
<!--@foreach($category_list as $val)-->
|
|
<option <!--@if(!$val->grant)-->disabled="disabled"<!--@endif--> value="{$val->category_srl}" <!--@if($val->grant&&$val->selected||$val->category_srl==$oDocument->get('category_srl'))-->selected="selected"<!--@endif-->>
|
|
{str_repeat(" ",$val->depth)} {$val->title} ({$val->document_count})
|
|
</option>
|
|
<!--@endforeach-->
|
|
</select>
|
|
<!--@else-->
|
|
<label class="title">{$lang->title}</label>
|
|
<!--@endif-->
|
|
<input type="text" name="title" class="inputText" value="{htmlspecialchars($oDocument->getTitleText())}" />
|
|
</dd>
|
|
</dl>
|
|
|
|
<dl class="option">
|
|
<dt>옵션 : </dt>
|
|
<!--@if($grant->manager)-->
|
|
{@ $_color = array('555555','222288','226622','2266EE','8866CC','88AA66','EE2222','EE6622','EEAA22','EEEE22') }
|
|
<dd><select name="title_color" id="title_color" <!--@if($oDocument->get('title_color'))-->style="background-color:#{$oDocument->get('title_color')};"<!--@end--> onchange="this.style.backgroundColor=this.options[this.selectedIndex].style.backgroundColor;">
|
|
<option value="" style="background-color:#FFFFFF;">{$lang->title_color}</option>
|
|
<!--@foreach($_color as $_col)-->
|
|
<option value="{$_col}" style="background-color:#{$_col}" <!--@if($oDocument->get('title_color')==$_col)-->selected="selected"<!--@end-->>{$lang->title_color}</option>
|
|
<!--@endforeach-->
|
|
</select></dd>
|
|
<dd>
|
|
<input type="checkbox" name="title_bold" id="title_bold" value="Y" <!--@if($oDocument->get('title_bold')=='Y')-->checked="checked"<!--@end--> />
|
|
<label for="title_bold">{$lang->title_bold}</label>
|
|
</dd>
|
|
<dd>
|
|
<input type="checkbox" name="is_notice" value="Y" <!--@if($oDocument->isNotice())-->checked="checked"<!--@end--> id="is_notice" />
|
|
<label for="is_notice">{$lang->notice}</label>
|
|
</dd>
|
|
<dd>
|
|
<input type="checkbox" name="lock_comment" value="Y" <!--@if($oDocument->isLocked())-->checked="checked"<!--@end--> id="lock_comment" />
|
|
<label for="lock_comment">{$lang->lock_comment}</label>
|
|
</dd>
|
|
<!--@endif-->
|
|
<dd>
|
|
<input type="checkbox" name="is_secret" value="Y" <!--@if($oDocument->isSecret())-->checked="checked"<!--@end--> id="is_secret" />
|
|
<label for="is_secret">{$lang->secret}</label>
|
|
</dd>
|
|
<dd>
|
|
<input type="checkbox" name="allow_comment" value="Y" <!--@if($oDocument->allowComment())-->checked="checked"<!--@end--> id="allow_comment" />
|
|
<label for="allow_comment">{$lang->allow_comment}</label>
|
|
</dd>
|
|
<dd>
|
|
<input type="checkbox" name="allow_trackback" value="Y" <!--@if($oDocument->allowTrackback())-->checked="checked"<!--@end--> id="allow_trackback" />
|
|
<label for="allow_trackback">{$lang->allow_trackback}</label>
|
|
</dd>
|
|
<!--@if($is_logged)-->
|
|
<dd>
|
|
<input type="checkbox" name="notify_message" value="Y" <!--@if($oDocument->useNotify())-->checked="checked"<!--@end--> id="notify_message" />
|
|
<label for="notify_message">{$lang->notify}</label>
|
|
</dd>
|
|
<!--@end-->
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
<!--@if($module_info->extra_vars)-->
|
|
<table cellspacing="0" summary="" class="extraVarsList">
|
|
<col width="150" />
|
|
<col />
|
|
<!--@foreach($module_info->extra_vars as $key => $val)-->
|
|
<!--@if($val->name)-->
|
|
<tr>
|
|
<th scope="row">{$val->name} <!--@if($val->is_required=='Y')-->*<!--@end--></th>
|
|
<td><!--#include("./extra_var_form.html")--></td>
|
|
</tr>
|
|
<!--@endif-->
|
|
<!--@endforeach-->
|
|
</table>
|
|
<!--@endif-->
|
|
|
|
<div class="editor">{$oDocument->getEditor()}</div>
|
|
|
|
<div class="tag">
|
|
<input type="text" name="tags" value="{htmlspecialchars($oDocument->get('tags'))}" class="inputTypeText" />
|
|
<p class="info">{$lang->about_tag}</p>
|
|
</div>
|
|
|
|
<div class="boardNavigation">
|
|
|
|
<div class="buttonLeft">
|
|
<!--@if($is_logged)-->
|
|
<span class="button"><input type="button" value="{$lang->cmd_temp_save}" onclick="doDocumentSave(this); return false;" /></span>
|
|
<span class="button"><input type="button" value="{$lang->cmd_load}" onclick="doDocumentLoad(this); return false;" /></span>
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<div class="buttonRight">
|
|
<span class="button"><input type="button" value="{$lang->cmd_back}" onclick="location.href='{getUrl('act','')}'" /></span>
|
|
<span class="button"><input type="button" value="{$lang->cmd_preview}" onclick="doDocumentPreview(this); return false;" /></span>
|
|
<span class="button black"><input type="submit" value="{$lang->cmd_registration}" accesskey="s" /></span>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
<!--#include("_footer.html")-->
|