Show
Ignore:
Timestamp:
04/11/08 17:24:28 (7 months ago)
Author:
jparker
Message:

#877

  • category, archive 댓글수를 오른쪽으로 보기 좋게 밀어버림.
  • 태그리스트 단정하게(--;) 스타일 수정.
  • 아이폰과 터치팟 상에서 검색 키패드를 Search로 변경.
    • e-mail관련 키패드는 어플에서만 가능할 듯 함.
  • 블로그 로고 그림이 없을 경우 텍스트큐브 아이콘으로 출력되게 변경.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/view/iphoneView.php

    r5665 r5746  
    7979    if ($xhtml) { 
    8080        $printCategory  = '<li class="category"><a href="' . htmlspecialchars($tree['link']) . '" class="link">' . htmlspecialchars($tree['label']); 
    81         $printCategory .= ' <span class="c_cnt">(' . $tree['value'] . ')</span>'; 
     81        $printCategory .= ' <span class="c_cnt">' . $tree['value'] . '</span>'; 
    8282        $printCategory .= '</a></li>'; 
    8383        for ($i=0; $i<count($tree['children']); $i++) { 
    8484            $child = $tree['children'][$i]; 
    8585            $printCategory .= '<li class="category"><a href="' . htmlspecialchars($child['link']) . '" class="link">' . htmlspecialchars($child['label']); 
    86             $printCategory .= ' <span class="c_cnt">(' . $child['value'] . ')</span>'; 
     86            $printCategory .= ' <span class="c_cnt">' . $child['value'] . '</span>'; 
    8787            $printCategory .= '</a></li>'; 
    8888            if (sizeof($child['children']) > 0) { 
     
    9090                    $leaf = $child['children'][$j]; 
    9191                    $printCategory .= '<li class="category_sub"><a href="' . htmlspecialchars($leaf['link']) . '" class="link">&bull;&nbsp; ' . htmlspecialchars($leaf['label']); 
    92                     $printCategory .= ' <span class="c_cnt">(' . $leaf['value'] . ')</span>'; 
     92                    $printCategory .= ' <span class="c_cnt">' . $leaf['value'] . '</span>'; 
    9393                    $printCategory .= '</a></li>'; 
    9494                } 
     
    128128        $dateName = date("F Y",(mktime(0,0,0,substr($archive['period'],4),1,substr($archive['period'],0,4)))); 
    129129        $printArchive .= '<li class="archive"><a href="' . $blogURL . '/archive/' . $archive['period'] . '" class="link">' . $dateName; 
    130         $printArchive .= ' <span class="c_cnt">(' . $archive['count'] . ')</span>'; 
     130        $printArchive .= ' <span class="c_cnt">' . $archive['count'] . '</span>'; 
    131131        $printArchive .= '</a></li>'; 
    132132        $oldPeriod = substr($archive['period'],0,4); 
     
    169169    list($maxTagFreq, $minTagFreq) = getTagFrequencyRange(); 
    170170    foreach ($tags as $tag) { 
    171         $printTag .= '<li class="tag"><a href="' . $blogURL . '/tag/' . $tag['id'] . '" class="cloud' . getTagFrequency($tag, $maxTagFreq, $minTagFreq).'" >' . htmlspecialchars($tag['name']); 
    172         $printTag .= '</a></li>'; 
     171        $printTag .= '<li class="tag"> <a href="' . $blogURL . '/tag/' . $tag['id'] . '" class="cloud' . getTagFrequency($tag, $maxTagFreq, $minTagFreq).'" >' . htmlspecialchars($tag['name']); 
     172        $printTag .= '</a> </li>'; 
    173173    } 
    174174    $view = ob_get_contents();