mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-27 22:33:10 +09:00
Merge branch 'develop' into next
This commit is contained in:
commit
9782c30654
14 changed files with 42 additions and 18 deletions
|
|
@ -89,6 +89,9 @@
|
|||
.x .x_input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
|
||||
.x a{color:#1a87ff;text-decoration:none}
|
||||
.x a:hover{color:#005580;text-decoration:underline}
|
||||
.x a [class^="x_icon-"], .x a [class*=" x_icon-"] {
|
||||
position: relative; top: 2px;
|
||||
}
|
||||
.x .x_img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}
|
||||
.x .x_img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);-webkit-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);-moz-box-shadow:0 1px 3px rgba(0, 0, 0, 0.1);box-shadow:0 1px 3px rgba(0, 0, 0, 0.1)}
|
||||
.x .x_img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px}
|
||||
|
|
|
|||
|
|
@ -33,9 +33,9 @@
|
|||
<td><a href="{getSiteUrl($val->domain,'','mid',$val->mid)}">{$val->browser_title}</a></td>
|
||||
<td>{zdate($val->regdate,"Y-m-d")}</td>
|
||||
<td>
|
||||
<a href="{getUrl('act','dispBoardAdminBoardInfo','module_srl',$val->module_srl)}" class="x_icon-cog" title="{$lang->cmd_setup}">{$lang->cmd_setup}</a>
|
||||
<a href="{getUrl('','module','module','act','dispModuleAdminCopyModule','module_srl',$val->module_srl)}" class="x_icon-plus" onclick="popopen(this.href);return false;" title="{$lang->cmd_copy}">{$lang->cmd_copy}</a>
|
||||
<a href="{getUrl('act','dispBoardAdminDeleteBoard','module_srl', $val->module_srl)}" class="x_icon-remove" title="{$lang->cmd_delete}">{$lang->cmd_delete}</a>
|
||||
<a href="{getUrl('act','dispBoardAdminBoardInfo','module_srl',$val->module_srl)}"><i class="x_icon-cog"></i> {$lang->cmd_setup}</a>
|
||||
<a href="{getUrl('','module','module','act','dispModuleAdminCopyModule','module_srl',$val->module_srl)}" onclick="popopen(this.href);return false;"><i class="x_icon-plus"></i> {$lang->cmd_copy}</a>
|
||||
<a href="{getUrl('act','dispBoardAdminDeleteBoard','module_srl', $val->module_srl)}"><i class="x_icon-remove"></i> {$lang->cmd_delete}</a>
|
||||
</td>
|
||||
<td><input type="checkbox" name="cart" value="{$val->module_srl}" class="selectedModule" data-mid="{$val->mid}" data-browser_title="{$val->browser_title}" /></td>
|
||||
</tr>
|
||||
|
|
|
|||
|
|
@ -53,6 +53,7 @@ html {
|
|||
}
|
||||
body.cke_editable {
|
||||
min-height: 100vh;
|
||||
box-sizing: border-box;
|
||||
padding: 10px;
|
||||
.light_dark(@colorset);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -93,10 +93,18 @@ class file extends ModuleObject
|
|||
{
|
||||
return true;
|
||||
}
|
||||
if($oDB->getColumnInfo('files', 'mime_type')->size < 100)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
if(!$oDB->isColumnExists('files', 'original_type'))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
if($oDB->getColumnInfo('files', 'original_type')->size < 100)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
if(!$oDB->isColumnExists('files', 'width'))
|
||||
{
|
||||
return true;
|
||||
|
|
@ -190,7 +198,11 @@ class file extends ModuleObject
|
|||
}
|
||||
if(!$oDB->isColumnExists('files', 'mime_type'))
|
||||
{
|
||||
$oDB->addColumn('files', 'mime_type', 'varchar', '60', '', true, 'file_size');
|
||||
$oDB->addColumn('files', 'mime_type', 'varchar', '100', '', true, 'file_size');
|
||||
}
|
||||
if($oDB->getColumnInfo('files', 'mime_type')->size < 100)
|
||||
{
|
||||
$oDB->modifyColumn('files', 'mime_type', 'varchar', 100, '', true);
|
||||
}
|
||||
if(!$oDB->isIndexExists('files', 'idx_mime_type'))
|
||||
{
|
||||
|
|
@ -198,7 +210,11 @@ class file extends ModuleObject
|
|||
}
|
||||
if(!$oDB->isColumnExists('files', 'original_type'))
|
||||
{
|
||||
$oDB->addColumn('files', 'original_type', 'varchar', '60', null, false, 'mime_type');
|
||||
$oDB->addColumn('files', 'original_type', 'varchar', '100', null, false, 'mime_type');
|
||||
}
|
||||
if($oDB->getColumnInfo('files', 'original_type')->size < 100)
|
||||
{
|
||||
$oDB->modifyColumn('files', 'original_type', 'varchar', 100, '', false);
|
||||
}
|
||||
if(!$oDB->isColumnExists('files', 'width'))
|
||||
{
|
||||
|
|
|
|||
|
|
@ -11,8 +11,8 @@
|
|||
<column name="uploaded_filename" type="varchar" size="250" />
|
||||
<column name="thumbnail_filename" type="varchar" size="250" />
|
||||
<column name="file_size" type="number" size="11" default="0" notnull="notnull" index="idx_file_size" />
|
||||
<column name="mime_type" type="varchar" size="60" notnull="notnull" index="idx_mime_type" />
|
||||
<column name="original_type" type="varchar" size="60" />
|
||||
<column name="mime_type" type="varchar" size="100" notnull="notnull" index="idx_mime_type" />
|
||||
<column name="original_type" type="varchar" size="100" />
|
||||
<column name="width" type="number" size="11" />
|
||||
<column name="height" type="number" size="11" />
|
||||
<column name="duration" type="number" size="11" />
|
||||
|
|
|
|||
|
|
@ -76,6 +76,8 @@ $lang->module_type = 'Select Page';
|
|||
$lang->create_menu_url = 'Create Page ID';
|
||||
$lang->select_menu_url = 'Select Page ID';
|
||||
$lang->exposure_limits = 'Exposure limits';
|
||||
$lang->msg_empty_menu_item = 'Menu item is empty.';
|
||||
$lang->msg_url_is_required = 'Please enter a valid URL.';
|
||||
$lang->copy = 'Copy';
|
||||
$lang->cut = 'Cut';
|
||||
$lang->paste = 'Paste';
|
||||
|
|
|
|||
|
|
@ -77,6 +77,7 @@ $lang->create_menu_url = '페이지 아이디 생성';
|
|||
$lang->select_menu_url = '페이지 아이디 선택';
|
||||
$lang->exposure_limits = '노출 제한';
|
||||
$lang->msg_empty_menu_item = '선택된 메뉴의 정보가 없습니다.';
|
||||
$lang->msg_url_is_required = 'URL을 입력해 주십시오.';
|
||||
$lang->copy = '복사';
|
||||
$lang->cut = '잘라내기';
|
||||
$lang->paste = '붙여넣기';
|
||||
|
|
|
|||
|
|
@ -663,6 +663,7 @@
|
|||
xe.lang.msg_no_root = xe.msg_no_root = "{$lang->msg_no_root}";
|
||||
xe.lang.msg_no_shortcut = xe.msg_no_shortcut = "{$lang->msg_no_shortcut}";
|
||||
xe.lang.msg_target_is_sub_of_origin = '{$lang->msg_target_is_sub_of_origin}';
|
||||
xe.lang.msg_url_is_required = '{$lang->msg_url_is_required}';
|
||||
xe.lang.confirm_sitemap_delete = '{$lang->confirm_sitemap_delete}';
|
||||
xe.lang.confirm_menu_delete = '{$lang->confirm_menu_delete}';
|
||||
xe.lang.confirm_delete_all_contents = '{$lang->confirm_delete_all_contents}';
|
||||
|
|
@ -1825,7 +1826,7 @@ jQuery(function($){
|
|||
if(nSelectedTabIdx === 0){
|
||||
sUrl = $('#add_menu .x_active ._linkUrl').val();
|
||||
if(!sUrl || sUrl === "http://" || sUrl === "https://"){
|
||||
$.xeMsgBox.alert('URL is required');
|
||||
$.xeMsgBox.alert(xe.lang.msg_url_is_required);
|
||||
return;
|
||||
}
|
||||
//if(!sUrl.match(/^http:\/\//)){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue