Index: trunk/wp-content/themes/xpress_default/blocks/archives_block_theme.php
===================================================================
--- trunk/wp-content/themes/xpress_default/blocks/archives_block_theme.php	(revision 110)
+++ trunk/wp-content/themes/xpress_default/blocks/archives_block_theme.php	(revision 110)
@@ -0,0 +1,53 @@
+<?php
+function archives_block($options)
+{
+	$mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ;
+	$type = empty( $options[1] ) ? false : true ;
+	$limit = empty( $options[2] ) ? '10' : $options[2] ;
+	$show_post_count = empty( $options[3] ) ? false : true ;		
+	$drop_down = empty( $options[4] ) ? false : true ;	
+	$this_template = empty( $options[5] ) ? 'db:'.$mydirname.'_archives_block.html' : trim( $options[3] );
+	
+	if ($type) {
+		$type_name = 'monthly';
+	} else {
+		$type_name = 'weekly';
+	}			
+
+	$drop_down_list = '<form id="archiveform" action="">';
+	$drop_down_list .= '<select name="archive_chrono" onchange="window.location = (document.forms.archiveform.archive_chrono[document.forms.archiveform.archive_chrono.selectedIndex].value);">';
+	$drop_down_list .= "<option value=''>";
+	if ($type) {
+		$drop_down_list .= __('Select Monthly', 'xpress');
+	} else {
+		$drop_down_list .= __('Select Weekly', 'xpress');
+	}
+	$drop_down_list .=  '</option>';
+	ob_start();
+		get_archives($type_name,$limit,'option','','',$show_post_count);
+		$drop_down_list .= ob_get_contents();
+	ob_end_clean();
+	$drop_down_list .= '</select>';
+	$drop_down_list .= '</form>';				
+
+	ob_start();
+		get_archives($type_name,$limit,'custom','','|',$show_post_count);
+		$output = ob_get_contents();
+	ob_end_clean();
+	$output = preg_replace('/\|$/', '' ,$output); // "|" at the end of line is deleted. 
+	$archives = explode('|',$output);
+	$item_no = 0;
+	foreach ($archives as $archive){
+		$row_data = array(
+			'archive'		=> $archive
+		);
+		$block['contents']['item'.$item_no] = $row_data;
+		$item_no++;
+	}
+	$block['data_count'] = $item_no;
+	$block['config']['is_archive_doropdown'] = $drop_down;
+	$block['archive_dropdown'] = $drop_down_list;
+	return $block ;	
+}
+
+?>
Index: trunk/wp-content/themes/xpress_default/blocks/authors_block_theme.php
===================================================================
--- trunk/wp-content/themes/xpress_default/blocks/authors_block_theme.php	(revision 110)
+++ trunk/wp-content/themes/xpress_default/blocks/authors_block_theme.php	(revision 110)
@@ -0,0 +1,34 @@
+<?php
+function authors_block($options)
+{
+	$mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ;
+	$optioncount = empty( $options[1] ) ? false : true ;
+	$exclude_admin = empty( $options[2] ) ? false : true ;
+	$show_fullname = empty( $options[3] ) ? false : true ;
+	$hide_empty = empty( $options[4] ) ? false : true ;		
+	$this_template = empty( $options[5] ) ? 'db:'.$mydirname.'_block_authors.html' : trim( $options[5] );
+	$mydirpath = get_xpress_dir_path();
+	
+	ob_start();
+//		wp_list_authors($optioncount, $exclude_admin, $show_fullname,$hide_empty);
+		list_authors($optioncount, $exclude_admin, $show_fullname,$hide_empty);
+		$output=ob_get_contents() ;
+	ob_end_clean();
+	$output = preg_replace('/<li>/', '' ,$output); // "<li>" is deleted. 
+	$output = preg_replace('/<\/li>/', '|' ,$output); // "</li>" replace "|". 
+	$output = preg_replace('/\|$/', '' ,$output); // "|" at the end of line is deleted. 
+
+	$authors = explode('|',$output);
+	$item_no = 0;
+	foreach ($authors as $author){
+		$row_data = array(
+			'author'		=> $author
+		);
+		$block['contents']['item'.$item_no] = $row_data;
+		$item_no++;
+	}
+	$block['data_count'] = $item_no;
+	
+	return $block ;
+}
+?>
Index: trunk/wp-content/themes/xpress_default/blocks/recent_comments_block_theme.php
===================================================================
--- trunk/wp-content/themes/xpress_default/blocks/recent_comments_block_theme.php	(revision 109)
+++ trunk/wp-content/themes/xpress_default/blocks/recent_comments_block_theme.php	(revision 110)
@@ -77,5 +77,5 @@
 					'comment_date_time' => date(get_settings('date_format') . ' ' . get_settings('time_format'),$comment->comment_unix_time) ,
 					'comment_content' 	=> $comment_content ,
-					'comment_excerpt' 	=> $comment_excerpt ,	
+					'comment_excerpt' 	=> $comment_excerpt ,
 					'comment_link' 		=> $comment_link,
 					'comment_title' 	=> $comment_title ,
@@ -86,6 +86,6 @@
 					'author_link' 		=> $author_link,
 					'author_name' 		=> $author_name,
-					'author_name_link' 	=> $author_name_link,		
-					'comment_type' 		=> $comment_type,																																		
+					'author_name_link' 	=> $author_name_link,
+					'comment_type' 		=> $comment_type,
 					'from_auther_to_post' => $from_auther_to_post
 				);
