Index: trunk/wp-content/themes/xpress_default/blocks/block_style.css
===================================================================
--- trunk/wp-content/themes/xpress_default/blocks/block_style.css	(revision 121)
+++ trunk/wp-content/themes/xpress_default/blocks/block_style.css	(revision 122)
@@ -251,2 +251,69 @@
 
 }
+
+/*********** recent post content block ***************/
+.xpress_tag_cloud_block {
+
+}
+
+.xpress_tag_cloud_block a {
+
+}
+
+.xpress_tag_cloud_block a:hover {
+
+}
+
+.xpress_tag_cloud_block a:visited {
+
+}
+
+/*********** category block ***************/
+.xpress_category_block {
+
+}
+
+.xpress_category_block ul {
+
+}
+
+.xpress_category_block li {
+
+}
+
+.xpress_category_block a {
+
+}
+
+.xpress_category_block a:hover {
+
+}
+
+.xpress_category_block a:visited {
+
+}
+
+/*********** meta block ***************/
+.xpress_meta_block {
+
+}
+
+.xpress_meta_block ul {
+
+}
+
+.xpress_meta_block li {
+
+}
+
+.xpress_meta_block a {
+
+}
+
+.xpress_meta_block a:hover {
+
+}
+
+.xpress_meta_block a:visited {
+
+}
Index: trunk/wp-content/themes/xpress_default/blocks/category_block_theme.php
===================================================================
--- trunk/wp-content/themes/xpress_default/blocks/category_block_theme.php	(revision 122)
+++ trunk/wp-content/themes/xpress_default/blocks/category_block_theme.php	(revision 122)
@@ -0,0 +1,43 @@
+<?php
+
+function category_block($options)
+{
+	$mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ;
+	$this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_block_category.html' : trim( $options[1] );
+	$show_option_all = empty( $options[2] ) ? '' : $options[2] ;
+	$orderby = empty( $options[3] ) ? 'name' : $options[3] ;
+	$order = empty( $options[4] ) ? 'ASC' : $options[4] ;
+	$show_last_updated = empty( $options[5] ) ? false : true ;
+	$show_count = empty( $options[6] ) ? false : true ;
+	$hide_empty = empty( $options[7] ) ? false : true ;
+	$use_desc_for_title = empty( $options[8] ) ? false : true ;
+	$exclude = empty( $options[9] ) ? '' : $options[9] ;
+	$includes = empty( $options[10] ) ? '' : $options[10] ;
+	$hierarchical = empty( $options[11] ) ? false : true ;
+	$depth  = !is_numeric( $options[12] ) ? 0 : $options[12] ;
+	
+	$param = array(
+		'show_option_all' => $show_option_all, 
+		'orderby' => $orderby, 
+		'order' => $order, 
+		'show_last_update' => $show_last_updated, 
+		'style' => 'list',
+		'show_count' => $show_count, 
+		'hide_empty' => $hide_empty, 
+		'use_desc_for_title' => $use_desc_for_title, 
+		'child_of' => 0, 
+		'feed' => '', 
+		'feed_image' => '', 
+		'exclude' => $exclude, 
+		'include' => $includes, 
+		'hierarchical' => $hierarchical, 
+		'title_li' => '',
+		'number' => '',
+		'echo' => 0,
+		'depth' => $depth
+	);
+	$block['categories'] = wp_list_categories($param);
+	return $block ;	
+}
+
+?>
Index: trunk/wp-content/themes/xpress_default/blocks/meta_block_theme.php
===================================================================
--- trunk/wp-content/themes/xpress_default/blocks/meta_block_theme.php	(revision 122)
+++ trunk/wp-content/themes/xpress_default/blocks/meta_block_theme.php	(revision 122)
@@ -0,0 +1,89 @@
+<?php
+function meta_block($options)
+{
+	$mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ;
+	$this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_block_meta.html' : trim( $options[1] );
+	$wp_link = empty( $options[2] ) ? false : true ;
+	$xoops_link = empty( $options[3] ) ? false : true ;
+	$post_rss = empty( $options[4] ) ? false : true ;
+	$comment_rss = empty( $options[5] ) ? false : true ;
+	$post_new = empty( $options[6] ) ? false : true ;
+	$admin_edit = empty( $options[7] ) ? false : true ;
+	$readme = empty( $options[8] ) ? false : true ;
+	$ch_style = empty( $options[9] ) ? false : true ;
+	
+	$output ="<ul>\n";
+	
+	if ($wp_link){
+		$output .= '<li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform." target="_blank">WordPress</a></li>';
+	}
+	if ($xoops_link){
+		$output .= '<li><a href="http://jp.xoops.org/" title="Powered by XOOPS Cube, state-of-the-art Content Management Portal." target="_blank">XOOPS cube</a></li>';
+	}
+	if ($post_rss){	
+		$output .= '<li><a href="'.get_bloginfo('rss2_url').'" title="'. __('Posts RSS', 'xpress') .'">'. __('Posts RSS', 'xpress') .'</a></li>';
+	}
+	if ($comment_rss){	
+		$output .= '<li><a href="'.get_bloginfo('comments_rss2_url').'" title="'. __('Comments RSS', 'xpress') .'">'. __('Comments RSS', 'xpress') .'</a></li>';
+	}
+
+	if (is_user_logged_in()) { 
+		global $current_user;
+
+		$Now_user_level = $current_user->user_level;
+		
+		if ($post_new){
+			if($Now_user_level > 0){
+					$output .=
+					'<li>'.
+					'<a href="'.get_settings('siteurl').'/wp-admin/post-new.php" title="'. __('Add New', 'xpress') .'">'. __('Add New', 'xpress') .'</a>'.
+					'</li>';
+			}
+		}
+		if ($admin_edit){
+			if($Now_user_level > 7){
+				$output .=	
+				'<li>'.
+				'<a href="'.get_settings('siteurl').'/wp-admin/" title="'. __('Site Admin', 'xpress') .'">'. __('Site Admin', 'xpress') .'</a>'.
+				'</li>';
+			}
+		}
+		$output .=
+				'<li>'.
+				'<a href="'.get_settings('siteurl').'/wp-admin/profile.php" title="' . __('User Profile', 'xpress') .'">'. __('User Profile', 'xpress') .'</a>'.
+				'</li>';				
+		
+
+		if (defined('S2VERSION')){
+			if($Now_user_level > 7){
+					$output .=
+					'<li>'.
+					'<a href="'.get_settings('siteurl').'/wp-admin/users.php?page=subscribe2/subscribe2.php" title="'. __('Subscription management', 'xpress') .'">'. __('Subscription management', 'xpress') .'</a>'.
+					'</li>';
+			} else {
+					$output .=
+					'<li>'.
+					'<a href="'.get_settings('siteurl').'/wp-admin/profile.php?page=subscribe2/subscribe2.php" title="'. __('Subscription management', 'xpress') .'">'. __('Subscription management', 'xpress') .'</a>'.
+					'</li>';
+			}
+		}
+			
+	}
+	
+	if ($readme){
+		$output .='<li>'.'<a href="'.get_settings('siteurl').'/readme.html" title="' .  __('ReadMe', 'xpress') . '">' . __('ReadMe', 'xpress') . '</a>'.'</li>';
+	}
+	
+	if (function_exists('wp_theme_switcher') ) {
+		ob_start();
+			echo '<li>' . __('Themes') . ':';
+			wp_theme_switcher('dropdown');
+			echo '</li>';
+			$output .= ob_get_contents();
+		ob_end_clean();
+	}
+	$output .= '</ul>';
+	$block['meta_info'] = $output;
+	return $block ;	
+}
+?>
Index: trunk/wp-content/themes/xpress_default/blocks/tag_cloud_block_theme.php
===================================================================
--- trunk/wp-content/themes/xpress_default/blocks/tag_cloud_block_theme.php	(revision 122)
+++ trunk/wp-content/themes/xpress_default/blocks/tag_cloud_block_theme.php	(revision 122)
@@ -0,0 +1,35 @@
+<?php
+function tag_cloud_block($options)
+{
+	$mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ;
+	$this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_block_meta.html' : trim( $options[1]);
+	$smallest = !is_numeric( $options[2] ) ? 8 : $options[2] ;
+	$largest = !is_numeric( $options[3] ) ? 22 : $options[3] ;
+	$unit = empty( $options[4] ) ? 'pt' : $options[4] ;
+	$number = !is_numeric( $options[5] ) ? 45 : $options[5] ;
+	$format = empty( $options[6] ) ? 'flat' : $options[6] ;
+	$orderby = empty( $options[7] ) ? 'name' : $options[7] ;
+	$order = empty( $options[8] ) ? 'ASC' : $options[8] ;
+	$exclude = is_null( $options[9] ) ? '' : $options[9] ;
+	$wp_include = is_null( $options[10] ) ? '' : $options[10] ;
+	
+	$param=array(
+		'smallest' => $smallest,
+		'largest' => $largest,
+		'unit' => $unit,
+		'number' => $number,
+		'format' => $format,
+		'orderby' => $orderby,
+		'order' => $order,
+		'exclude' => $exclude,
+		'include' => $wp_include
+	);
+	ob_start();
+		wp_tag_cloud($param);
+		$output = ob_get_contents();
+	ob_end_clean();	
+
+	$block['tag_cloud'] = $output;								
+	return $block ;	
+}
+?>
Index: trunk/wp-content/themes/xpress_default/ja.po
===================================================================
--- trunk/wp-content/themes/xpress_default/ja.po	(revision 121)
+++ trunk/wp-content/themes/xpress_default/ja.po	(revision 122)
@@ -18,5 +18,5 @@
 "Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
 "POT-Creation-Date: 2008-08-15 21:16+0900\n"
-"PO-Revision-Date: 2009-03-17 10:21+0900\n"
+"PO-Revision-Date: 2009-03-19 16:41+0900\n"
 "Last-Translator: toemon <toychee@toemon.com>\n"
 "Language-Team: toemon <info@toemon.com>\n"
@@ -562,4 +562,5 @@
 
 #: xpress_default/searchform.php:4
+#: xpress_default/blocks/search_block_theme.php:13
 msgid "Search"
 msgstr "検索"
@@ -676,24 +677,54 @@
 msgstr ""
 
+#: xpress_default/blocks/meta_block_theme.php:24
+msgid "Posts RSS"
+msgstr "投稿の RSS"
+
+#: xpress_default/blocks/meta_block_theme.php:27
+msgid "Comments RSS"
+msgstr "コメント のRSS"
+
+#: xpress_default/blocks/meta_block_theme.php:39
+msgid "Add New"
+msgstr "新規投稿"
+
+#: xpress_default/blocks/meta_block_theme.php:47
+msgid "Site Admin"
+msgstr "WordPress管理"
+
+#: xpress_default/blocks/meta_block_theme.php:53
+msgid "User Profile"
+msgstr "ユーザープロファイル"
+
+#: xpress_default/blocks/meta_block_theme.php:61
+#: xpress_default/blocks/meta_block_theme.php:66
+msgid "Subscription management"
+msgstr "メール購読の設定"
+
+#: xpress_default/blocks/meta_block_theme.php:74
+msgid "ReadMe"
+msgstr "ReadMe表示"
+
+#: xpress_default/blocks/meta_block_theme.php:79
+msgid "Themes"
+msgstr "テーマ選択"
+
 #: xpress_default/blocks/popular_posts_block_theme.php:135
 #: xpress_default/blocks/recent_posts_content_block_theme.php:93
 #: xpress_default/blocks/recent_posts_list_block_theme.php:82
-#, fuzzy
 msgid "Comments (0)"
-msgstr "コメント (RSS)"
+msgstr "コメントはありません"
 
 #: xpress_default/blocks/popular_posts_block_theme.php:135
 #: xpress_default/blocks/recent_posts_content_block_theme.php:93
 #: xpress_default/blocks/recent_posts_list_block_theme.php:82
-#, fuzzy
 msgid "Comments (1)"
-msgstr "コメント (RSS)"
+msgstr "1件のコメント"
 
 #: xpress_default/blocks/popular_posts_block_theme.php:135
 #: xpress_default/blocks/recent_posts_content_block_theme.php:93
 #: xpress_default/blocks/recent_posts_list_block_theme.php:82
-#, fuzzy
 msgid "Comments (%)"
-msgstr "コメント (RSS)"
+msgstr "Comments (%)"
 
 #: xpress_default/blocks/recent_comments_block_theme.php:71
