mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 16:59:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1844 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
2212b2893d
commit
c4378634e2
9 changed files with 30 additions and 26 deletions
|
|
@ -209,19 +209,19 @@ function drawNode(parent_node, menu_id) {
|
|||
// 무조건 펼침이 아닐 경우
|
||||
if(expand != "Y") {
|
||||
if(!hasNextSibling) {
|
||||
line_icon = "minus";
|
||||
line_icon = "plus";
|
||||
folder_icon = "page";
|
||||
} else {
|
||||
line_icon = "minusbottom";
|
||||
line_icon = "plusbottom";
|
||||
folder_icon = "page";
|
||||
}
|
||||
// 무조건 펼침일 경우
|
||||
} else {
|
||||
if(!hasNextSibling) {
|
||||
line_icon = "plus";
|
||||
line_icon = "minus";
|
||||
folder_icon = "page";
|
||||
} else {
|
||||
line_icon = "plusbottom";
|
||||
line_icon = "minusbottom";
|
||||
folder_icon = "page";
|
||||
}
|
||||
}
|
||||
|
|
@ -298,13 +298,13 @@ function toggleFolder(zone_id) {
|
|||
// 대상의 자식 노드들이 숨겨져 있다면 열고 아니면 닫기
|
||||
if(child_zone.style.display == "block") {
|
||||
child_zone.style.display = "none";
|
||||
if(line_icon.src.indexOf('bottom')>0) line_icon.src = tree_minus_bottom_icon.src;
|
||||
else line_icon.src = tree_minus_icon.src;
|
||||
if(line_icon.src.indexOf('bottom')>0) line_icon.src = tree_plus_bottom_icon.src;
|
||||
else line_icon.src = tree_plus_icon.src;
|
||||
|
||||
folder_icon.src = tree_folder_icon.src;
|
||||
} else {
|
||||
if(line_icon.src.indexOf('bottom')>0) line_icon.src = tree_plus_bottom_icon.src;
|
||||
else line_icon.src = tree_plus_icon.src;
|
||||
if(line_icon.src.indexOf('bottom')>0) line_icon.src = tree_minus_bottom_icon.src;
|
||||
else line_icon.src = tree_minus_icon.src;
|
||||
folder_icon.src = tree_open_folder_icon.src;
|
||||
child_zone.style.display = "block";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -251,15 +251,15 @@ function blogToggleFolder(zone_id) {
|
|||
if(folder_obj.className == "folder_open") {
|
||||
child_zone.style.display = "none";
|
||||
|
||||
if(line_obj.className.indexOf('bottom')>0) line_obj.className = 'minus_bottom';
|
||||
else line_obj.className = 'minus';
|
||||
if(line_obj.className.indexOf('bottom')>0) line_obj.className = 'plus_bottom';
|
||||
else line_obj.className = 'plus';
|
||||
|
||||
folder_obj.className = 'folder_close'
|
||||
} else {
|
||||
child_zone.style.display = "block";
|
||||
|
||||
if(line_obj.className.indexOf('bottom')>0) line_obj.className = 'plus_bottom';
|
||||
else line_obj.className = 'plus';
|
||||
if(line_obj.className.indexOf('bottom')>0) line_obj.className = 'minus_bottom';
|
||||
else line_obj.className = 'minus';
|
||||
|
||||
folder_obj.className = 'folder_open';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -259,8 +259,8 @@ function blogToggleFolder(zone_id) {
|
|||
child_zone.style.display = "none";
|
||||
|
||||
if(!line_obj.className.search('null')) {
|
||||
if(line_obj.className.indexOf('bottom')>0) line_obj.className = 'minus_bottom';
|
||||
else line_obj.className = 'minus';
|
||||
if(line_obj.className.indexOf('bottom')>0) line_obj.className = 'plus_bottom';
|
||||
else line_obj.className = 'plus';
|
||||
}
|
||||
|
||||
folder_obj.className = 'folder_close'
|
||||
|
|
@ -268,8 +268,8 @@ function blogToggleFolder(zone_id) {
|
|||
child_zone.style.display = "block";
|
||||
|
||||
if(!line_obj.className.search('null')) {
|
||||
if(line_obj.className.indexOf('bottom')>0) line_obj.className = 'plus_bottom';
|
||||
else line_obj.className = 'plus';
|
||||
if(line_obj.className.indexOf('bottom')>0) line_obj.className = 'minus_bottom';
|
||||
else line_obj.className = 'minus';
|
||||
}
|
||||
|
||||
folder_obj.className = 'folder_open';
|
||||
|
|
|
|||
|
|
@ -25,15 +25,19 @@
|
|||
|
||||
<!-- 회원 관련 기능 -->
|
||||
<ul id="accountNavigation">
|
||||
<!-- 로그인 되었을 때 -->
|
||||
<!-- 비로그인 상태 -->
|
||||
<!--@if(!$is_logged)-->
|
||||
<li><a href="{getUrl('act','dispMemberSignUpForm')}">{$lang->cmd_signup}</a></li>
|
||||
<li class="loginAndLogout"><a href="#" onclick="location.href='{getUrl('act','dispMemberLoginForm')}';return false;">{$lang->cmd_login}</a> </li>
|
||||
|
||||
<!-- 비로그인 상태 -->
|
||||
<!-- 로그인 되었을 때 -->
|
||||
<!--@else-->
|
||||
<li><a href="{getUrl('act','dispMemberInfo')}">{$lang->cmd_view_member_info}</a></li>
|
||||
<li class="loginAndLogout"><a href="#" onclick="location.href='{getUrl('act','dispMemberLogout')}';return false;">{$lang->cmd_logout}</a></li>
|
||||
|
||||
<!--@if($logged_info->is_admin == 'Y')-->
|
||||
<li class="loginAndLogout"><a href="#" onclick="winopen('{getUrl('','module','admin')}');return false;">{$lang->cmd_management}</a> </li>
|
||||
<!--@end-->
|
||||
|
||||
<!--@end-->
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@
|
|||
|
||||
</table>
|
||||
<ul class="buttonCenter" style="margin-left:45%">
|
||||
<li><span class="buttonTypeA"><img src="./images/blank.gif" alt="" class="leftCap" /><img src="./images/iconCreate.gif" alt="" class="icon" /><input type="submit" value="{$lang->cmd_registration}" /><img src="./images/blank.gif" alt="" class="rightCap" /></span></li>
|
||||
<li><span class="buttonTypeA"><img src="./images/blank.gif" alt="" class="leftCap" /><input type="submit" value="{$lang->cmd_registration}" /><img src="./images/blank.gif" alt="" class="rightCap" /></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<th class="second" scope="row"><label for="textfield12">{$lang->db_port}</label></th>
|
||||
<td><input type="text" name="db_port" value="33000" class="inputTypeText w100" id="textfield12" /></td>
|
||||
<td><input type="text" name="db_port" value="3306" class="inputTypeText w100" id="textfield12" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class="second" scope="row"><label for="textfield13">{$lang->db_userid}</label></th>
|
||||
|
|
@ -71,7 +71,7 @@
|
|||
</table>
|
||||
|
||||
<ul class="buttonCenter" style="margin-left:45%">
|
||||
<li><span class="buttonTypeA"><img src="./images/blank.gif" alt="" class="leftCap" /><img src="./images/iconCreate.gif" alt="" class="icon" /><input type="submit" value="{$lang->cmd_registration}" /><img src="./images/blank.gif" alt="" class="rightCap" /></span></li>
|
||||
<li><span class="buttonTypeA"><img src="./images/blank.gif" alt="" class="leftCap" /><input type="submit" value="{$lang->cmd_registration}" /><img src="./images/blank.gif" alt="" class="rightCap" /></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<th class="second" scope="row"><label for="textfield12">{$lang->db_port}</label></th>
|
||||
<td><input type="text" name="db_port" value="33000" class="inputTypeText w100" id="textfield12" /></td>
|
||||
<td><input type="text" name="db_port" value="3306" class="inputTypeText w100" id="textfield12" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class="second" scope="row"><label for="textfield13">{$lang->db_userid}</label></th>
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
</table>
|
||||
|
||||
<ul class="buttonCenter" style="margin-left:45%">
|
||||
<li><span class="buttonTypeA"><img src="./images/blank.gif" alt="" class="leftCap" /><img src="./images/iconCreate.gif" alt="" class="icon" /><input type="submit" value="{$lang->cmd_registration}" /><img src="./images/blank.gif" alt="" class="rightCap" /></span></li>
|
||||
<li><span class="buttonTypeA"><img src="./images/blank.gif" alt="" class="leftCap" /><input type="submit" value="{$lang->cmd_registration}" /><img src="./images/blank.gif" alt="" class="rightCap" /></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@
|
|||
</table>
|
||||
|
||||
<ul class="buttonCenter" style="margin-left:45%">
|
||||
<li><span class="buttonTypeA"><img src="./images/blank.gif" alt="" class="leftCap" /><img src="./images/iconCreate.gif" alt="" class="icon" /><input type="submit" value="{$lang->cmd_registration}" /><img src="./images/blank.gif" alt="" class="rightCap" /></span></li>
|
||||
<li><span class="buttonTypeA"><img src="./images/blank.gif" alt="" class="leftCap" /><input type="submit" value="{$lang->cmd_registration}" /><img src="./images/blank.gif" alt="" class="rightCap" /></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@
|
|||
</table>
|
||||
|
||||
<ul class="buttonCenter" style="margin-left:45%">
|
||||
<li><span class="buttonTypeA"><img src="./images/blank.gif" alt="" class="leftCap" /><img src="./images/iconCreate.gif" alt="" class="icon" /><input type="submit" value="{$lang->cmd_registration}" /><img src="./images/blank.gif" alt="" class="rightCap" /></span></li>
|
||||
<li><span class="buttonTypeA"><img src="./images/blank.gif" alt="" class="leftCap" /><input type="submit" value="{$lang->cmd_registration}" /><img src="./images/blank.gif" alt="" class="rightCap" /></span></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue