mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-24 13:49:56 +09:00
merge from 1.5.3 (~r10943)
git-svn-id: http://xe-core.googlecode.com/svn/trunk@10951 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
7aa4798373
commit
54e3a72065
334 changed files with 13011 additions and 5561 deletions
|
|
@ -253,7 +253,7 @@
|
|||
}
|
||||
|
||||
$oSecurity = new Security($content_items);
|
||||
$oSecurity->encodeHTML('..variables.title', '..variables.content', '..variables.user_name', '..variables.nick_name');
|
||||
$oSecurity->encodeHTML('..variables.content', '..variables.user_name', '..variables.nick_name');
|
||||
|
||||
return $content_items;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ function content_widget_next(obj,list_per_page){
|
|||
var total_page = parseInt((list.size()-1) / list_per_page,10)+1;
|
||||
list.each(function(i){
|
||||
if(jQuery(this).css('display') !='none'){
|
||||
page = parseInt((i+1)/list_per_page,10)+1;
|
||||
page = parseInt(i/list_per_page,10) + 1;
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
|
@ -34,7 +34,7 @@ function content_widget_prev(obj,list_per_page){
|
|||
var total_page = parseInt((list.size()-1) / list_per_page,10)+1;
|
||||
list.each(function(i){
|
||||
if(jQuery(this).css('display') !='none'){
|
||||
page = parseInt((i+1)/list_per_page,10)+1;
|
||||
page = parseInt(i/list_per_page,10)+1;
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
|
|
|||
|
|
@ -16,16 +16,16 @@
|
|||
xAddEventListener(window, "load", function(){ doFocusUserId("fo_login_widget"); });
|
||||
</script>
|
||||
|
||||
<form action="./" method="post" ruleset="@login" id="fo_login_widget">
|
||||
<form action="{getUrl('','act','procMemberLogin')}" method="post" ruleset="@login" id="fo_login_widget">
|
||||
<fieldset id="login" class="login_{$colorset}">
|
||||
<legend>{$lang->cmd_login}</legend>
|
||||
<h2>Login</h2>
|
||||
<input type="hidden" name="act" value="procMemberLogin" />
|
||||
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
|
||||
<input type="hidden" name="success_return_url" value="{htmlspecialchars(getRequestUriByServerEnviroment())}" />
|
||||
<div class="idpwWrap">
|
||||
<div class="idpw">
|
||||
<input name="user_id" type="text" title="user id" />
|
||||
<input name="password" type="password" title="password" />
|
||||
<input name="user_id" type="text" title="<!--@if($member_config->identifier != 'email_address')-->{$lang->user_id}<!--@else-->{$lang->email_address}<!--@end-->" />
|
||||
<input name="password" type="password" title="{$lang->password}" />
|
||||
</div>
|
||||
<p class="save">
|
||||
<input type="checkbox" name="keep_signed" id="keepid" value="Y" onclick="if(this.checked) return confirm(keep_signed_msg);" />
|
||||
|
|
|
|||
|
|
@ -17,16 +17,16 @@
|
|||
</script>
|
||||
|
||||
|
||||
<form action="./" method="post" ruleset="@login" id="fo_login_widget" class="fo_login_widget">
|
||||
<form action="{getUrl('','act','procMemberLogin')}" method="post" ruleset="@login" id="fo_login_widget" class="fo_login_widget">
|
||||
<fieldset id="login" class="login_{$colorset}">
|
||||
<legend>{$lang->cmd_login}</legend>
|
||||
<input type="hidden" name="act" value="procMemberLogin" />
|
||||
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
|
||||
<input type="hidden" name="success_return_url" value="{htmlspecialchars(getRequestUriByServerEnviroment())}" />
|
||||
<h2>Login</h2>
|
||||
<div class="idpwWrap">
|
||||
<div class="idpw">
|
||||
<input name="user_id" type="text" title="user id" />
|
||||
<input name="password" type="password" title="password" />
|
||||
<input name="user_id" type="text" title="<!--@if($member_config->identifier != 'email_address')-->{$lang->user_id}<!--@else-->{$lang->email_address}<!--@end-->" />
|
||||
<input name="password" type="password" title="{$lang->password}" />
|
||||
</div>
|
||||
<p class="save">
|
||||
<input type="checkbox" name="keep_signed" id="keepid" value="Y" onclick="if(this.checked) return confirm(keep_signed_msg);" />
|
||||
|
|
|
|||
|
|
@ -14,14 +14,14 @@
|
|||
<div cond="$XE_VALIDATOR_MESSAGE" class="message {$XE_VALIDATOR_MESSAGE_TYPE}">
|
||||
<p>{$XE_VALIDATOR_MESSAGE}</p>
|
||||
</div>
|
||||
<form id="fo_login_widget" action="./" method="post" ruleset="@login" class="login_{$colorset}">
|
||||
<form id="fo_login_widget" action="{getUrl('','act','procMemberLogin')}" method="post" ruleset="@login" class="login_{$colorset}">
|
||||
<fieldset>
|
||||
<input type="hidden" name="act" value="procMemberLogin" />
|
||||
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
|
||||
<input type="hidden" name="success_return_url" value="{htmlspecialchars(getRequestUriByServerEnviroment())}" />
|
||||
<div class="idpwWrap">
|
||||
<div class="idpw">
|
||||
<input name="user_id" type="text" title="user id" />
|
||||
<input name="password" type="password" title="password" />
|
||||
<input name="user_id" type="text" title="<!--@if($member_config->identifier != 'email_address')-->{$lang->user_id}<!--@else-->{$lang->email_address}<!--@end-->" />
|
||||
<input name="password" type="password" title="{$lang->password}" />
|
||||
<p class="keep">
|
||||
<input type="checkbox" name="keep_signed" id="keep_signed" value="Y" />
|
||||
<label for="keep_signed">{$lang->keep_signed}</label>
|
||||
|
|
|
|||
|
|
@ -10,11 +10,11 @@ var keep_signed_msg = "{$lang->about_keep_signed}";
|
|||
|
||||
</script>
|
||||
|
||||
<form action="./" method="post" ruleset="@login" id="fo_login_widget">
|
||||
<form action="{getUrl('','act','procMemberLogin')}" method="post" ruleset="@login" id="fo_login_widget">
|
||||
<fieldset id="login">
|
||||
<legend>{$lang->cmd_login}</legend>
|
||||
<input type="hidden" name="act" value="procMemberLogin" />
|
||||
<input type="hidden" name="success_return_url" value="{getRequestUriByServerEnviroment()}" />
|
||||
<input type="hidden" name="success_return_url" value="{htmlspecialchars(getRequestUriByServerEnviroment())}" />
|
||||
<div id="sign_box">
|
||||
<div class="txt sign_state1"><span class="label">Sign in</span></div>
|
||||
<div class="signin_window" style="display:none;">
|
||||
|
|
@ -22,8 +22,8 @@ var keep_signed_msg = "{$lang->about_keep_signed}";
|
|||
<div class="body">
|
||||
<div class="mb_input_box">
|
||||
<div class="m_left">
|
||||
<div class="input_text mb_id"><img src="images/bullet_input_id.gif" alt="" title="" /><input name="user_id" type="text" title="user id" /></div>
|
||||
<div class="input_text mb_pw"><img src="images/bullet_input_pw.gif" alt="" title="" /><input name="password"type="password" title="password" /></div>
|
||||
<div class="input_text mb_id"><img src="images/bullet_input_id.gif" alt="" title="" /><input name="user_id" type="text" title="<!--@if($member_config->identifier != 'email_address')-->{$lang->user_id}<!--@else-->{$lang->email_address}<!--@end-->" /></div>
|
||||
<div class="input_text mb_pw"><img src="images/bullet_input_pw.gif" alt="" title="" /><input name="password" type="password" title="{$lang->password}" /></div>
|
||||
<label><input type="checkbox" name="keep_signed" id="keepid" class="sign_check" value="Y" onclick="if(this.checked) return confirm(keep_signed_msg);" />{$lang->keep_signed}</label>
|
||||
|
||||
<p cond="$ssl_mode" class="securitySignIn <!--@if($ssl_mode)-->SSL<!--@else-->noneSSL<!--@end-->">
|
||||
|
|
|
|||
|
|
@ -16,26 +16,26 @@
|
|||
<!--@if(!$__module_info && $widget_info->show_browser_title=='Y' && $item->getBrowserTitle())-->
|
||||
{$item->getBrowserTitle()} ›
|
||||
<!--@end-->
|
||||
|
||||
|
||||
<!--@if($widget_info->show_category=='Y' && $item->getCategory())-->
|
||||
{$item->getCategory()} ›
|
||||
<!--@end-->
|
||||
|
||||
|
||||
<strong>{$item->getTitle($widget_info->subject_cut_size)}</strong>
|
||||
|
||||
|
||||
<!--@if($widget_info->show_comment_count=='Y' && $item->getCommentCount())-->
|
||||
<em title="Replies">[{$item->getCommentCount()}]</em>
|
||||
<!--@end-->
|
||||
|
||||
|
||||
<!--@if($widget_info->show_trackback_count=='Y' && $item->getTrackbackCount())-->
|
||||
<em title="Trackbacks">[{$item->getTrackbackCount()}]</em>
|
||||
<!--@end-->
|
||||
</span>
|
||||
|
||||
|
||||
<!--@else if($widget_info->option_view_arr[$j]=='nickname')-->
|
||||
<span class="auth">
|
||||
<strong>{$item->getNickName()}</strong>
|
||||
<span class="time">{$item->getRegdate("Y-m-d")} {$item->getRegdate("H:i")}</span>
|
||||
<span class="time">{$item->getRegdate("Y-m-d H:i")}</span>
|
||||
</span>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue