HTML, CSS, Web Accessibility...

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9675 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2011-10-18 12:17:31 +00:00
parent 349434a372
commit 341bfa73ed
26 changed files with 451 additions and 578 deletions

View file

@ -4,59 +4,59 @@
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
<p>{$XE_VALIDATOR_MESSAGE}</p>
</div>
<form ruleset="insertConfig" action="./" method="post">
<input type="hidden" name="act" value="procFileAdminInsertConfig" />
<div class="table">
<table width="100%" border="1" cellspacing="0">
<form ruleset="insertConfig" action="./" method="post" class="form">
<input type="hidden" name="act" value="procFileAdminInsertConfig" />
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="col">{$lang->allow_outlink}</th>
<td class="text">
<select name="allow_outlink">
<option value="Y"<!--@if($config->allow_outlink=='Y')--> selected="selected"<!--@end-->>{$lang->enable}</option>
<option value="N"<!--@if($config->allow_outlink=='N')--> selected="selected"<!--@end-->>{$lang->disable}</option>
</select>
<p>{$lang->about_allow_outlink}</p>
</td>
</tr>
<tr>
<th scope="col"><div>{$lang->allow_outlink}</div></th>
<td>
<select name="allow_outlink">
<option value="Y"<!--@if($config->allow_outlink=='Y')--> selected="selected"<!--@end-->>{$lang->enable}</option>
<option value="N"<!--@if($config->allow_outlink=='N')--> selected="selected"<!--@end-->>{$lang->disable}</option>
</select>
<p>{$lang->about_allow_outlink}</p>
</td>
</tr>
<tr>
<th scope="col"><div>{$lang->allow_outlink_format}</div></th>
<td>
<input type="text" name="allow_outlink_format" value="{$config->allow_outlink_format}" />
<p>{$lang->about_allow_outlink_format}</p>
</td>
</tr>
<tr>
<th scope="col"><div>{$lang->allow_outlink_site}</div></th>
<td>
<textarea name="allow_outlink_site" class="fullWidth">{$config->allow_outlink_site}</textarea>
<p>{$lang->about_allow_outlink_site}</p>
</td>
</tr>
<tr>
<th scope="col"><div>{$lang->allowed_filesize}</div></th>
<td>
<input type="text" name="allowed_filesize" value="{$config->allowed_filesize}" size="3" />MB
<p>{$lang->about_allowed_filesize}</p>
</td>
</tr>
<tr>
<th scope="col"><div>{$lang->allowed_attach_size}</div></th>
<td>
<input type="text" name="allowed_attach_size" value="{$config->allowed_attach_size}" size="3" />MB
/ {ini_get('upload_max_filesize')}
<p>{$lang->about_allowed_attach_size}</p>
</td>
</tr>
<tr>
<th scope="col"><div>{$lang->allowed_filetypes}</div></th>
<td>
<input type="text" name="allowed_filetypes" value="{$config->allowed_filetypes}" />
<p>{$lang->about_allowed_filetypes}</p>
</td>
</tr>
</table>
</div>
<div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>
</div>
<th scope="col">{$lang->allow_outlink_format}</th>
<td class="text">
<input type="text" name="allow_outlink_format" value="{$config->allow_outlink_format}" />
<p>{$lang->about_allow_outlink_format}</p>
</td>
</tr>
<tr>
<th scope="col">{$lang->allow_outlink_site}</th>
<td class="text">
<textarea name="allow_outlink_site" class="fullWidth">{$config->allow_outlink_site}</textarea>
<p>{$lang->about_allow_outlink_site}</p>
</td>
</tr>
<tr>
<th scope="col">{$lang->allowed_filesize}</th>
<td class="text">
<input type="text" name="allowed_filesize" value="{$config->allowed_filesize}" size="3" />MB
<p>{$lang->about_allowed_filesize}</p>
</td>
</tr>
<tr>
<th scope="col">{$lang->allowed_attach_size}</th>
<td class="text">
<input type="text" name="allowed_attach_size" value="{$config->allowed_attach_size}" size="3" />MB
/ {ini_get('upload_max_filesize')}
<p>{$lang->about_allowed_attach_size}</p>
</td>
</tr>
<tr>
<th scope="col">{$lang->allowed_filetypes}</th>
<td class="text">
<input type="text" name="allowed_filetypes" value="{$config->allowed_filetypes}" />
<p>{$lang->about_allowed_filetypes}</p>
</td>
</tr>
</table>
</div>
<div class="btnArea">
<span class="btn"><input type="submit" value="{$lang->cmd_registration}" /></span>
</div>
</form>

View file

@ -1,4 +1,4 @@
<form ruleset="fileModuleConfig" action="./" method="post">
<form ruleset="fileModuleConfig" action="./" method="post" class="form">
<input type="hidden" name="act" value="procFileAdminInsertModuleConfig" />
<input type="hidden" name="success_return_url" value="{getUrl('', 'module', $module, 'act', $act, 'module_srl', $module_srl)}" />
<input type="hidden" name="target_module_srl" value="{$module_info->module_srl?$module_info->module_srl:$module_srls}" />
@ -6,30 +6,30 @@
<div class="table">
<table width="100%" border="1" cellspacing="0">
<tr>
<th scope="col"><div>{$lang->allowed_filesize}</div></th>
<td>
<input type="text" name="allowed_filesize" value="{$file_config->allowed_filesize}" size="3" />MB
<p>{$lang->about_allowed_filesize}</p>
<th scope="row"><label for="allowed_filesize">{$lang->allowed_filesize}</label></th>
<td class="text">
<input type="text" name="allowed_filesize" id="allowed_filesize" value="{$file_config->allowed_filesize}" size="3" style="width:30px" /> MB
<p class="desc">{$lang->about_allowed_filesize}</p>
</td>
</tr>
<tr>
<th scope="col"><div>{$lang->allowed_attach_size}</div></th>
<td>
<input type="text" name="allowed_attach_size" value="{$file_config->allowed_attach_size}" size="3" />MB
<th scope="row"><label for="allowed_attach_size">{$lang->allowed_attach_size}</label></th>
<td class="text">
<input type="text" name="allowed_attach_size" id="allowed_attach_size" value="{$file_config->allowed_attach_size}" size="3" style="width:30px" /> MB
/ {ini_get('upload_max_filesize')}
<p>{$lang->about_allowed_attach_size}</p>
<p class="desc">{$lang->about_allowed_attach_size}</p>
</td>
</tr>
<tr>
<th scope="col"><div>{$lang->allowed_filetypes}</div></th>
<td>
<input type="text" name="allowed_filetypes" value="{$file_config->allowed_filetypes}" />
<p>{$lang->about_allowed_filetypes}</p>
<th scope="row"><label for="allowed_filetypes">{$lang->allowed_filetypes}</label></th>
<td class="text">
<input type="text" name="allowed_filetypes" id="allowed_filetypes" value="{$file_config->allowed_filetypes}" />
<p class="desc">{$lang->about_allowed_filetypes}</p>
</td>
</tr>
<tr>
<th scope="col"><div>{$lang->enable_download_group}</div></th>
<td>
<th scope="row">{$lang->enable_download_group}</th>
<td class="text">
<!--@foreach($group_list as $k => $v)-->
<input type="checkbox" class="checkbox" name="download_grant[]" value="{$v->group_srl}" id="grant_{$key}_{$v->group_srl}" <!--@if(in_array($v->group_srl, $file_config->download_grant))-->checked="checked"<!--@end-->/>
<label for="grant_{$key}_{$v->group_srl}">{$v->title}</label>

View file

@ -1,10 +1,8 @@
<load target="js/file_admin.js" usecdn="true" />
<h3 class="xeAdmin">{$lang->file} <span class="gray">{$lang->cmd_management}</span></h3>
<div class="header4 gap1">
<ul class="localNavigation">
<li <!--@if($act=='dispFileAdminList')-->class="on"<!--@end-->><a href="{getUrl('act','dispFileAdminList')}">{$lang->file_list}</a></li>
<li <!--@if($act=='dispFileAdminConfig')-->class="on"<!--@end-->><a href="{getUrl('act','dispFileAdminConfig')}">{$lang->cmd_module_config}</a></li>
<h2 class="h2">{$lang->file} {$lang->cmd_management}</h2>
<div class="cnb">
<ul>
<li <!--@if($act=='dispFileAdminList')-->class="active"<!--@end-->><a href="{getUrl('act','dispFileAdminList')}">{$lang->file_list}</a></li>
<li <!--@if($act=='dispFileAdminConfig')-->class="active"<!--@end-->><a href="{getUrl('act','dispFileAdminConfig')}">{$lang->cmd_module_config}</a></li>
</ul>
</div>