Changeset 5912
- Timestamp:
- 05/10/08 01:25:04 (5 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 7 modified
-
image/needlworks.png (added)
-
interface/owner/center/about/index.php (modified) (1 diff)
-
interface/owner/control/server/index.php (modified) (2 diffs)
-
interface/owner/skin/coverpage/index.php (modified) (4 diffs)
-
interface/owner/skin/sidebar/index.php (modified) (4 diffs)
-
lib/piece/owner/contentMenu.php (modified) (2 diffs)
-
lib/piece/owner/skinTab.php (added)
-
style/admin/whitedream/basic.css (modified) (1 diff)
-
style/admin/whitedream/center.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/interface/owner/center/about/index.php
r5840 r5912 21 21 <img src="http://www.w3.org/Icons/valid-xhtml11-blue" alt="Valid XHTML 1.1!" /> 22 22 </div> 23 <div id="Needlworks-Icon"> 24 <img src="<?php echo $serviceURL;?>/image/needlworks.png" alt="Made by Needlworks / TNF" /> 25 </div> 26 <div class="clear"></div> 23 27 </div> 24 28 -
trunk/interface/owner/control/server/index.php
r5895 r5912 23 23 } 24 24 function setConfigFile() { 25 if(!confirm('<?php echo _f('적용하시면 기존의 %1 파일이 변경됩니다. 이 변경사항은 되돌릴 수 없습니다. 그래도 적용하시겠습니까?','config.php');?>')) return; 25 26 if(document.getElementById('usePageCache').checked) usePageCache = 1; 26 27 else usePageCache = 0; … … 97 98 ?> 98 99 function setRewrite() { 100 if(!confirm('<?php echo _f('적용하시면 기존의 %1 파일이 변경됩니다. 이 변경사항은 되돌릴 수 없습니다. 그래도 적용하시겠습니까?','.htaccess');?>')) return; 99 101 var htaccess = document.getElementById('rewrite'); 100 102 -
trunk/interface/owner/skin/coverpage/index.php
r5905 r5912 4 4 /// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 5 5 require ROOT . '/lib/includeForBlogOwner.php'; 6 $tabsClass['cover'] = true; 6 7 requireLibrary('blog.skin'); 7 8 requireModel("blog.sidebar"); … … 235 236 <h2 class="caption"><span class="main-text"><?php echo _t('표지를 관리합니다');?></span></h2> 236 237 <?php 238 require ROOT . '/lib/piece/owner/skinTab.php'; 239 ?> 240 241 <?php 237 242 if(isset($skin->cover)) { 238 243 ?> … … 263 268 $errmsg = '사용중인 표지 플러그인이 없습니다.'; 264 269 ?> 265 <ul id="coverpage-tabs-box" class="tabs-box ">270 <ul id="coverpage-tabs-box" class="tabs-box right"> 266 271 <li class="selected"><a id="default-mode-button" class="button" href="<?php echo $blogURL;?>/owner/skin/coverpage" title="<?php echo _t('실제 출력되는 내용을 직접 볼 수 있는 기본 모드입니다.');?>"><?php echo _t('기본모드');?></a></li> 267 272 </ul> … … 285 290 } 286 291 ?> 287 <ul id="coverpage-tabs-box" class="tabs-box ">292 <ul id="coverpage-tabs-box" class="tabs-box right"> 288 293 <li<?php echo $defaultModeSelected ? ' class="selected"' : NULL;?>><a id="default-mode-button" class="button" href="<?php echo $blogURL;?>/owner/skin/coverpage" title="<?php echo _t('실제 출력되는 내용을 직접 볼 수 있는 기본 모드입니다.');?>"><?php echo _t('기본모드');?></a></li> 289 294 <li<?php echo $safeModeSelected ? ' class="selected"' : NULL;?>><a id="safe-mode-button" class="button" href="<?php echo $blogURL;?>/owner/skin/coverpage?safe" title="<?php echo _t('태그를 사용하지 않아 레이아웃이 깨질 위험이 없는 모드입니다.');?>"><?php echo _t('안전모드');?></a></li> -
trunk/interface/owner/skin/sidebar/index.php
r5905 r5912 4 4 /// See the GNU General Public License for more details. (/doc/LICENSE, /doc/COPYRIGHT) 5 5 require ROOT . '/lib/includeForBlogOwner.php'; 6 $tabsClass['sidebar'] = true; 6 7 requireLibrary('blog.skin'); 7 8 requireModel("blog.sidebar"); … … 217 218 <form id="part-sidebar-order" class="part" method="post" action="<?php echo parseURL($blogURL.'/owner/skin/sidebar/register'.$viewMode2);?>"> 218 219 <h2 class="caption"><span class="main-text"><?php echo _t('사이드바 기능을 관리합니다');?></span></h2> 219 220 <?php 221 require ROOT . '/lib/piece/owner/skinTab.php'; 222 ?> 220 223 <div class="main-explain-box"> 221 224 <p class="explain"><?php echo _t('블로그의 사이드바 구성을 변경할 수 있습니다. 사이드바는 블로그 화면에서 양 옆이나 위아래에 표시되는 메뉴가 있는 부분을 말합니다. 사이드바에 새로운 요소를 추가/삭제할 수 있으며 자유로운 위치 이동을 할 수 있습니다.');?></p> … … 230 233 if ($sidebarCount == 0) { 231 234 ?> 232 <ul id="sidebar-tabs-box" class="tabs-box ">235 <ul id="sidebar-tabs-box" class="tabs-box right"> 233 236 <li class="selected"><a id="default-mode-button" class="button" href="<?php echo parseURL($blogURL.'/owner/skin/sidebar');?>" title="<?php echo _t('실제 출력되는 내용을 직접 볼 수 있는 기본 모드입니다.');?>"><?php echo _t('기본모드');?></a></li> 234 237 </ul> … … 253 256 } 254 257 ?> 255 <ul id="sidebar-tabs-box" class="tabs-box ">258 <ul id="sidebar-tabs-box" class="tabs-box right"> 256 259 <li<?php echo $defaultModeSelected ? ' class="selected"' : NULL;?>><a id="default-mode-button" class="button" href="<?php echo parseURL($blogURL.'/owner/skin/sidebar');?>" title="<?php echo _t('실제 출력되는 내용을 직접 볼 수 있는 기본 모드입니다.');?>"><?php echo _t('기본모드');?></a></li> 257 260 <li<?php echo $safeModeSelected ? ' class="selected"' : NULL;?>><a id="safe-mode-button" class="button" href="<?php echo parseURL($blogURL.'/owner/skin/sidebar?safe');?>" title="<?php echo _t('태그를 사용하지 않아 레이아웃이 깨질 위험이 없는 모드입니다.');?>"><?php echo _t('안전모드');?></a></li> -
trunk/lib/piece/owner/contentMenu.php
r5908 r5912 53 53 array('menu'=>'edit','title'=>_t('스킨 편집'),'link'=>'/owner/skin/edit'), 54 54 array('menu'=>'setting','title'=>_t('상세 설정'),'link'=>'/owner/skin/setting'), 55 array('menu'=>'coverpage','title'=>_t('색동'),'link'=>'/owner/skin/coverpage'), 56 array('menu'=>'sidebar','title'=>_t('사이드바'),'link'=>'/owner/skin/sidebar'), 55 array('menu'=>'widget','title'=>_t('위젯'),'link'=>'/owner/skin/sidebar'), 57 56 array('menu'=>'adminSkin','title'=>_t('관리자 패널 스킨 선택'),'link'=>'/owner/skin/adminSkin') 58 57 ); … … 147 146 else if(in_array($blogMenu['contentMenu'],array('linkadd','linkedit','linkcategoryEdit','xfn'))) 148 147 $blogMenu['contentMenu'] = 'link'; 149 148 else if(in_array($blogMenu['contentMenu'],array('coverpage','sidebar'))) 149 $blogMenu['contentMenu'] = 'widget'; 150 150 151 foreach($blogContentMenuItem as $contentMenuItem) { 151 152 $PostIdStr = null; -
trunk/style/admin/whitedream/basic.css
r5873 r5912 521 521 } 522 522 523 .right li 524 { 525 float: right !important; 526 } 527 523 528 .tabs-box li a 524 529 { -
trunk/style/admin/whitedream/center.css
r5859 r5912 490 490 { 491 491 padding-left: 20px; 492 float:left; 493 } 494 495 #Needlworks-Icon 496 { 497 float:left; 492 498 } 493 499
