css 및 js 호출순서 조정기능 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5785 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2009-03-06 05:33:56 +00:00
parent 4f380d9c48
commit 61851f1dfe
2149 changed files with 109090 additions and 18689 deletions

View file

@ -3,21 +3,44 @@
<form action="./" method="post" onsubmit="return procFilter(this, insert_rss_module_config)">
<input type="hidden" name="target_module_srl" value="{$rss_config->module_srl?$rss_config->module_srl:$module_srls}" />
<table cellspacing="0" class="adminTable">
<caption>{$lang->open_rss}</caption>
<h4 class="xeAdmin">{$lang->open_rss}</h4>
<p class="summary">{$lang->about_open_rss}</p>
<table cellspacing="0" class="rowTable">
<tr>
<th scope="row"><div>{$lang->open_rss}</div></th>
<td class="wide">
<select name="open_rss" class="w400">
<select name="open_rss" class="w200">
<!--@foreach($lang->open_rss_types as $key=>$val)-->
<option value="{$key}" <!--@if(!$rss_config->open_rss && $key=='N')-->selected="selected"<!--@elseif($rss_config->open_rss==$key)-->selected="selected"<!--@end-->>{$val}</option>
<!--@end-->
</select>
<p>{$lang->about_open_rss}</p>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->open_feed_to_total}</div></th>
<td class="wide">
<select name="open_total_feed" class="w200">
<option value="N" <!--@if(!$rss_config->open_total_feed || $rss_config->open_total_feed == 'N')-->selected="selected"<!--@end-->>{$lang->use}</option>
<option value="T_N" <!--@if($rss_config->open_total_feed == 'T_N')-->selected="selected"<!--@end-->>{$lang->notuse}</option>
</select>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->description}</div></th>
<td class="wide">
<textarea name="feed_description" class="inputTypeTextArea">{$rss_config->feed_description}</textarea>
<p>{$lang->about_feed_description}</p>
</td>
</tr>
<tr>
<th scope="row"><div>{$lang->feed_copyright}</div></th>
<td class="wide">
<input type="text" class="inputTypeText" name="feed_copyright" value="{htmlspecialchars($rss_config->feed_copyright)}" />
<p>{$lang->about_feed_copyright}<br />{$lang->about_part_feed_copyright}</p>
</td>
</tr>
<tr class="row2">
<td class="right" colspan="2"><span class="button"><input type="submit" value="{$lang->cmd_save}"/></span></td>
<th class="button" colspan="2"><span class="button strong black"><input type="submit" value="{$lang->cmd_save}"/></span></th>
</tr>
</table>