mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
115 lines
6.2 KiB
HTML
115 lines
6.2 KiB
HTML
<!--%import("filter/insert.xml")-->
|
|
<!--#include("header.html")-->
|
|
|
|
<div class="boardWrite bottomBorder">
|
|
<form action="./" method="post" onsubmit="return procFilter(this, insert)" <!--@if($grant->fileupload)-->enctype="multipart/form-data"<!--@end--> class="boardEditor" id="fo_write">
|
|
<fieldset class="bottomBorder">
|
|
<input type="hidden" name="mid" value="{$mid}" />
|
|
<input type="hidden" name="content" value="{$oDocument->getContentText()}" />
|
|
<input type="hidden" name="document_srl" value="{$document_srl}" />
|
|
|
|
<!--@if(!$is_logged)-->
|
|
<div class="userNameAndPw">
|
|
<label for="userName">{$lang->writer}</label>
|
|
<input type="text" name="nick_name" value="{$oDocument->getNickName()}" class="userName inputTypeText" id="userName"/>
|
|
|
|
<label for="userPw">{$lang->password}</label>
|
|
<input type="password" name="password" value="" id="userPw" class="userPw inputTypeText" />
|
|
|
|
<label for="emailAddress">{$lang->email_address}</label>
|
|
<input type="text" name="email_address" value="{htmlspecialchars($oDocument->get('email_address'))}" id="emailAddress" class="emailAddress inputTypeText"/>
|
|
|
|
<label for="homePage">{$lang->homepage}</label>
|
|
<input type="text" name="homepage" value="{htmlspecialchars($oDocument->get('homepage'))}" id="homePage" class="homePage inputTypeText"/>
|
|
</div>
|
|
<!--@end-->
|
|
|
|
<div class="title">
|
|
<label for="title" class="title"><img src="./images/common/txt_title.gif" alt="{$lang->title}" /></label>
|
|
|
|
<!--@if($module_info->use_category=="Y")-->
|
|
<select name="category_srl" >
|
|
<option value="">{$lang->category}</option>
|
|
<!--@foreach($category_list as $val)-->
|
|
<option value="{$val->category_srl}" <!--@if($category==$val->category_srl||$val->category_srl==$oDocument->get('category_srl'))-->selected="selected"<!--@end-->>{$val->title} <!--@if($val->document_count)-->({$val->document_count})<!--@end--></option>
|
|
<!--@end-->
|
|
</select>
|
|
<!--@end-->
|
|
|
|
<input type="text" name="title" id="title" class="inputTypeText" value="{$oDocument->getTitleText()}" />
|
|
</div>
|
|
|
|
<dl class="option">
|
|
<dt><img src="./images/common/txt_option.gif" alt="{$lang->setup}" /></dt>
|
|
<!--@if($grant->manager)-->
|
|
<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>
|
|
<!--@end-->
|
|
<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>{$editor}</div>
|
|
|
|
<div class="trackbackURI">
|
|
<label for="trackbackURI">{$lang->cmd_send_trackback}</label>
|
|
<input type="text" name="trackback_url" id="trackbackURI" class="inputTypeText" />
|
|
<select name="trackback_charset">
|
|
<option value='UTF-8'>UTF-8</option>
|
|
<option value='EUC-KR'>EUC-KR</option>
|
|
<option value='EUC-JP'>EUC-JP</option>
|
|
<option value='SHIFT_JIS'>SHIFT_JIS</option>
|
|
<option value='EUC-CN'>EUC-CN</option>
|
|
<option value='HZ'>HZ</option>
|
|
<option value='BIG5'>BIG5</option>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="tag">
|
|
<label for="tag_input">{$lang->tag}</label>
|
|
<input type="text" name="tags" id="tag_input" value="{htmlspecialchars($oDocument->get('tags'))}" class="inputTypeText" />
|
|
<p class="info">{$lang->about_tag}</p>
|
|
</div>
|
|
|
|
<!--@foreach($module_info->extra_vars as $key => $val)-->
|
|
<!--@if($val->name)-->
|
|
<div class="extra_vars">
|
|
<label>{$val->name} <!--@if($val->is_required=='Y')-->*<!--@end--></label>
|
|
<!-- 확장변수(extra_var)의 type에 따른 form을 출력하기 위해서 특별히 제작된 파일을 include 한다 -->
|
|
<!--#include("./extra_var_form.html")-->
|
|
</div>
|
|
<!--@end-->
|
|
<!--@end-->
|
|
|
|
</fieldset>
|
|
|
|
<div class="tCenter gap1">
|
|
<a href="#" onclick="doDocumentPreview(this); return false;"><img src="./images/common/btn_preview.gif" alt="{$lang->cmd_preview}" /></a>
|
|
<input type="image" src="./images/common/btn_write.gif" title="{$lang->save}" accesskey="s"/>
|
|
<a href="{getUrl('act','')}"><img src="./images/common/btn_cancel3.gif" alt="{$lang->cmd_back}" /></a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<!--#include("footer.html")-->
|