Changeset 6184
- Timestamp:
- 06/05/08 19:41:21 (7 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
doc/changes_ko (modified) (1 diff)
-
lib/piece/blog/end.php (modified) (1 diff)
-
lib/piece/blog/list.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/changes_ko
r6181 r6184 31 31 * 스킨 : 스킨 편집시 스킨의 부분만을 편집할 수 있도록 영역별 탭 지원 (#952) 32 32 * 스킨 : 현재 편집중인 스킨의 html을 내려 받는 기능 추가 (#952) 33 34 === 변경된 점 === 33 * 스킨 : static patch가 가능한 스킨 요소들은 스킨 캐시 레벨에서 처리 (#998) 34 35 === 변경된 점 === 35 36 * 관리자 : 유저 인터페이스를 직관성을 위하여 기능 중심에서 사용자 인지 순서로 변경 (#897) 36 37 * 관리자 : 도움말 및 언어 리소스 대폭 변경 (#897) -
trunk/lib/piece/blog/end.php
r6183 r6184 91 91 $pagingView = getPagingView($paging, $skin->paging, $skin->pagingItem); 92 92 } 93 dress('paging', $pagingView, $view, false, true); 93 dress('paging_list', $pagingView, $view, false, true); 94 if(count($entries) != 0) dress('paging', $pagingView, $view, false, true); 94 95 $url = URL::encode($paging['url'],$service['useEncodedURL']); 95 96 $prefix = $paging['prefix']; 96 97 $postfix = isset($paging['postfix']) ? $paging['postfix'] : ''; 98 // prev_page, next_page for legacy support. 97 99 dress('prev_page', isset($paging['prev']) ? "href='$url$prefix{$paging['prev']}$postfix'" : '',$view); 98 100 dress('next_page', isset($paging['next']) ? "href='$url$prefix{$paging['next']}$postfix'" : '',$view); -
trunk/lib/piece/blog/list.php
r5986 r6184 37 37 dress('list_count', isset($list['count']) ? $list['count'] : '0', $listView); 38 38 $listView = fireEvent('ViewList', $listView, $list); 39 $listView = $listView.CRLF.'[##_paging_list_##]'; 40 39 41 dress('list', $listView, $view); 40 42 if(isset($cache)) {
