Index: /include/oninstall.php
===================================================================
--- /include/oninstall.php	(revision 1)
+++ /include/oninstall.php	(revision 1)
@@ -0,0 +1,147 @@
+<?php
+$mydirpath = dirname(dirname(__FILE__));
+$mydirname = basename($mydirpath);
+$lang = @$GLOBALS["xoopsConfig"]['language'];
+global $wp_db_version;
+include_once $mydirpath .'/wp-includes/version.php' ;
+
+// language file (modinfo.php)
+
+if( file_exists( $mydirpath .'/language/'.$lang.'/modinfo.php' ) ) {
+	include_once $mydirpath .'/language/'.$lang.'/modinfo.php' ;
+} else if( file_exists(  $mydirpath .'/language/english/modinfo.php' ) ) {
+	include_once $mydirpath .'/language/english/modinfo.php' ;
+}
+
+
+eval( ' function xoops_module_install_'.$mydirname.'( $module ) { return xpress_oninstall_base( $module , "'.$mydirname.'" ) ; } ' ) ;
+
+
+if( ! function_exists( 'xpress_oninstall_base' ) ) :
+function xpress_oninstall_base( $module , $mydirname )
+{
+	// transations on module install
+
+	global $ret ; // TODO :-D
+
+	// for Cube 2.1
+	if( defined( 'XOOPS_CUBE_LEGACY' ) ) {
+		$root =& XCube_Root::getSingleton();
+		$root->mDelegateManager->add( 'Legacy.Admin.Event.ModuleInstall.' . ucfirst($mydirname) . '.Success' , 'xpress_message_append_oninstall' ) ;
+		$ret = array() ;
+	} else {
+		if( ! is_array( $ret ) ) $ret = array() ;
+	}
+
+	$db =& Database::getInstance() ;
+	$mid = $module->getVar('mid') ;
+
+//xpress
+	global $wpdb,$wp_rewrite, $wp_queries, $table_prefix, $wp_db_version, $wp_roles, $wp_query;
+	define("WP_INSTALLING", true);
+	$site_url= XOOPS_URL."/modules/".$mydirname;
+	$mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
+	$path = $mydirpath . '/';
+	if (file_exists($path . 'wp-load.php')) {
+		require_once $path . 'wp-load.php';
+	} else {
+		require_once $path . 'wp-config.php';
+	}
+	include_once($mydirpath . '/wp-admin/upgrade-functions.php');
+	wp_cache_flush();
+	make_db_current_silent();
+	
+	$option_desc = __('WordPress web address');
+	$wpdb->query("INSERT INTO $wpdb->options (option_id, blog_id, option_name,option_value, autoload) VALUES ('1', '0', 'siteurl','$site_url', 'yes')");	
+	$wpdb->query("INSERT INTO $wpdb->options (option_id, blog_id, option_name,option_value, autoload) VALUES ('1', '0', 'home','$site_url', 'yes')");
+
+	populate_options();
+	populate_roles();
+	
+// Rewrite Option for Xpress
+//	update_option("blog_charset", wp_blog_charset());
+	update_option('blogname', ucfirst($mydirname) . ' ' . _MI_XPRESS_NAME );	
+	update_option('blogdescription', 'WordPress for XOOPS');
+	update_option("admin_email", $GLOBALS["xoopsConfig"]['adminmail']);
+	update_option("ping_sites", "http://rpc.pingomatic.com/\nhttp://ping.xoopsforge.com/");
+	update_option("home", $site_url);
+	update_option("siteurl", $site_url);
+//	update_option("template", "xpress_st");
+//	update_option("stylesheet", "xpress_st");
+	update_option("what_to_show", "posts");
+
+	/* add new option for uploads */
+//	update_option('uploads_use_yearmonth_folders', 1);
+//	update_option('upload_path', $module->getVar("dirname"));
+	
+	/* activate the tag plugin */
+//	$plugin_current = "terong_related.php";
+//	update_option('active_plugins', array($plugin_current));
+//	include(dirname(__FILE__) . '/../wp-content/plugins/'.$plugin_current);
+//	do_action('activate_'.$plugin_current);
+		
+// Admin User Data write
+	// Change uid field
+	$wpdb->query("ALTER TABLE $wpdb->posts CHANGE `post_author` `post_author` mediumint(8) NOT NULL DEFAULT '0'");
+	$ID = is_object($GLOBALS["xoopsUser"])?$GLOBALS["xoopsUser"]->getVar("uid"):1;
+   	require_once($mydirpath . '/include/user_sync.php');
+	xpress_user_sync($ID);
+
+	// Set Default data
+		wp_install_defaults($ID);
+//	    generate_page_uri_index();
+
+	        
+	// create views table
+	$xp_prefix = $mydirname;
+	if ($xp_prefix == 'wordpress'){
+ 		$xp_prefix = 'wp';
+	}
+	$views_table = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_views' ;
+
+	$charset_collate = '';
+	if ( version_compare(mysql_get_server_info(), '4.1.0', '>=') ) {
+		if ( ! empty($wpdb->charset) )
+			$charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
+		if ( ! empty($wpdb->collate) )
+			$charset_collate .= " COLLATE $wpdb->collate";
+	}
+	$views_queries ="CREATE TABLE $views_table (
+  		post_id bigint(20) unsigned NOT NULL default '0',
+  		post_views bigint(20) unsigned NOT NULL default '0',
+  		KEY post_id (post_id)
+		)$charset_collate;";
+
+	dbDelta($views_queries);
+	
+	$d3forum_link = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_d3forum_link' ;
+	$views_queries ="CREATE TABLE $d3forum_link (
+  		comment_ID bigint(20) unsigned NOT NULL default '0',
+  		post_id int(10) unsigned NOT NULL default '0' ,
+  		wp_post_ID bigint(20) unsigned NOT NULL default '0',
+  		KEY post_id (post_id)
+		)$charset_collate;";
+	dbDelta($views_queries);
+		
+	// make templates
+//	include_once XOOPS_ROOT_PATH . '/modules/' . $mydirname . '/include/xpress_templates.php' ;
+//	$ret = xpress_install_templates($mid,$mydirname);
+
+	return true ;
+}
+endif;
+
+if( ! function_exists( 'xpress_message_append_oninstall' ) ) :
+function xpress_message_append_oninstall( &$module_obj , &$log )
+{
+	if( is_array( @$GLOBALS['ret'] ) ) {
+		foreach( $GLOBALS['ret'] as $message ) {
+			$log->add( strip_tags( $message ) ) ;
+		}
+	}
+
+	// use mLog->addWarning() or mLog->addError() if necessary
+}
+endif;
+
+?>
Index: /include/onuninstall.php
===================================================================
--- /include/onuninstall.php	(revision 1)
+++ /include/onuninstall.php	(revision 1)
@@ -0,0 +1,78 @@
+<?php
+$mydirname = basename( dirname( dirname( __FILE__ ) ) ) ;
+
+eval( ' function xoops_module_uninstall_'.$mydirname.'( $module ) { return xpress_onuninstall_base( $module , "'.$mydirname.'" ) ; } ' ) ;
+
+
+if( ! function_exists( 'xpress_onuninstall_base' ) ) {
+
+function xpress_onuninstall_base( $module , $mydirname )
+{
+	// transations on module uninstall
+
+	global $ret ; // TODO :-D
+
+	// for Cube 2.1
+	if( defined( 'XOOPS_CUBE_LEGACY' ) ) {
+		$root =& XCube_Root::getSingleton();
+		$root->mDelegateManager->add( 'Legacy.Admin.Event.ModuleUninstall.' . ucfirst($mydirname) . '.Success' , 'xpress_message_append_onuninstall' ) ;
+		$ret = array() ;
+	} else {
+		if( ! is_array( $ret ) ) $ret = array() ;
+	}
+
+	$db =& Database::getInstance() ;
+	$mid = $module->getVar('mid') ;
+/*
+	// TABLES (loading mysql.sql)
+	$sql_file_path = dirname(__FILE__).'/sql/mysql.sql' ;
+	$prefix_mod = $db->prefix() . '_' . $mydirname ;
+	if( file_exists( $sql_file_path ) ) {
+		$ret[] = "SQL file found at <b>".htmlspecialchars($sql_file_path)."</b>.<br  /> Deleting tables...<br />";
+		$sql_lines = file( $sql_file_path ) ;
+		foreach( $sql_lines as $sql_line ) {
+			if( preg_match( '/^CREATE TABLE \`?([a-zA-Z0-9_-]+)\`? /i' , $sql_line , $regs ) ) {
+				$sql = 'DROP TABLE '.$prefix_mod.'_'.$regs[1] ;
+				if (!$db->query($sql)) {
+					$ret[] = '<span style="color:#ff0000;">ERROR: Could not drop table <b>'.htmlspecialchars($prefix_mod.'_'.$regs[1]).'<b>.</span><br />';
+				} else {
+					$ret[] = 'Table <b>'.htmlspecialchars($prefix_mod.'_'.$regs[1]).'</b> dropped.<br />';
+				}
+			}
+		}
+	}
+*/
+	// TEMPLATES (Not necessary because modulesadmin removes all templates)
+	/* $tplfile_handler =& xoops_gethandler( 'tplfile' ) ;
+	$templates =& $tplfile_handler->find( null , 'module' , $mid ) ;
+	$tcount = count( $templates ) ;
+	if( $tcount > 0 ) {
+		$ret[] = 'Deleting templates...' ;
+		for( $i = 0 ; $i < $tcount ; $i ++ ) {
+			if( ! $tplfile_handler->delete( $templates[$i] ) ) {
+				$ret[] = '<span style="color:#ff0000;">ERROR: Could not delete template '.$templates[$i]->getVar('tpl_file','s').' from the database. Template ID: <b>'.$templates[$i]->getVar('tpl_id','s').'</b></span><br />';
+			} else {
+				$ret[] = 'Template <b>'.$templates[$i]->getVar('tpl_file','s').'</b> deleted from the database. Template ID: <b>'.$templates[$i]->getVar('tpl_id','s').'</b><br />';
+			}
+		}
+	}
+	unset($templates); */
+
+
+	return true ;
+}
+
+function xpress_message_append_onuninstall( &$module_obj , &$log )
+{
+	if( is_array( @$GLOBALS['ret'] ) ) {
+		foreach( $GLOBALS['ret'] as $message ) {
+			$log->add( strip_tags( $message ) ) ;
+		}
+	}
+
+	// use mLog->addWarning() or mLog->addError() if necessary
+}
+
+}
+
+?>
Index: /include/onupdate.php
===================================================================
--- /include/onupdate.php	(revision 1)
+++ /include/onupdate.php	(revision 1)
@@ -0,0 +1,211 @@
+<?php
+$mydirname = basename( dirname( dirname( __FILE__ ) ) ) ;
+
+eval( ' function xoops_module_update_'.$mydirname.'( $module ) { return xpress_onupdate_base( $module , "'.$mydirname.'" ) ; } ' ) ;
+
+
+if( ! function_exists( 'xpress_onupdate_base' ) ) :
+function xpress_onupdate_base( $module , $mydirname )
+{
+	// transations on module update
+
+	global $msgs ; // TODO :-D
+
+	// for Cube 2.1
+	if( defined( 'XOOPS_CUBE_LEGACY' ) ) {
+		$root =& XCube_Root::getSingleton();
+		$root->mDelegateManager->add( 'Legacy.Admin.Event.ModuleUpdate.' . ucfirst($mydirname) . '.Success', 'xpress_message_append_onupdate' ) ;
+		$msgs = array() ;
+	} else {
+		if( ! is_array( $msgs ) ) $msgs = array() ;
+	}
+
+	$db =& Database::getInstance() ;
+	$mid = $module->getVar('mid') ;
+
+//XPress TABLE UPGRADE
+	global $wpdb,$wp_rewrite, $wp_queries, $table_prefix, $wp_db_version, $wp_roles,$wp_query;
+	define('WP_INSTALLING', true);
+	$mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
+	$path = $mydirpath . '/';
+	if (file_exists($path . 'wp-load.php')) {
+		require_once $path . 'wp-load.php';
+	} else {
+		require_once $path . 'wp-config.php';
+	}
+	require_once($mydirpath . '/wp-admin/upgrade-functions.php');
+
+	if ( get_db_version($mydirname) != $wp_db_version ){
+		if( function_exists( 'wp_upgrade' ) )	{	
+			wp_upgrade();
+		} else {
+			wp_cache_flush();
+			make_db_current_silent();
+			upgrade_all();
+			wp_cache_flush();
+		}				
+	}
+//	update_option("blog_charset", wp_blog_charset());
+	$xpress_version = $module->modinfo['version'];
+	
+	if (! enhanced_table_check($mydirname,'views')){
+		$xp_prefix = $mydirname;
+		if ($xp_prefix == 'wordpress'){
+	 		$xp_prefix = 'wp';
+		}
+		
+		$charset_collate = '';
+		if ( version_compare(mysql_get_server_info(), '4.1.0', '>=') ) {
+			if ( ! empty($wpdb->charset) )
+			$charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
+			if ( ! empty($wpdb->collate) )
+			$charset_collate .= " COLLATE $wpdb->collate";
+		}
+		$views_table = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_views' ;
+		$views_queries ="CREATE TABLE $views_table (
+  		post_id bigint(20) unsigned NOT NULL default '0',
+  		post_views bigint(20) unsigned NOT NULL default '0',
+  		KEY post_id (post_id)
+		)$charset_collate;";
+
+		dbDelta($views_queries);
+	}
+	
+	if (! enhanced_table_check($mydirname,'d3forum_link')){
+		$xp_prefix = $mydirname;
+		if ($xp_prefix == 'wordpress'){
+	 		$xp_prefix = 'wp';
+		}
+		
+		$charset_collate = '';
+		if ( version_compare(mysql_get_server_info(), '4.1.0', '>=') ) {
+			if ( ! empty($wpdb->charset) )
+			$charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
+			if ( ! empty($wpdb->collate) )
+			$charset_collate .= " COLLATE $wpdb->collate";
+		}
+	
+		$d3forum_link = XOOPS_DB_PREFIX . '_' . $xp_prefix .'_d3forum_link' ;
+		$queries ="CREATE TABLE $d3forum_link (
+	  		comment_ID bigint(20) unsigned NOT NULL default '0',
+	  		post_id int(10) unsigned NOT NULL default '0' ,
+	  		wp_post_ID bigint(20) unsigned NOT NULL default '0',
+	  		KEY post_id (post_id)
+			)$charset_collate;";
+		dbDelta($queries);
+	}
+	
+	clean_template($mydirname,$xpress_version);
+
+	// update templates
+//	include_once XOOPS_ROOT_PATH . '/modules/' . $mydirname . '/include/xpress_templates.php' ;
+//	$msgs = xpress_update_templates($mid,$mydirname);
+	
+	return true ;
+}
+endif;
+
+if( ! function_exists( 'xpress_message_append_onupdate' ) ) :
+function xpress_message_append_onupdate( &$module_obj , &$log )
+{
+	if( is_array( @$GLOBALS['msgs'] ) ) {
+		foreach( $GLOBALS['msgs'] as $message ) {
+			$log->add( strip_tags( $message ) ) ;
+		}
+	}
+
+	// use mLog->addWarning() or mLog->addError() if necessary
+}
+endif;
+
+if( ! function_exists( 'get_db_version' ) ) :
+function get_db_version($mydirname){
+		global $xoopsModule;
+		$wp_prefix = $mydirname;
+		if ($wp_prefix == 'wordpress'){
+			$wp_prefix = 'wp';
+		}
+		$xoopsDB =& Database::getInstance();
+		$db_xpress_option = $xoopsDB->prefix($wp_prefix . '_options');
+
+		$sql = "SELECT option_value FROM $db_xpress_option WHERE option_name = 'db_version'";
+		$res = $xoopsDB->query($sql, 0, 0);
+		if ($res === false){
+			return false;
+		} else {
+			$row = $xoopsDB->fetchArray($res);
+			return $row['option_value'];
+		}
+}
+endif;
+
+if( ! function_exists( 'clean_template' ) ) :
+function clean_template($mydirname,$xpress_ver){
+		global $xoopsModule;
+		
+		$var = floatval($xpress_ver);
+		switch ($var){
+			case ($var >= 0.62):
+				$temp_file = "'". $mydirname . "_home.html','" . $mydirname. "_index.html','" . $mydirname . "_search.html','" . $mydirname . "_single.html'";
+				break;
+			case ($var >= 0.60):
+				$temp_file = "'xpress_header.html','xpress_home.html','xpress_index.html','xpress_search.html','xpress_sidebar.html'";
+				break;
+			default:
+				$temp_file = 'all';
+		}
+		
+		if ($temp_file != 'all'){			
+			$xoopsDB =& Database::getInstance();
+			$db_tplfile = $xoopsDB->prefix('tplfile');
+			$db_tplsource = $xoopsDB->prefix('tplsource');
+
+			$sql = "SELECT * FROM $db_tplfile WHERE tpl_module = '$mydirname' AND NOT tpl_file IN($temp_file)";
+			$res = $xoopsDB->query($sql, 0, 0);
+			if ($res === false){
+				return false;
+			} else {
+				$del_array = '';
+				$i=0;
+				while($row = $xoopsDB->fetchArray($res)){
+					if (!empty($del_array))
+					$del_array .= ',';
+					$del_array .= $row['tpl_id'];
+				}
+				if(!empty($del_array)){
+					$del_tplfile  = "DELETE FROM $db_tplfile WHERE tpl_id IN ($del_array)";
+					$result = $xoopsDB->query($del_tplfile, 0, 0);
+					$del_tplsource  = "DELETE FROM $del_tplsource WHERE tpl_id IN ($del_array)";
+					$result = $xoopsDB->query($del_tplfile, 0, 0);
+				}
+			}
+		}
+}
+endif;
+
+if( ! function_exists( 'enhanced_table_check' ) ) :
+function enhanced_table_check($mydirname,$table_name){
+		global $xoopsModule;
+		
+		$xoopsDB =& Database::getInstance();
+		if ($mydirname == 'wordpress'){
+			$xpress_prefix=  $xoopsDB->prefix('wp_');
+		} else {
+			$xpress_prefix=  $xoopsDB->prefix($mydirname . '_');
+		}
+		$db_enhanced = $xpress_prefix . $table_name;
+
+		$sql = "show tables like '$db_enhanced'";
+		$res = $xoopsDB->query($sql, 0, 0);
+		if ($res === false){
+			return false;
+		} else {
+			if ($xoopsDB->getRowsNum($res)  > 0)
+				return true;
+			else
+				return false;
+		}
+}
+endif;
+
+?>
Index: /include/user_sync.php
===================================================================
--- /include/user_sync.php	(revision 1)
+++ /include/user_sync.php	(revision 1)
@@ -0,0 +1,532 @@
+<?php
+/**
+ * XPressME - WordPress for XOOPS
+ *
+ *
+ * @copyright	XPressME Project http://www.toemon.com
+ * @license		http://www.fsf.org/copyleft/gpl.html GNU public license
+ * @author		toemon
+ * @since		2.04
+ * @version		$Id$
+ * @package		module::xpress
+ */
+
+
+//
+// wordpress user data vs xoops user data
+// wordpress database info from http://adiary.blog.abk.nu/080
+//
+//	wordpress									xpress
+//------------------------------------------------------------------------------------------
+//	users.ID [bigint(20)]						users.uid [mediumint(8)]
+//	users.user_login [varchar(60)]				users.uname [varchar(60)]
+//	users.user_pass [varchar(64)]				users.pass [varchar(32)]
+//	users.user_email [varchar(100)]				users.email [varchar(60)]
+//	users.user_url[varchar(100)]				users.url [varchar(100)]
+//	users.dateYMDhour [datetime]				
+//	users.user_nicename [varchar(50)]			users.uname [varchar(60)]
+//	users.user_registerd [datetime]				date('Y-m-d H:i:s' , users.regdate[int(10)])
+//	users.user_activation_key [varchar(60)]		null
+//	users.user_status	[int(11)]				0
+//	users.display_name [varchar(250)]			empty(users.name) ? users.uname :users.name
+//
+//	usermeta[meta_key]							get_xpress_user_level(uid);
+//		user_level	10:admim
+//					7: editor
+//					2: auther
+//					1: contributor
+//					0: subscriber							
+//		nickname								users.name [varchar(25)]
+//		capabillities
+//			at user_level	10:admim			'a:1:{s:13:"administrator";b:1;}'		
+//							7: editor			'a:1:{s:6:"editor";b:1;}'
+//							2: auther			'a:1:{s:6:"author";b:1;}'
+//							1: contributor		'a:1:{s:11:"contributor";b:1;}'
+//							0: subscriber		'a:1:{s:10:"subscriber";b:1;}'
+//					
+//		first_name
+//		last_name								
+//		description
+//		jabber
+//		aim										users.user_aim
+//		yim										users.user_yim
+//		
+//
+
+	include_once dirname( __FILE__ ).'/../../../mainfile.php';
+	$path = dirname(dirname(__FILE__)) . '/';
+	if (file_exists($path . 'wp-load.php')) {
+		require_once $path . 'wp-load.php';
+	} else {
+		require_once $path . 'wp-config.php';
+	}
+
+//if( ! function_exists( 'get_xpress_mid' ) ) :
+	function get_xpress_mid($mydirname){
+		$xoopsDB =& Database::getInstance();
+		$module_tbl = $xoopsDB->prefix('modules');		
+		$module_dir = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
+		$module_id = 0;
+
+		$sql = "SELECT mid FROM $module_tbl WHERE dirname LIKE '$mydirname'";
+		$result =  $xoopsDB->query($sql, 0, 0);
+		if ($xoopsDB->getRowsNum($result)  > 0){
+			$row = $xoopsDB->fetchArray($result);
+			$module_id = $row['mid'];
+		}
+		return $module_id;
+	}
+//endif;		
+
+
+//if( ! function_exists( 'get_xpress_user_level' ) ) :
+	function get_xpress_user_level($mydirname , $uid=0){
+		if ($uid == 0){
+			return 0;
+		}
+
+		global $xoopsModule;
+		$xoopsDB =& Database::getInstance();
+		$db_groups_users_link = $xoopsDB->prefix('groups_users_link');
+		$db_group_permission = $xoopsDB->prefix('group_permission');
+		$module_tbl = $xoopsDB->prefix('modules');
+		
+		$module_id = get_xpress_mid($mydirname);
+		$sql = "SELECT uid FROM $db_groups_users_link WHERE groupid = 1 AND uid = $uid";
+	
+		$result =  $xoopsDB->query($sql, 0, 0);
+		if ($xoopsDB->getRowsNum($result)  > 0){
+				return 5;
+		}
+		
+		$sql  = "SELECT Max($db_group_permission.gperm_itemid) AS user_level ,$db_groups_users_link.uid ";
+		$sql .= "FROM $db_groups_users_link LEFT JOIN $db_group_permission ON $db_groups_users_link.groupid = $db_group_permission.gperm_groupid ";
+		$sql .= "WHERE $db_group_permission.gperm_modid = $module_id ";
+		$sql .= "GROUP BY $db_groups_users_link.uid ";
+		$sql .= "HAVING $db_groups_users_link.uid = $uid";
+		$result =  $xoopsDB->query($sql, 0, 0);
+		if ($result === false){
+			return 0;
+		}else{
+			if ($xoopsDB->getRowsNum($result)  > 0){
+				$row = $xoopsDB->fetchArray($result);	
+				$level =  $row['user_level'];
+				return $level;
+			} else { 
+				return 0;
+			}
+		}
+	}
+//endif;
+
+//if( ! function_exists( 'get_now_user_level' ) ) :
+	function get_now_user_level(){
+
+		global $xoopsModule;
+
+		if(empty($GLOBALS['user_level'])){
+			return 0;		
+		} else {
+			//$user_id =  $GLOBALS["xoopsUser"]->getVar("uid");
+			//$level = xpress2wp_user_level(get_xpress_user_level($mydirname , $user_id));
+			//$level = get_wp_user_level($mydirname,$user_id);
+			$level = $GLOBALS['user_level'];
+			return $level;
+		}		
+	}
+//endif;
+
+//if( ! function_exists( 'get_wp_user_leve' ) ) :
+	function get_wp_user_level($mydirname,$uid=0){
+		$wp_prefix = get_xpress_prefix($mydirname);
+		$xoopsDB =& Database::getInstance();		
+		$db_xpress_usermeta = $xoopsDB->prefix($wp_prefix . 'usermeta');
+		$meta_key_str = $xoopsDB->prefix($wp_prefix . 'user_level');
+		$sql = "SELECT meta_value FROM $db_xpress_usermeta WHERE (user_id = $uid) AND (meta_key = $meta_key)";
+		$res =  $xoopsDB->query($sql, 0, 0);
+		if ($res === false){
+			return 0;
+		}else{
+			if ($xoopsDB->getRowsNum($res)  > 0){
+				$row = $xoopsDB->fetchArray($res);	
+				$level =  $row['meta_value'];
+				return $level;
+			} else { 
+				return 0;
+			}
+		}
+		
+	}
+//endif;		
+
+//if( ! function_exists( 'get_xpress_prefix' ) ) :
+	function get_xpress_prefix($mydirname){
+		global $xoopsModule;
+		if ($mydirname == 'wordpress'){
+			return 'wp_';
+		} else {
+			return $mydirname . '_';
+		}
+	}
+//endif;
+
+//if( ! function_exists( 'xpress_user_found' ) ) :
+	function xpress_user_found($mydirname, $uid){
+		$wp_prefix = get_xpress_prefix($mydirname);
+		$xoopsDB =& Database::getInstance();
+		$db_xpress_users = $xoopsDB->prefix($wp_prefix . 'users');
+
+		$sql = "SELECT ID FROM $db_xpress_users WHERE ID = $uid";
+		$res = $xoopsDB->query($sql, 0, 0);
+		if ($res === false){
+			return false;
+		} else {
+			if ($xoopsDB->getRowsNum($res)  > 0){
+				return true;
+			} else {
+				return false;
+			}
+		}
+	}
+//endif;
+
+//if( ! function_exists( 'xpress2wp_user_level' ) ) :
+	function xpress2wp_user_level($level){
+		switch($level) {
+			case 5:
+				return 10;
+			case 4:
+				return 7;
+			case 3:
+				return 2;
+			case 2:
+				return 1;
+			case 1:
+				return 0;
+			default:
+				return 0;
+		}
+	}
+//endif;
+
+//if( ! function_exists( 'get_capabillities_name' ) ) :
+	function get_capabillities_name($level){
+		switch($level) {
+			case 10:
+				return 'administrator';
+			case 7:
+				return 'editor';
+			case 2:
+				return 'author';
+			case 1:
+				return 'contributor';
+			case 0:
+				return 'subscriber';
+			default:
+				return 'subscriber';
+		}
+	}
+//endif;
+
+//if( ! function_exists( 'xpress_usermeta_sync' ) ) :
+	function xpress_usermeta_sync($mydirname , $uid,$meta_key,$meta_value){
+		$wp_prefix = get_xpress_prefix($mydirname);
+		$xoopsDB =& Database::getInstance();		
+		$db_xpress_usermeta = $xoopsDB->prefix($wp_prefix . 'usermeta');
+		$sql = "SELECT user_id FROM $db_xpress_usermeta WHERE (user_id = $uid) AND (meta_key = $meta_key)";
+		$res =  $xoopsDB->query($sql, 0, 0);
+
+		if ($res === false){
+			$sql2 = "INSERT INTO $db_xpress_usermeta (user_id,meta_key,meta_value) VALUES ($uid,$meta_key,$meta_value)";
+		}else {
+			if ($xoopsDB->getRowsNum($res)  > 0){
+				
+				$sql2 = "UPDATE $db_xpress_usermeta SET meta_value = $meta_value WHERE (user_id = $uid) AND (meta_key = $meta_key)";
+			} else {
+				$sql2 = "INSERT INTO $db_xpress_usermeta (user_id,meta_key,meta_value) VALUES ($uid,$meta_key,$meta_value)";
+			}
+		}
+		$res = $xoopsDB->queryF($sql2, 0, 0);
+		if ($res === false) {
+			$ret = "...ERR($sql2)";
+			return $ret;
+		} else {
+			return '';
+		}
+
+	}
+//endif;
+
+//if( ! function_exists( 'sql_str' ) ) :
+	function sql_str($text = ''){
+		return "'" . $text . "'";
+	}
+//endif;
+	
+//if( ! function_exists( 'xpress_user_sync' ) ) :
+	function xpress_user_sync($sync_uid = 0){
+		$mydirname = basename( dirname( dirname( __FILE__ ) ) ) ;
+
+		if( is_object( @$GLOBALS["xoopsModule"] ) ) {
+			$wp_prefix = get_xpress_prefix($mydirname);
+			$xoopsDB =& Database::getInstance();
+			$db_xoops_users = $xoopsDB->prefix('users');
+			$db_xpress_users = $xoopsDB->prefix($wp_prefix . 'users');
+
+			$ret_str = 'Do Sync';
+		
+			if ($sync_uid == 0) {
+				$xu_sql  = "SELECT uid ,name ,uname ,pass ,email, url, user_regdate, user_aim, user_yim FROM $db_xoops_users";
+			} else {
+				$xu_sql  = "SELECT uid ,name ,uname ,pass ,email, url, user_regdate, user_aim, user_yim FROM $db_xoops_users WHERE uid = $sync_uid";
+			}	
+
+			$xu_res =  $xoopsDB->query($xu_sql, 0, 0);
+			if ($xu_res === false){
+				$ret_str .= '...ERR ('. $xu_sql . ')';
+				return $ret_str;
+			}else {
+				while($xu_row = 	$xoopsDB->fetchArray($xu_res)){
+					$xpress_user_level = get_xpress_user_level($mydirname , $xu_row['uid']);
+					if ($xpress_user_level < 1){
+						$ret_str .= "...PASS '" . $xu_row['uname'] ."'[uid=".$xu_row['uid'] ."](not xpress user)";
+						if ($sync_uid != 0){
+							$ret_str .= '...NOT XPRESS USER ' . $xu_row['uname'];
+							return $ret_str;
+						}
+					} else {
+						$user_ID = 			$xu_row['uid'];
+						$user_level = xpress2wp_user_level($xpress_user_level);
+						if ($user_level == 10 ){
+							$capabillities_name = 'administrator';
+						}else {
+							if (!empty($GLOBALS["xoopsModuleConfig"]["use_wp_userlevel"])){
+								$capabillities_name = get_option('default_role');		
+							}else {
+								$capabillities_name = get_capabillities_name($user_level);
+							}
+						}
+						$user_login_name = 	sql_str($xu_row['uname']);
+						$user_pass_md5 = 	sql_str( $xu_row['pass']);
+						$user_email = 		sql_str( $xu_row['email']);
+						$user_url = 		sql_str( $xu_row['url']);
+						$user_regist_time = sql_str(date('Y-m-d H:i:s' , $xu_row['user_regdate']));
+						$user_nicename =	sql_str( $xu_row['uname']);
+						$user_status = 0;
+						$user_display_name =sql_str( empty($xu_row['name']) ? $xu_row['uname'] :$xu_row['name'] );
+						$user_nickname =	sql_str( empty($xu_row['name']) ? $xu_row['uname'] :$xu_row['name'] );
+						$user_aim =			sql_str( $xu_row['user_aim']);
+						$user_yim =			sql_str( $xu_row['user_yim']);
+						$user_first_name = 	sql_str( $xu_row['uname']);
+						$user_last_name = 	sql_str('');
+						$user_description = sql_str('');
+						$user_jabber = 		sql_str('');
+						$user_rich_editing = sql_str('true');
+
+						$is_update = false;
+						
+//						$capabillities = sql_str(get_capabillities($user_level));
+		
+						if (xpress_user_found($mydirname, $user_ID)){
+							$wu_sql  = 	"UPDATE $db_xpress_users ";
+							$wu_sql .= 	'SET ';
+							$wu_sql .=		"user_login  = $user_login_name, ";
+							$wu_sql .=		"user_pass  = $user_pass_md5, ";
+							$wu_sql .=		"user_email = $user_email, ";
+							$wu_sql .=		"user_url = $user_url, ";
+							$wu_sql .=		"user_nicename = $user_nicename, ";
+							$wu_sql .=		"user_registered = $user_regist_time, ";
+							$wu_sql .=		"user_status = 0 ";
+							$wu_sql .=	"WHERE (ID = $user_ID )";
+							if (!empty($GLOBALS["xoopsModuleConfig"]["use_wp_userlevel"])){
+								$ret_str .= '...UPDATE ' . $user_login_name . '(Level Not Change)';
+							} else {
+								$ret_str .= '...UPDATE ' . $user_login_name . '(' . $capabillities_name . ')';
+							}
+							$is_update = true;
+						}else{
+							$wu_sql  =	"INSERT INTO $db_xpress_users ";
+							$wu_sql .=  	"(ID , user_login , user_pass ,user_email , user_url , user_nicename " ;
+							$wu_sql .=		" , user_registered , user_status , display_name) ";
+							$wu_sql .=	"VALUES ";
+							$wu_sql .=		"($user_ID, $user_login_name, $user_pass_md5, $user_email, $user_url, $user_nicename ";
+							$wu_sql .=		" , $user_regist_time, $user_status, $user_display_name)";
+							if (!empty($GLOBALS["xoopsModuleConfig"]["use_wp_userlevel"])){
+								$ret_str .= '...INSERT ' . $user_login_name . '(' . $capabillities_name . '-WP Default)';
+							} else {
+								$ret_str .= '...INSERT ' . $user_login_name . '(' . $capabillities_name . ')';
+							}
+						}
+		
+						$wu_res = $xoopsDB->queryF($wu_sql, 0, 0);
+		
+						if ($wu_res === false){
+							$ret_str .= '...ERR(' . $wu_sql . ')';
+							return $ret_str;
+						}
+								
+						if (!empty($GLOBALS["xoopsModuleConfig"]["use_wp_userlevel"])){
+							if (!$is_update){
+								$sycc_user = new WP_User($user_ID);
+								$sycc_user->set_role($capabillities_name);
+							}
+						} else {
+							$sycc_user = new WP_User($user_ID);
+							$sycc_user->set_role($capabillities_name);						
+						}
+
+						if( $is_update === false){
+							$meta_key = sql_str('nickname');
+							$ans =xpress_usermeta_sync($mydirname, $user_ID,$meta_key,$user_nickname);
+							if(!empty($ans)){
+								$ret_str .= $ans;
+								return $ret_str;
+							}
+							$meta_key = sql_str('first_name');
+							$ans =xpress_usermeta_sync($mydirname, $user_ID,$meta_key,$user_first_name);
+							if(!empty($ans)){
+								$ret_str .= $ans;
+								return $ret_str;
+							}
+							$meta_key = sql_str('last_name');
+							$ans =xpress_usermeta_sync($mydirname, $user_ID,$meta_key,$user_last_name);
+							if(!empty($ans)){
+								$ret_str .= $ans;
+								return $ret_str;
+							}
+							$meta_key = sql_str('description');
+							$ans =xpress_usermeta_sync($mydirname, $user_ID,$meta_key,$user_description);
+							if(!empty($ans)){
+								$ret_str .= $ans;
+								return $ret_str;
+							}
+							$meta_key = sql_str('jabber');
+							$ans =xpress_usermeta_sync($mydirname, $user_ID,$meta_key,$user_jabber);
+							if(!empty($ans)){
+								$ret_str .= $ans;
+								return $ret_str;
+							}
+						}
+						$meta_key = sql_str('aim');
+						$ans =xpress_usermeta_sync($mydirname, $user_ID,$meta_key,$user_aim);
+						if(!empty($ans)){
+							$ret_str .= $ans;
+							return $ret_str;
+						}
+						$meta_key = sql_str('yim');
+						$ans =xpress_usermeta_sync($mydirname, $user_ID,$meta_key,$user_yim);
+						if(!empty($ans)){
+							$ret_str .= $ans;
+							return $ret_str;
+						}
+						if ($is_update === false ) {
+							$meta_key = sql_str('rich_editing');
+							$ans =xpress_usermeta_sync($mydirname, $user_ID,$meta_key,$user_rich_editing);
+							if(!empty($ans)){
+								$ret_str .= $ans;
+								return $ret_str;
+							}
+						}					
+					}
+				}
+			}
+			$ret_str .= "...END";
+			return $ret_str;
+		}
+	}
+//endif;
+
+//if( ! function_exists( 'check_user_role_prefix' ) ) :
+	function check_user_role_prefix($mydirname){
+		$wp_prefix = get_xpress_prefix($mydirname);
+		$xoopsDB =& Database::getInstance();		
+		$db_xpress_usermeta = $xoopsDB->prefix($wp_prefix . 'usermeta');
+		$user_meta_prefix =$xoopsDB->prefix($wp_prefix);
+		
+		$sql = "SELECT * FROM $db_xpress_usermeta WHERE meta_key LIKE '%_" . $wp_prefix . "user_level' OR meta_key LIKE '%_" . $wp_prefix . "capabilities' OR meta_key LIKE '%_" . $wp_prefix . "autosave_draft_ids'";
+		$result =  $xoopsDB->query($sql, 0, 0);
+		if ($result === false){
+			return -1;
+		}else{
+			$i=0;
+			while($row = $xoopsDB->fetchArray($result)){
+				$meta_key = $row['meta_key'];
+				if (strpos($meta_key,$user_meta_prefix) === false) {
+					$i++;
+				}
+			}
+			return $i;
+		}
+	}
+//endif;
+
+//if( ! function_exists( 'same_metakey_delete' ) ) :
+	function same_metakey_delete($mydirname,$metakey){
+		$wp_prefix = get_xpress_prefix($mydirname);
+		$xoopsDB =& Database::getInstance();		
+		$db_xpress_usermeta = $xoopsDB->prefix($wp_prefix . 'usermeta');
+		$user_meta_prefix =$xoopsDB->prefix($wp_prefix);
+		
+		$sql = "DELETE FROM $db_xpress_usermeta WHERE meta_key LIKE '$metakey'";
+		$result =  $xoopsDB->query($sql, 0, 0);
+		if ($result === false){
+			return false;
+		}else{
+			return true;
+		}
+	}
+//endif;
+
+//if( ! function_exists( 'repair_user_role_prefix' ) ) :
+	function repair_user_role_prefix($mydirname){
+		$wp_prefix = get_xpress_prefix($mydirname);
+		$xoopsDB =& Database::getInstance();		
+		$db_xpress_usermeta = $xoopsDB->prefix($wp_prefix . 'usermeta');
+		$user_meta_prefix =$xoopsDB->prefix($wp_prefix);
+		$ret = '';
+		
+		$sql = "SELECT * FROM $db_xpress_usermeta WHERE meta_key LIKE '%_" . $wp_prefix . "user_level' OR meta_key LIKE '%_" . $wp_prefix . "capabilities' OR meta_key LIKE '%_" . $wp_prefix . "autosave_draft_ids'";
+		$result =  $xoopsDB->queryF($sql, 0, 0);
+		if ($result === false){
+			return -1;
+		}else{
+			$i=0;
+			while($row = $xoopsDB->fetchArray($result)){
+				$meta_key = $row['meta_key'];
+				$umeta_id = $row['umeta_id'];
+				if (strpos($meta_key,$user_meta_prefix) === false) {
+					$new_meta_key = '';
+					if (strpos($meta_key,$wp_prefix.'user_level')){
+						$new_meta_key = $xoopsDB->prefix($wp_prefix . 'user_level');
+					}
+					
+					if (strpos($meta_key,$wp_prefix.'capabilities')){
+						$new_meta_key = $xoopsDB->prefix($wp_prefix . 'capabilities');
+					}
+					
+					if (strpos($meta_key,$wp_prefix.'autosave_draft_ids')){
+						$new_meta_key = $xoopsDB->prefix($wp_prefix . 'autosave_draft_ids');
+					}
+					
+					if (!empty($new_meta_key)){
+						same_metakey_delete($mydirname,$new_meta_key);
+
+						$repair_sql  = 	"UPDATE $db_xpress_usermeta ";
+						$repair_sql .= 	'SET ';
+						$repair_sql .=	"meta_key = '$new_meta_key' ";
+						$repair_sql .=	"WHERE (umeta_id = $umeta_id )";
+						$repair_res = $xoopsDB->queryF($repair_sql, 0, 0);
+						if ($repair_res === false){
+							$ret .= '...ERR(' . $meta_key . '->' . $new_meta_key . ')<br>';
+						} else {
+							$ret .= '...DO(' . $meta_key . '->' . $new_meta_key . ')<br>';
+						}
+					}
+				}
+			}
+		}
+		return $ret;
+	}
+//endif;		
+
+?>
Index: /include/xoops_include.php
===================================================================
--- /include/xoops_include.php	(revision 1)
+++ /include/xoops_include.php	(revision 1)
@@ -0,0 +1,47 @@
+<?php
+/*
+ * XPressME - WordPress for XOOPS
+ *
+ * @copyright	XPressME Project http://www.toemon.com
+ * @license		http://www.fsf.org/copyleft/gpl.html GNU public license
+ * @author		toemon
+ * @package		module::xpress
+ */
+
+/* 
+ *	The module loads the XOOPS system only at the time of reading to route index.php. 
+ *
+ *	When "Media up-loading" is executed, WordPress calls the SWFUpload script. 
+ *	After completing up-loading
+ *	The SWFUpload script executes wp-admin/async-upload.php. 
+ *	At this time, session ID is not succeeded to. 
+ *	And, admin/async-upload.php becomes an access inhibit when wordpress is under the management of XOOPS. 
+ */
+
+function is_root_index_page_call(){
+	$xpress_root_index = basename(dirname(dirname( __FILE__ ))) . '/index.php';
+	$php_script_name = $_SERVER['SCRIPT_NAME'];
+	$php_query_string = $_SERVER['QUERY_STRING'];
+	if (strstr($php_script_name,$xpress_root_index) !== false) {
+		if (strstr($php_query_string,'preview') === false) return true; else return false;;
+	} else  {
+		return false;
+	}
+}
+
+function is_admin_page_call(){
+	$xpress_root_index = basename(dirname(dirname( __FILE__ ))) . '/wp-admin';
+	$php_script_name = $_SERVER['SCRIPT_NAME'];
+	if (strstr($php_script_name,$xpress_root_index) !== false) return true; else  return false;
+}
+
+if (is_admin_page_call()){
+	if ( !defined("XOOPS_ROOT_PATH") ) {	
+		define('_LEGACY_PREVENT_LOAD_CORE_', 1);		//Module process will not load any XOOPS Cube classes.
+		include_once dirname( __FILE__ ).'/../../../mainfile.php';
+	}
+} else {
+	// index page is load xoops
+	require dirname( __FILE__ ).'/../../../mainfile.php' ;
+}
+?>
Index: /include/xpress_render.php
===================================================================
--- /include/xpress_render.php	(revision 1)
+++ /include/xpress_render.php	(revision 1)
@@ -0,0 +1,80 @@
+<?php
+
+//< style >< script >< link > tag is pulled out from the header of html contents. 
+function get_mod_header($contents)
+{
+	$pattern = "<head[^>]*?>(.*)<\/head>";
+	preg_match("/".$pattern."/s",  $contents, $head_matches);
+	$head_str = $head_matches[1];
+	
+	$pattern = "<style[^>]*?>(.*)<\/style>";
+	preg_match("/".$pattern."/s",  $head_str, $style_matches);
+	$style = $style_matches[0];
+ 
+	$pattern = "<link(.*)>";
+	preg_match_all("/".$pattern."/",  $head_str, $link_match,PREG_PATTERN_ORDER);
+	$links = $link_match[0];
+	$link_str ='';
+	foreach ( $links as $link){
+		ob_start();
+			echo $link . "\n";
+			
+			$link_str .= ob_get_contents();
+		ob_end_clean();
+	}
+	
+	$pattern = "<script[^>]*?>(.*)<\/script>";
+	preg_match_all("/".$pattern."/s",  $head_str, $script_match,PREG_PATTERN_ORDER);
+	$scripts = $script_match[0];
+	$script_str ='';
+	foreach ( $scripts as $script){		
+		if (($GLOBALS["xoopsModuleConfig"]['use_d3forum'] != 1) || (strpos($script,'function wpopen') ===false))
+			$script_str .= $script;
+	}
+	return $link_str."\n".$style . "\n" . $script_str ."\n";
+}
+
+// < body > tag is pulled out from the header of html contents. 
+function get_body($contents)
+{
+	$pattern = "<body[^>]*?>(.*)<\/body>";
+	preg_match("/".$pattern."/s",  $contents, $body_matches);
+	$body = $body_matches[1];
+	return $body;
+}
+
+//Making of module header
+function get_xpress_module_header($contents)
+{
+	global $xoopsTpl;
+	if( defined( 'XOOPS_CUBE_LEGACY' ) ) {
+		$preload_make_module_header = $xoopsTpl->get_template_vars('xoops_module_header');
+	} else {
+		$preload_make_module_header = '';
+	}
+	
+	if (! empty($preload_make_module_header)){
+	$preload_make_module_header = '<!-- preload added module header -->
+' . $preload_make_module_header . '
+';
+	}
+	
+	$wp_module_header = '<!-- wordpress  added module header -->
+' . get_mod_header($contents) . '
+<!-- end of wordpress  added module header -->';
+	
+	return $preload_make_module_header . $wp_module_header;
+}
+
+//rendering for the module header and the body
+function xpress_render($contents){
+	global $xoopsTpl;
+	include XOOPS_ROOT_PATH."/header.php";
+	$page_title = $GLOBALS["xoopsModule"]->getVar("name")." ".wp_title('&raquo;', false);	
+	$xoopsTpl->assign('xoops_module_header', get_xpress_module_header($contents));
+	$xoopsTpl->assign('xoops_pagetitle', $page_title);
+	$xoopsTpl->assign('xpress_body_contents', get_body($contents));
+ 	echo get_body($contents);
+}
+
+?>
Index: /language/ja_utf8/admin.php
===================================================================
--- /language/ja_utf8/admin.php	(revision 1)
+++ /language/ja_utf8/admin.php	(revision 1)
@@ -0,0 +1,6 @@
+<?php
+if( ! defined( 'XPRESS_ADMIN_LANG_INCLUDED' ) ) {
+	define( 'XPRESS_ADMIN_LANG_INCLUDED' , 1 ) ;
+	
+}
+?>
Index: /language/ja_utf8/blocks.php
===================================================================
--- /language/ja_utf8/blocks.php	(revision 1)
+++ /language/ja_utf8/blocks.php	(revision 1)
@@ -0,0 +1,6 @@
+<?php
+if( ! defined( 'XPRESS_BLOCK_LANG_INCLUDED' ) ) {
+	define( 'XPRESS_BLOCK_LANG_INCLUDED' , 1 ) ;
+
+}
+?>
Index: /language/ja_utf8/index.html
===================================================================
--- /language/ja_utf8/index.html	(revision 1)
+++ /language/ja_utf8/index.html	(revision 1)
@@ -0,0 +1,1 @@
+ <script>history.go(-1);</script>
Index: /language/ja_utf8/main.php
===================================================================
--- /language/ja_utf8/main.php	(revision 1)
+++ /language/ja_utf8/main.php	(revision 1)
@@ -0,0 +1,6 @@
+<?php
+if( ! defined( 'XPRESS_MAIN_LANG_INCLUDED' ) ) {
+	define( 'XPRESS_MAIN_LANG_INCLUDED' , 1 ) ;
+
+}
+?>
Index: /language/ja_utf8/modinfo.php
===================================================================
--- /language/ja_utf8/modinfo.php	(revision 1)
+++ /language/ja_utf8/modinfo.php	(revision 1)
@@ -0,0 +1,15 @@
+<?php
+if( ! defined( 'XPRESS_MODINFO_LANG_INCLUDED' ) ) {
+	define( 'XPRESS_MODINFO_LANG_INCLUDED' , 1 ) ;
+
+	// The name of this module
+	define("_MI_XPRESS_NAME","ブログ");
+
+	// A brief description of this module
+	define("_MI_XPRESS_DESC","WordPressMEをXOOPSモジュール化したものです。");
+
+	// Sub menu titles
+	define("_MI_XPRESS_MENU_POST_NEW","新規投稿");
+	define("_MI_XPRESS_MENU_EDIT","投稿管理");
+}
+?>
Index: /module_icon.php
===================================================================
--- /module_icon.php	(revision 1)
+++ /module_icon.php	(revision 1)
@@ -0,0 +1,30 @@
+<?php
+$mydirpath = dirname(__FILE__);
+$mydirname = basename($mydirpath);
+$icon_cache_limit = 3600 ; // default 3600sec == 1hour
+
+session_cache_limiter('public');
+header("Expires: ".date('r',intval(time()/$icon_cache_limit)*$icon_cache_limit+$icon_cache_limit));
+header("Cache-Control: public, max-age=$icon_cache_limit");
+header("Last-Modified: ".date('r',intval(time()/$icon_cache_limit)*$icon_cache_limit));
+header("Content-type: image/png");
+
+$icon_fullpath = $mydirpath.'/module_icon.png' ;
+
+if(function_exists( 'imagecreatefrompng' ) && function_exists( 'imagecolorallocate' ) && function_exists( 'imagestring' ) && function_exists( 'imagepng' ) ) {
+
+	$im = imagecreatefrompng( $icon_fullpath ) ;
+
+	$color = imagecolorallocate( $im , 0 , 0 , 0 ) ; // black
+	$px = ( 92 - 6 * strlen( $mydirname ) ) / 2 ;
+	imagestring( $im , 3 , $px , 34 , $mydirname , $color ) ;
+	imagepng( $im ) ;
+	imagedestroy( $im ) ;
+
+} else {
+
+	readfile( $icon_fullpath ) ;
+
+}
+
+?>
Index: /wp-config.php
===================================================================
--- /wp-config.php	(revision 1)
+++ /wp-config.php	(revision 1)
@@ -0,0 +1,52 @@
+<?php
+require dirname( __FILE__ ).'/include/xoops_include.php' ;
+
+mb_language('Japanese');
+mb_internal_encoding('UTF-8');
+
+// ** MySQL settings ** //
+define('DB_NAME', XOOPS_DB_NAME);    // The name of the database
+define('DB_USER', XOOPS_DB_USER);     // Your MySQL username
+define('DB_PASSWORD', XOOPS_DB_PASS); // ...and password
+define('DB_HOST', XOOPS_DB_HOST);    // 99% chance you won't need to change this value
+define('DB_CHARSET', 'utf8');
+define('DB_COLLATE', '');
+
+// Change each KEY to a different unique phrase.  You won't have to remember the phrases later,
+// so make them long and complicated.  You can visit http://api.wordpress.org/secret-key/1.1/
+// to get keys generated for you, or just make something up.  Each key should have a different phrase.
+define('AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
+define('SECURE_AUTH_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
+define('LOGGED_IN_KEY', 'put your unique phrase here'); // Change this to a unique phrase.
+
+// You can have multiple installations in one database if you give each a unique prefix
+$xp_prefix = basename(dirname(__FILE__));
+if ($xp_prefix == 'wordpress'){
+ 	$xp_prefix = 'wp';
+}
+$table_prefix  = XOOPS_DB_PREFIX . '_' . $xp_prefix . '_';   // Only numbers, letters, and underscores please!
+
+// Change this to localize WordPress.  A corresponding MO file for the
+// chosen language must be installed to wp-content/languages.
+// For example, install de.mo to wp-content/languages and set WPLANG to 'de'
+// to enable German language support.
+define ('WPLANG', 'ja');
+
+/* That's all, stop editing! Happy blogging. */
+
+if ( !defined('ABSPATH') )
+	define('ABSPATH', dirname(__FILE__).'/');
+
+require_once(ABSPATH.'wp-settings.php');
+if (is_root_index_page_call()){
+	wp();
+	ob_start();	
+		require_once( ABSPATH . WPINC . '/template-loader.php' );
+		$wp_output = ob_get_contents();
+	ob_end_clean();
+	require_once( ABSPATH .'/include/xpress_render.php' );
+	xpress_render($wp_output);
+	include XOOPS_ROOT_PATH . '/footer.php';
+	exit();
+}
+?>
Index: /wp-content/themes/toemon/404.php
===================================================================
--- /wp-content/themes/toemon/404.php	(revision 1)
+++ /wp-content/themes/toemon/404.php	(revision 1)
@@ -0,0 +1,29 @@
+<?php get_header(); ?>
+
+       <div id="xpress_wrap">
+	   
+	<?php if(is_sidbar_disp()) : ?>
+	   
+		<div id="xpress_content" class="narrowcolumn">
+		
+	<?php else : ?>
+	
+		<div id="xpress_content" class="narrowcolumn_nonside">
+		
+	<?php endif; ?>
+
+    <div id="xpress_header">
+    	<div id="xpress_headerimg">
+    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
+    		<div class="description"><?php bloginfo('description'); ?></div>
+    	</div>
+    </div>
+
+		<h2 class="center"><?php _e('Error 404 - Not Found', 'kubrick'); ?></h2>
+
+	</div>
+       </div>
+
+<?php get_sidebar(); ?>
+
+<?php get_footer(); ?>
Index: /wp-content/themes/toemon/MFCE03.tmp
===================================================================
--- /wp-content/themes/toemon/MFCE03.tmp	(revision 1)
+++ /wp-content/themes/toemon/MFCE03.tmp	(revision 1)
@@ -0,0 +1,646 @@
+
+@charset "utf-8";
+/*
+Theme Name: XPressME
+Theme URI: http://www.toemon.com/
+Description: XOOPSモジュール「XPressME」 WordPressモード用テーマ
+Version: 0.2 ALPHA
+Author: KURO
+Author URI: http://xoops-fan.com/
+Tags: XPressME,toemon,KURO
+
+*/
+
+
+
+/* Begin Typography & Colors */
+#xpress_page {
+	background-color: white;
+	border: 1px solid #959596;
+	text-align: left;
+	}
+
+#xpress_content {
+	font-size: 1.0em
+	}
+
+.widecolumn .entry p {
+	font-size: 1.05em;
+	}
+
+.narrowcolumn .entry,.narrowcolumn_nonside .entry, .widecolumn .entry {
+	line-height: 1.4em;
+	}
+
+.widecolumn {
+	line-height: 1.6em;
+	}
+
+.narrowcolumn_nonside .postmetadata,
+.narrowcolumn .postmetadata {
+	text-align: center;
+	}
+
+.alt {
+	background-color: #f8f8f8;
+	border-top: 1px solid #ddd;
+	border-bottom: 1px solid #ddd;
+	}
+
+small {
+	font-family: Arial, Helvetica, Sans-Serif;
+	font-size: 0.9em;
+	line-height: 1.5em;
+	}
+
+h1, h2, h3 {
+	font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
+	font-weight: bold;
+	}
+
+h1 {
+	font-size: 2.0em;
+	text-align: center;
+	}
+
+#xpress_headerimg .description {
+	font-size: 1.2em;
+	text-align: center;
+	}
+
+h2 {
+	font-size: 1.6em;
+	}
+
+h2.pagetitle {
+	font-size: 1.6em;
+	}
+
+.xpress_sidebar h2 {
+	font-family: 'Lucida Grande', Verdana, Sans-Serif;
+	font-size: 0.9em;
+	}
+
+h3 {
+	font-size: 1.3em;
+	}
+
+h1, h1 a, h1 a:hover, h1 a:visited, #xpress_headerimg .description {
+	text-decoration: none;
+	color: white;
+	}
+
+h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited {
+	color: #333;
+	}
+
+h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited, .xpress_sidebar h2, #wp-calendar caption, cite {
+	text-decoration: none;
+	}
+
+.entry p a:visited {
+	color: #b85b5a;
+	}
+
+.commentlist li, #commentform input, #commentform textarea {
+	font: 0.9em 'Lucida Grande', Verdana, Arial, Sans-Serif;
+	}
+
+.commentlist li {
+	font-weight: bold;
+	}
+
+.commentlist li .avatar { 
+	float: right;
+	border: 1px solid #eee;
+	padding: 2px;
+	background: #fff;
+	}
+
+.commentlist cite, .commentlist cite a {
+	font-weight: bold;
+	font-style: normal;
+	font-size: 1.1em;
+	}
+
+.commentlist p {
+	font-weight: normal;
+	line-height: 1.5em;
+	text-transform: none;
+	}
+
+#commentform p {
+	font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
+	}
+
+.commentmetadata {
+	font-weight: normal;
+	}
+
+.xpress_sidebar {
+	font: 1em 'Lucida Grande', Verdana, Arial, Sans-Serif;
+	}
+
+small, .xpress_sidebar ul ul li, .xpress_sidebar ul ol li, .nocomments, .postmetadata, blockquote, strike {
+	color: #777;
+	}
+
+code {
+	font: 1.1em 'Courier New', Courier, Fixed;
+	}
+
+acronym, abbr, span.caps
+{
+	font-size: 0.9em;
+	letter-spacing: .07em;
+	}
+
+a, h2 a:hover, h3 a:hover {
+	color: #06c;
+	text-decoration: none;
+	}
+
+a:hover {
+	color: #147;
+	text-decoration: underline;
+	}
+
+#wp-calendar #prev a, #wp-calendar #next a {
+	font-size: 9pt;
+	}
+
+#wp-calendar a {
+	text-decoration: none;
+	}
+
+#wp-calendar caption {
+	font: bold 1.3em 'Lucida Grande', Verdana, Arial, Sans-Serif;
+	text-align: center;
+	}
+
+#wp-calendar th {
+	font-style: normal;
+	text-transform: capitalize;
+	}
+/* End Typography & Colors */
+
+
+
+/* Begin Structure */
+#xpress_page {
+	background-color: white;
+	padding: 0;
+	width: 100%;
+	margin: 0;
+	border: 1px solid #959596;
+	}
+
+#xpress_header {
+	background-color: #73a0c5;
+	margin: 1px 1px 0;
+	padding: 0;
+	height: 100px;
+	}
+
+#xpress_headerimg {
+	margin: 0;
+	height: 100%;
+	width: 100%;
+	}
+	
+#xpress_wrap {
+	float: left;
+	width: 100%;
+	margin-right: -205px;
+	}
+
+#xpress_content {
+	padding: 10px 15px 20px;
+	}
+	
+#xpress_content.narrowcolumn {
+	margin-right: 205px;
+	}
+	
+#xpress_content.widecolumn {
+	max-width: 500px;
+	margin: 0 auto;
+	}
+	
+.post hr {
+	display: block;
+	}
+	
+#xpress_content .post {
+	max-width: 500px;
+	margin: 0 auto 40px;
+	}	
+
+.narrowcolumn_nonside .postmetadata,
+.narrowcolumn .postmetadata {
+	padding-top: 5px;
+	}
+
+.widecolumn .postmetadata {
+	margin: 30px 0;
+	}
+
+.widecolumn .smallattachment {
+	text-align: center;
+	float: left;
+	width: 128px;
+	margin: 5px 5px 5px 0px;
+}
+
+.widecolumn .attachment {
+	text-align: center;
+	margin: 5px 0px;
+}
+
+.postmetadata {
+	clear: both;
+}
+
+.clear {
+	clear: both;
+}
+
+#xpress_footer {
+	padding: 0;
+	margin: 0 auto;
+	width: 100%;
+	clear: both;
+	}
+
+#xpress_footer p {
+	margin: 0;
+	padding: 20px 0;
+	text-align: center;
+	}
+/* End Structure */
+
+
+/*	Begin Headers */
+h1 {
+	padding-top: 20px;
+	margin: 0;
+	}
+
+h2 {
+	margin: 30px 0 0;
+	}
+
+h2.pagetitle {
+	margin-top: 30px;
+	text-align: center;
+}
+
+.xpress_sidebar h2 {
+	margin: 5px 0 0;
+	padding: 0;
+	}
+
+h3 {
+	padding: 0;
+	margin: 30px 0 0;
+	}
+
+h3.xpress_comments {
+	padding: 0;
+	margin: 40px auto 20px ;
+	}
+/* End Headers */
+
+
+
+/* Begin Images */
+p img {
+	padding: 0;
+	max-width: 100%;
+	}
+
+/*	Using 'class="alignright"' on an image will (who would've
+	thought?!) align the image to the right. And using 'class="centered',
+	will of course center the image. This is much better than using
+	align="center", being much more futureproof (and valid) */
+
+img.centered {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+	}
+
+img.alignright {
+	padding: 4px;
+	margin: 0 0 2px 7px;
+	display: inline;
+	}
+
+img.alignleft {
+	padding: 4px;
+	margin: 0 7px 2px 0;
+	display: inline;
+	}
+
+.alignright {
+	float: right;
+	}
+
+.alignleft {
+	float: left
+	}
+/* End Images */
+
+
+
+/* Begin Lists
+
+	Special stylized non-IE bullets
+	Do not work in Internet Explorer, which merely default to normal bullets. */
+
+html>body .entry ul {
+	margin-left: 0px;
+	padding: 0 0 0 30px;
+	list-style: none;
+	padding-left: 10px;
+	text-indent: -10px;
+	}
+
+html>body .entry li {
+	margin: 7px 0 8px 10px;
+	}
+
+.entry ul li:before, .xpress_sidebar ul ul li:before {
+	content: "\00BB \0020";
+	}
+
+.entry ol {
+	padding: 0 0 0 35px;
+	margin: 0;
+	}
+
+.entry ol li {
+	margin: 0;
+	padding: 0;
+	}
+
+.postmetadata ul, .postmetadata li {
+	display: inline;
+	list-style-type: none;
+	list-style-image: none;
+	}
+
+.xpress_sidebar ul, .xpress_sidebar ul ol {
+	margin: 0;
+	padding: 0;
+	}
+
+.xpress_sidebar ul li {
+	list-style-type: none;
+	list-style-image: none;
+	margin-bottom: 15px;
+	}
+
+.xpress_sidebar ul p, .xpress_sidebar ul select {
+	margin: 5px 0 8px;
+	}
+
+.xpress_sidebar ul ul, .xpress_sidebar ul ol {
+	margin: 5px 0 0 10px;
+	}
+
+.xpress_sidebar ul ul ul, .xpress_sidebar ul ol {
+	margin: 0 0 0 10px;
+	}
+
+ol li, .xpress_sidebar ul ol li {
+	list-style: decimal outside;
+	}
+
+.xpress_sidebar ul ul li, .xpress_sidebar ul ol li {
+	margin: 3px 0 0;
+	padding: 0;
+	}
+/* End Entry Lists */
+
+
+
+/* Begin Form Elements */
+.xpress_sidebar #searchform {
+	margin: 10px auto;
+	padding: 5px 3px;
+	text-align: center;
+	}
+
+.xpress_sidebar #searchform #s {
+	width: 108px;
+	padding: 2px;
+	}
+
+.xpress_sidebar #searchsubmit {
+	padding: 1px;
+	}
+
+.entry form { /* This is mainly for password protected posts, makes them look better. */
+	text-align:center;
+	}
+
+select {
+	width: 130px;
+	}
+
+#xpress_commentform input {
+	width: 170px;
+	padding: 2px;
+	margin: 5px 5px 1px 0;
+	}
+
+#xpress_commentform textarea {
+	width: 100%;
+	padding: 2px;
+	}
+
+#xpress_commentform #xpress_submit {
+	margin: 0;
+	float: right;
+	}
+/* End Form Elements */
+
+
+
+/* Begin Comments*/
+.alt {
+	margin: 0;
+	padding: 10px;
+	}
+
+.xpress_commentlist {
+	padding: 0;
+/*	text-align: justify; */
+	}
+
+.xpress_commentlist li {
+	margin: 15px 0 3px;
+	padding: 5px 10px 3px;
+	list-style: none;
+	}
+
+.xpress_commentlist p {
+	margin: 10px 5px 10px 0;
+	}
+
+#xpress_commentform p {
+	margin: 5px 0;
+	}
+
+.nocomments {
+	text-align: center;
+	margin: 0;
+	padding: 0;
+	}
+
+.xpress_commentmetadata {
+	margin: 0;
+	display: block;
+	}
+/* End Comments */
+
+
+
+/* Begin Sidebar */
+#xpress_page .xpress_sidebar {
+	float: right;
+	display:inline;
+	margin:0 15px 0 0;
+	padding: 20px 0 10px;
+	width: 190px;
+	}
+
+.xpress_sidebar form {
+	margin: 0;
+	}
+/* End Sidebar */
+
+
+
+/* Begin Calendar */
+#wp-calendar {
+	empty-cells: show;
+	margin: 10px auto 0;
+	width: 155px;
+	}
+
+#wp-calendar #next a {
+	padding-right: 10px;
+	text-align: right;
+	}
+
+#wp-calendar #prev a {
+	padding-left: 10px;
+	text-align: left;
+	}
+
+#wp-calendar a {
+	display: block;
+	}
+
+#wp-calendar caption {
+	text-align: center;
+	width: 100%;
+	}
+
+#wp-calendar td {
+	padding: 3px 0;
+	text-align: center;
+	}
+
+#wp-calendar td.pad:hover { /* Doesn't work in IE */
+	background-color: #fff; }
+/* End Calendar */
+
+
+
+/* Begin Various Tags & Classes */
+acronym, abbr, span.caps {
+	cursor: help;
+	}
+
+acronym, abbr {
+	border-bottom: 1px dashed #999;
+	}
+
+blockquote {
+	margin: 15px 30px 0 10px;
+	padding-left: 20px;
+	border-left: 5px solid #ddd;
+	}
+
+blockquote cite {
+	margin: 5px 0 0;
+	display: block;
+	}
+
+.center {
+	text-align: center;
+	}
+
+.hidden {
+	display: none;
+	}
+
+hr {
+	display: none;
+	}
+
+a img {
+	border: none;
+	}
+
+.xpress_navigation {
+	display: block;
+	text-align: center;
+	margin-top: 10px;
+	margin-bottom: 60px;
+	}
+/* End Various Tags & Classes*/
+
+
+
+/* Captions */
+.aligncenter,
+div.aligncenter {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+
+.wp-caption {
+	border: 1px solid #ddd;
+	text-align: center;
+	background-color: #f3f3f3;
+	padding-top: 4px;
+	margin: 10px;
+	-moz-border-radius: 3px;
+	-khtml-border-radius: 3px;
+	-webkit-border-radius: 3px;
+	border-radius: 3px;
+}
+
+.wp-caption img {
+	margin: 0;
+	padding: 0;
+	border: 0 none;
+}
+
+.wp-caption p.wp-caption-text {
+	font-size: 11px;
+	line-height: 17px;
+	padding: 0 4px 5px;
+	margin: 0;
+}
+/* End captions */
+
+
+/* "Daisy, Daisy, give me your answer do. I'm half crazy all for the love of you.
+	It won't be a stylish marriage, I can't afford a carriage.
+	But you'll look sweet upon the seat of a bicycle built for two." */
Index: /wp-content/themes/toemon/README.txt
===================================================================
--- /wp-content/themes/toemon/README.txt	(revision 1)
+++ /wp-content/themes/toemon/README.txt	(revision 1)
@@ -0,0 +1,26 @@
+Theme Name: XPressST
+Theme URI: http://www.toemon.com/
+Description: XOOPSW
+[uXPressMEvuXPressEUCv WordPresse[}[hpe[}
+Version: 0.5
+Author: KURO
+Author URI: http://xoops-fan.com/
+Tags: XPressME,toemon,KURO
+\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
+
+***ì ÉÂ¢Ä***
+
+@{e[}Ít[e[}Å·B²©RÉÁHµÄ²gp­¾³¢BÈ¨Cì ÍìÒ
+Å é"KURO"ªÛLµÄ¢Ü·B
+
+***XVð***
+
+2008-9-20
+*Ver0.1 RC1 [X
+
+2008-10-5
+*Ver0.5
+*e[}¼ÌðuXPressMEv©çuXPressSTvÉÏXB»êÉºÁÄfBNg¼ðuxpress_stvÉÏX
+*CSSå«·¦
+*SXPresso[W¤Ê»
+*WordPresse[}[hAuÅßÌLàevubNÉXPressSTÌX^CªKp³êÄÈ©Á½ÌðC³
Index: /wp-content/themes/toemon/archive.php
===================================================================
--- /wp-content/themes/toemon/archive.php	(revision 1)
+++ /wp-content/themes/toemon/archive.php	(revision 1)
@@ -0,0 +1,105 @@
+<?php get_header(); ?>
+
+       <div id="xpress_wrap">
+	   
+	<?php if(is_sidbar_disp()) : ?>
+	   
+		<div id="xpress_content" class="narrowcolumn">
+		
+	<?php else : ?>
+	
+		<div id="xpress_content" class="narrowcolumn_nonside">
+		
+	<?php endif; ?>
+
+    <div id="xpress_header">
+    	<div id="xpress_headerimg">
+    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
+    		<div class="description"><?php bloginfo('description'); ?></div>
+    	</div>
+    </div>
+
+		<?php if (have_posts()) : ?>
+
+      <?php if(function_exists('is_tag')) : ?>
+ 	  <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
+ 	  <?php /* If this is a category archive */ if (is_category()) { ?>
+		<p class="xpress_pagetitle"><?php printf(__('Archive for the &#8216;%s&#8217; Category', 'kubrick'), single_cat_title('', false)); ?></p>
+ 	  <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
+		<p class="xpress_pagetitle"><?php printf(__('Posts Tagged &#8216;%s&#8217;', 'kubrick'), single_tag_title('', false) ); ?></p>
+ 	  <?php /* If this is a daily archive */ } elseif (is_day()) { ?>
+		<p class="xpress_pagetitle"><?php printf(_c('Archive for %s|Daily archive page', 'kubrick'), get_the_time(__('F jS, Y', 'kubrick'))); ?></p>
+ 	  <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
+		<p class="xpress_pagetitle"><?php printf(_c('Archive for %s|Monthly archive page', 'kubrick'), get_the_time(__('F, Y', 'kubrick'))); ?></p>
+ 	  <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
+		<p class="xpress_pagetitle"><?php printf(_c('Archive for %s|Yearly archive page', 'kubrick'), get_the_time(__('Y', 'kubrick'))); ?></p>
+	  <?php /* If this is an author archive */ } elseif (is_author()) { ?>
+		<p class="xpress_pagetitle"><?php echo get_author_name( get_query_var('author')); _e('Author Archive', 'kubrick'); ?></p>
+ 	  <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
+		<p class="xpress_pagetitle"><?php _e('Blog Archives', 'kubrick'); ?></p>
+ 	  <?php } ?>
+ 	  <?php else : ?>
+		 <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
+<?php /* If this is a category archive */ if (is_category()) { ?>				
+		<p class="xpress_pagetitle">Archive for the '<?php echo single_cat_title(); ?>' Category</p>
+		
+ 	  <?php /* If this is a daily archive */ } elseif (is_day()) { ?>
+		<p class="xpress_pagetitle">Archive for <?php the_time('F jS, Y'); ?></p>
+		
+	 <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
+		<p class="xpress_pagetitle">Archive for <?php the_time('F, Y'); ?></p>
+
+		<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
+		<p class="xpress_pagetitle">Archive for <?php the_time('Y'); ?></p>
+		
+	  <?php /* If this is a search */ } elseif (is_search()) { ?>
+		<p class="xpress_pagetitle">Search Results</p>
+		
+	  <?php /* If this is an author archive */ } elseif (is_author()) { ?>
+		<p class="xpress_pagetitle">Author Archive</p>
+
+		<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
+		<p class="xpress_pagetitle">Blog Archives</p>
+
+		<?php } ?>
+	  <?php endif; ?>
+
+
+		<?php while (have_posts()) : the_post(); ?>
+		<div class="post">
+				<?php if (function_exists('hotDates')) { hotDates(); }?>
+				<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" <?php if(function_exists('the_title_attribute')) : ?>title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"<?php endif; ?>><?php the_title(); ?></a></h2>
+				<small><?php the_time(__('l, F jS, Y', 'kubrick')) ?></small>
+
+				<div class="entry">
+					<?php the_content() ?>
+				</div>
+
+				<p class="postmetadata"><?php if(function_exists('the_tags')) : ?><?php the_tags(__('Tags:', 'kubrick'), ', ', '<br />'); ?><?php endif; ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?>  <?php comments_popup_link(__('No Comments &#187;', 'kubrick'), __('1 Comment &#187;', 'kubrick'), __('% Comments &#187;', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?></p>
+
+			</div>
+
+		<?php endwhile; ?>
+		<?php if(function_exists('wp_pagenavi')) : ?>
+			<div class="xpress_pagenavi">
+				<?php wp_pagenavi(); ?>
+			</div>
+		<?php else : ?>
+			<div class="xpress_navigation">
+				<div class="alignleft"><?php next_posts_link(__('&laquo; Older Entries', 'kubrick')) ?></div>
+				<div class="alignright"><?php previous_posts_link(__('Newer Entries &raquo;', 'kubrick')) ?></div>
+			</div>
+		<?php endif; ?>
+	<?php else : ?>
+
+		<p class="center"><?php _e('Not Found', 'kubrick'); ?></p>
+		<?php include (get_template_directory() . '/searchform.php'); ?>
+
+	<?php endif; ?>
+
+	</div>
+       </div>
+
+<?php get_sidebar(); ?>
+
+<?php get_footer(); ?>
Index: /wp-content/themes/toemon/archives.php
===================================================================
--- /wp-content/themes/toemon/archives.php	(revision 1)
+++ /wp-content/themes/toemon/archives.php	(revision 1)
@@ -0,0 +1,32 @@
+<?php
+/*
+Template Name: Archives
+*/
+?>
+
+<?php get_header(); ?>
+
+<div id="xpress_content" class="widecolumn">
+
+    <div id="xpress_header">
+    	<div id="xpress_headerimg">
+    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
+    		<div class="description"><?php bloginfo('description'); ?></div>
+    	</div>
+    </div>
+
+<?php include (get_template_directory() . '/searchform.php'); ?>
+
+	<h2><?php _e('Archives by Month:', 'kubrick'); ?></h2>
+	<ul>
+		<?php wp_get_archives('type=monthly'); ?>
+	</ul>
+
+	<h2><?php _e('Archives by Subject:', 'kubrick'); ?></h2>
+	<ul>
+		 <?php wp_list_categories(); ?>
+	</ul>
+
+</div>
+
+<?php get_footer(); ?>
Index: /wp-content/themes/toemon/comments-popup.php
===================================================================
--- /wp-content/themes/toemon/comments-popup.php	(revision 1)
+++ /wp-content/themes/toemon/comments-popup.php	(revision 1)
@@ -0,0 +1,116 @@
+<?php
+/* Don't remove these lines. */
+add_filter('comment_text', 'popuplinks');
+while ( have_posts()) : the_post();
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+     <title><?php printf(__('%1$s - Comments on %2$s', 'kubrick'), get_option('blogname'), the_title('','',false)); ?></title>
+
+	<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
+	<style type="text/css" media="screen">
+		@import url( <?php bloginfo('stylesheet_url'); ?> );
+		body { margin: 3px; }
+	</style>
+
+</head>
+<body id="xpress_commentspopup">
+
+<h1 id="xpress_header"><a href="" title="<?php echo get_option('blogname'); ?>"><?php echo get_option('blogname'); ?></a></h1>
+
+<h2 id="xpress_comments"><?php _e('Comments', 'kubrick'); ?></h2>
+
+<p><a href="<?php echo get_post_comments_feed_link($post->ID); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.', 'kubrick'); ?></a></p>
+
+<?php if ('open' == $post->ping_status) { ?>
+<p><?php printf(__('The <abbr title="Universal Resource Locator">URL</abbr> to TrackBack this entry is: <em>%s</em>', 'kubrick'), get_trackback_url()); ?></p>
+<?php } ?>
+
+<?php
+// this line is WordPress' motor, do not delete it.
+$commenter = wp_get_current_commenter();
+extract($commenter);
+$comments = get_approved_comments($id);
+$post = get_post($id);
+if (!empty($post->post_password) && $_COOKIE['wp-postpass_'. COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
+	echo(get_the_password_form());
+} else { ?>
+
+<?php if ($comments) { ?>
+<ol id="xpress_commentlist">
+<?php foreach ($comments as $comment) { ?>
+	<li id="comment-<?php comment_ID() ?>">
+	<?php comment_text() ?>
+	<p><cite><?php comment_type(__('Comment', 'kubrick'), __('Trackback', 'kubrick'), __('Pingback', 'kubrick')); ?> <?php printf(__('by %1$s &#8212; %2$s @ <a href="#comment-%3$s">%4$s</a>', 'kubrick'), get_comment_author_link(), get_comment_date(), get_comment_ID(), get_comment_time()); ?></cite></p>
+	</li>
+
+<?php } // end for each comment ?>
+</ol>
+<?php } else { // this is displayed if there are no comments so far ?>
+	<p><?php _e('No comments yet.', 'kubrick'); ?></p>
+<?php } ?>
+
+<?php if ('open' == $post->comment_status) { ?>
+<h2><?php _e('Leave a comment', 'kubrick'); ?></h2>
+<p><?php printf(__('Line and paragraph breaks automatic, e-mail address never displayed, <acronym title="Hypertext Markup Language">HTML</acronym> allowed: <code>%s</code>', 'kubrick'), allowed_tags()); ?></p>
+
+<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
+<?php if ( $user_ID ) : ?>
+	<p><?php printf(__('Logged in as <a href="%1$s">%2$s</a>. <a href="%3$s" title="Log out of this account">Log out &raquo;</a>', 'kubrick'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity, get_option('siteurl') . '/wp-login.php?action=logout'); ?></p>
+<?php else : ?>
+	<p>
+	  <input type="text" name="author" id="author" class="textarea" value="<?php echo $comment_author; ?>" size="28" tabindex="1" />
+	   <label for="author"><?php _e('Name', 'kubrick'); ?></label>
+	<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
+	<input type="hidden" name="redirect_to" value="<?php echo attribute_escape($_SERVER["REQUEST_URI"]); ?>" />
+	</p>
+
+	<p>
+	  <input type="text" name="email" id="xpress_email" value="<?php echo $comment_author_email; ?>" size="28" tabindex="2" />
+	   <label for="email"><?php _e('E-mail', 'kubrick'); ?></label>
+	</p>
+
+	<p>
+	  <input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="28" tabindex="3" />
+	   <label for="url"><?php _e('<abbr title="Universal Resource Locator">URL</abbr>', 'kubrick'); ?></label>
+	</p>
+<?php endif; ?>
+
+	<p>
+	  <label for="comment"><?php _e('Your Comment', 'kubrick'); ?></label>
+	<br />
+	  <textarea name="comment" id="xpress_comment" cols="70" rows="4" tabindex="4"></textarea>
+	</p>
+
+	<p>
+	  <input name="submit" type="submit" tabindex="5" value="<?php _e('Say It!' , 'kubrick'); ?>" />
+	</p>
+	<?php do_action('comment_form', $post->ID); ?>
+</form>
+<?php } else { // comments are closed ?>
+<p><?php _e('Sorry, the comment form is closed at this time.', 'kubrick'); ?></p>
+<?php }
+} // end password check
+?>
+
+<div><strong><a href="javascript:window.close()"><?php _e('Close this window.', 'kubrick'); ?></a></strong></div>
+
+<?php // if you delete this the sky will fall on your head
+endwhile;
+?>
+
+<!-- // this is just the end of the motor - don't touch that line either :) -->
+<?php //} ?>
+<p class="credit"><?php timer_stop(1); ?> <cite><?php printf(__('Powered by <a href="%s" title="Powered by WordPress, state-of-the-art semantic personal publishing platform"><strong>WordPress</strong></a>', 'kubrick'), 'http://wordpress.org/'); ?></cite></p>
+<?php // Seen at http://www.mijnkopthee.nl/log2/archive/2003/05/28/esc(18) ?>
+<script type="text/javascript">
+<!--
+document.onkeypress = function esc(e) {
+	if(typeof(e) == "undefined") { e=event; }
+	if (e.keyCode == 27) { self.close(); }
+}
+// -->
+</script>
+</body>
+</html>
Index: /wp-content/themes/toemon/comments.php
===================================================================
--- /wp-content/themes/toemon/comments.php	(revision 1)
+++ /wp-content/themes/toemon/comments.php	(revision 1)
@@ -0,0 +1,122 @@
+<?php // Do not delete these lines
+	if (isset($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
+		die ('Please do not load this page directly. Thanks!');
+
+	if (!empty($post->post_password)) { // if there's a password
+		if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
+			?>
+
+			<p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.', 'kubrick'); ?></p>
+
+			<?php
+			return;
+		}
+	}
+
+	/* This variable is for alternating comment background */
+	$oddcomment = 'class="alt" ';
+?>
+
+<!-- You can start editing here. -->
+
+<?php if ($comments) : ?>
+	<h3 id="xpress_comments"><?php comments_number(__('No Responses', 'kubrick'), __('One Response', 'kubrick'), __('% Responses', 'kubrick'));?> <?php printf(__('to &#8220;%s&#8221;', 'kubrick'), the_title('', '', false)); ?></h3>
+	<?php if (function_exists('wp_list_comments')) : ?>
+		<ol class="xpress_commentlist">
+		<?php wp_list_comments();?>
+		<div class="navigation">
+			<div class="alignleft"><?php previous_comments_link() ?></div>
+			<div class="alignright"><?php next_comments_link() ?></div>
+		</div>
+		</ol>
+ 	<?php else : ?>
+		<ol class="xpress_commentlist">
+
+		<?php foreach ($comments as $comment) : ?>
+
+			<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
+				<?php if(function_exists('get_avatar')) : ?><?php echo get_avatar( $comment, 32 ); ?><?php endif; ?>
+				<?php printf(__('<cite>%s</cite> Says:', 'kubrick'), get_comment_author_link()); ?>
+				<?php if ($comment->comment_approved == '0') : ?>
+				<em><?php _e('Your comment is awaiting moderation.', 'kubrick'); ?></em>
+				<?php endif; ?>
+				<br />
+
+				<small class="xpress_commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php printf(__('%1$s at %2$s', 'kubrick'), get_comment_date(__('F jS, Y', 'kubrick')), get_comment_time()); ?></a> <?php edit_comment_link(__('edit', 'kubrick'),'&nbsp;&nbsp;',''); ?></small>
+
+				<?php comment_text() ?>
+
+			</li>
+
+		<?php
+			/* Changes every other comment to a different class */
+			$oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : '';
+		?>
+
+		<?php endforeach; /* end for each comment */ ?>
+
+		</ol>
+	<?php endif; ?>
+ <?php else : // this is displayed if there are no comments so far ?>
+
+	<?php if ('open' == $post->comment_status) : ?>
+		<!-- If comments are open, but there are no comments. -->
+
+	 <?php else : // comments are closed ?>
+		<!-- If comments are closed. -->
+		<p class="nocomments"><?php _e('Comments are closed.', 'kubrick'); ?></p>
+
+	<?php endif; ?>
+<?php endif; ?>
+
+
+<?php if ('open' == $post->comment_status) : ?>
+	<div id="respond">
+		<h3><?php _e('Leave a Reply', 'kubrick'); ?></h3>
+		<?php if ( function_exists('cancel_comment_reply_link') ): ?>
+			<div class="cancel-comment-reply">
+				<small><?php cancel_comment_reply_link(); ?></small>
+			</div>
+		<?php endif; ?>
+
+		<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
+			<p><?php printf(__('You must be <a href="%s">logged in</a> to post a comment.', 'kubrick'), get_option('siteurl') . '/wp-login.php?redirect_to=' . urlencode(get_permalink())); ?></p>
+		<?php else : ?>
+
+			<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="xpress_commentform">
+
+				<?php if ( $user_ID ) : ?>
+
+					<p><?php printf(__('Logged in as <a href="%1$s">%2$s</a>.', 'kubrick'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account', 'kubrick'); ?>"><?php _e('Log out &raquo;', 'kubrick'); ?></a></p>
+
+				<?php else : ?>
+
+					<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
+					<label for="author"><small><?php _e('Name', 'kubrick'); ?> <?php if ($req) _e("(required)", "kubrick"); ?></small></label></p>
+
+					<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
+					<label for="email"><small><?php _e('Mail (will not be published)', 'kubrick'); ?> <?php if ($req) _e("(required)", "kubrick"); ?></small></label></p>
+
+					<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
+					<label for="url"><small><?php _e('Website', 'kubrick'); ?></small></label></p>
+
+				<?php endif; ?>
+
+				<!--<p><small><?php printf(__('<strong>XHTML:</strong> You can use these tags: <code>%s</code>', 'kubrick'), allowed_tags()); ?></small></p>-->
+
+				<p><textarea name="comment" id="xpress_comment" cols="100%" rows="10" tabindex="4"></textarea></p>
+
+				<p><input name="submit" type="submit" id="xpress_submit" tabindex="5" value="<?php _e('Submit Comment', 'kubrick'); ?>" />
+				<?php if (function_exists('comment_id_fields')) : ?>
+					<?php comment_id_fields(); //@since 2.7.0 ?>  
+				<?php else : ?>
+					<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
+				<?php endif; ?>
+				</p>
+				<?php do_action('comment_form', $post->ID); ?>
+
+			</form>
+			
+		<?php endif; // If registration required and not logged in ?>
+	</div>
+<?php endif; // if you delete this the sky will fall on your head ?>
Index: /wp-content/themes/toemon/footer.php
===================================================================
--- /wp-content/themes/toemon/footer.php	(revision 1)
+++ /wp-content/themes/toemon/footer.php	(revision 1)
@@ -0,0 +1,17 @@
+<hr />
+<div id="xpress_footer">
+<!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
+	<p>
+		<?php printf(__('%1$s is proudly powered by %2$s', 'kubrick'), get_bloginfo('name'),the_credit()); ?>
+		<br /><?php printf(__('%1$s and %2$s.', 'kubrick'), '<a href="' . get_bloginfo('rss2_url') . '">' . __('Entries (RSS)', 'kubrick') . '</a>', '<a href="' . get_bloginfo('comments_rss2_url') . '">' . __('Comments (RSS)', 'kubrick') . '</a>'); ?>
+		<!-- <?php printf(__('%d queries. %s seconds.', 'kubrick'), get_num_queries(), timer_stop(0, 3)); ?> -->
+	</p>
+</div>
+</div>
+
+<!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ -->
+<?php /* "Just what do you think you're doing Dave?" */ ?>
+
+		<?php wp_footer(); ?>
+</body>
+</html>
Index: /wp-content/themes/toemon/functions.php
===================================================================
--- /wp-content/themes/toemon/functions.php	(revision 1)
+++ /wp-content/themes/toemon/functions.php	(revision 1)
@@ -0,0 +1,452 @@
+<?php
+if ( function_exists('register_sidebar') )
+    register_sidebar(array(
+        'before_widget' => '<li id="%1$s" class="widget %2$s">',
+        'after_widget' => '</li>',
+        'before_title' => '<h2 class="widgettitle">',
+        'after_title' => '</h2>',
+    ));
+
+load_theme_textdomain('kubrick');
+
+function the_credit()
+{
+	
+}
+
+function is_sidbar_disp()
+{
+	return true;
+}
+
+function kuro_previous_post_link($format='&laquo; %link', $link='%title', $in_same_cat = false, $excluded_categories = '')
+{
+	$pre_title = __('Previous Post'); // This text is included in the language file that exists in WordPress2.3 or the version after that.
+
+	ob_start();
+		previous_post_link($format,$link,$in_same_cat,$excluded_categories);
+		$ret = ob_get_contents();
+	ob_end_clean();
+	$ret= str_replace('">','" title="'. $pre_title . '">' , $ret);
+	echo $ret;
+}
+
+function kuro_next_post_link($format='%link &raquo;', $link='%title', $in_same_cat = false, $excluded_categories = '')
+{
+	$next_title = __('Next Post'); // This text is included in the language file that exists in WordPress2.3 or the version after that.  
+
+	ob_start();
+		next_post_link($format,$link,$in_same_cat,$excluded_categories);
+		$ret = ob_get_contents();
+	ob_end_clean();
+	$ret= str_replace('">','" title="'. $next_title . '">' , $ret);
+	echo $ret;
+}
+    
+function kubrick_head() {
+	$head = "<style type='text/css'>\n<!--";
+	$output = '';
+	if ( kubrick_header_image() ) {
+		$url =  kubrick_header_image_url() ;
+		$output .= "#header { background: url('$url') no-repeat bottom center; }\n";
+	}
+	if ( false !== ( $color = kubrick_header_color() ) ) {
+		$output .= "#headerimg h1 a, #headerimg h1 a:visited, #headerimg .description { color: $color; }\n";
+	}
+	if ( false !== ( $display = kubrick_header_display() ) ) {
+		$output .= "#headerimg { display: $display }\n";
+	}
+	$foot = "--></style>\n";
+	if ( '' != $output )
+		echo $head . $output . $foot;
+}
+
+add_action('wp_head', 'kubrick_head');
+
+function kubrick_header_image() {
+	return apply_filters('kubrick_header_image', get_option('kubrick_header_image'));
+}
+
+function kubrick_upper_color() {
+	if (strpos($url = kubrick_header_image_url(), 'header-img.php?') !== false) {
+		parse_str(substr($url, strpos($url, '?') + 1), $q);
+		return $q['upper'];
+	} else
+		return '69aee7';
+}
+
+function kubrick_lower_color() {
+	if (strpos($url = kubrick_header_image_url(), 'header-img.php?') !== false) {
+		parse_str(substr($url, strpos($url, '?') + 1), $q);
+		return $q['lower'];
+	} else
+		return '4180b6';
+}
+
+function kubrick_header_image_url() {
+	if ( $image = kubrick_header_image() )
+		$url = get_template_directory_uri() . '/images/' . $image;
+	else
+		$url = get_template_directory_uri() . '/images/kubrickheader.jpg';
+
+	return $url;
+}
+
+function kubrick_header_color() {
+	return apply_filters('kubrick_header_color', get_option('kubrick_header_color'));
+}
+
+function kubrick_header_color_string() {
+	$color = kubrick_header_color();
+	if ( false === $color )
+		return 'white';
+
+	return $color;
+}
+
+function kubrick_header_display() {
+	return apply_filters('kubrick_header_display', get_option('kubrick_header_display'));
+}
+
+function kubrick_header_display_string() {
+	$display = kubrick_header_display();
+	return $display ? $display : 'inline';
+}
+
+add_action('admin_menu', 'kubrick_add_theme_page');
+
+function kubrick_add_theme_page() {
+	if ( isset( $_GET['page'] ) && $_GET['page'] == basename(__FILE__) ) {
+		if ( isset( $_REQUEST['action'] ) && 'save' == $_REQUEST['action'] ) {
+			check_admin_referer('kubrick-header');
+			if ( isset($_REQUEST['njform']) ) {
+				if ( isset($_REQUEST['defaults']) ) {
+					delete_option('kubrick_header_image');
+					delete_option('kubrick_header_color');
+					delete_option('kubrick_header_display');
+				} else {
+					if ( '' == $_REQUEST['njfontcolor'] )
+						delete_option('kubrick_header_color');
+					else {
+						$fontcolor = preg_replace('/^.*(#[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['njfontcolor']);
+						update_option('kubrick_header_color', $fontcolor);
+					}
+					if ( preg_match('/[0-9A-F]{6}|[0-9A-F]{3}/i', $_REQUEST['njuppercolor'], $uc) && preg_match('/[0-9A-F]{6}|[0-9A-F]{3}/i', $_REQUEST['njlowercolor'], $lc) ) {
+						$uc = ( strlen($uc[0]) == 3 ) ? $uc[0]{0}.$uc[0]{0}.$uc[0]{1}.$uc[0]{1}.$uc[0]{2}.$uc[0]{2} : $uc[0];
+						$lc = ( strlen($lc[0]) == 3 ) ? $lc[0]{0}.$lc[0]{0}.$lc[0]{1}.$lc[0]{1}.$lc[0]{2}.$lc[0]{2} : $lc[0];
+						update_option('kubrick_header_image', "header-img.php?upper=$uc&lower=$lc");
+					}
+
+					if ( isset($_REQUEST['toggledisplay']) ) {
+						if ( false === get_option('kubrick_header_display') )
+							update_option('kubrick_header_display', 'none');
+						else
+							delete_option('kubrick_header_display');
+					}
+				}
+			} else {
+
+				if ( isset($_REQUEST['headerimage']) ) {
+					check_admin_referer('kubrick-header');
+					if ( '' == $_REQUEST['headerimage'] )
+						delete_option('kubrick_header_image');
+					else {
+						$headerimage = preg_replace('/^.*?(header-img.php\?upper=[0-9a-fA-F]{6}&lower=[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['headerimage']);
+						update_option('kubrick_header_image', $headerimage);
+					}
+				}
+
+				if ( isset($_REQUEST['fontcolor']) ) {
+					check_admin_referer('kubrick-header');
+					if ( '' == $_REQUEST['fontcolor'] )
+						delete_option('kubrick_header_color');
+					else {
+						$fontcolor = preg_replace('/^.*?(#[0-9a-fA-F]{6})?.*$/', '$1', $_REQUEST['fontcolor']);
+						update_option('kubrick_header_color', $fontcolor);
+					}
+				}
+
+				if ( isset($_REQUEST['fontdisplay']) ) {
+					check_admin_referer('kubrick-header');
+					if ( '' == $_REQUEST['fontdisplay'] || 'inline' == $_REQUEST['fontdisplay'] )
+						delete_option('kubrick_header_display');
+					else
+						update_option('kubrick_header_display', 'none');
+				}
+			}
+			//print_r($_REQUEST);
+			wp_redirect("themes.php?page=functions.php&saved=true");
+			die;
+		}
+		add_action('admin_head', 'kubrick_theme_page_head');
+	}
+	add_theme_page(__('Customize Header', 'kubrick'), __('Header Image and Color', 'kubrick'), 'edit_themes', basename(__FILE__), 'kubrick_theme_page');
+}
+
+function kubrick_theme_page_head() {
+?>
+<script type="text/javascript" src="../wp-includes/js/colorpicker.js"></script>
+<script type='text/javascript'>
+// <![CDATA[
+	function pickColor(color) {
+		ColorPicker_targetInput.value = color;
+		kUpdate(ColorPicker_targetInput.id);
+	}
+	function PopupWindow_populate(contents) {
+		contents += '<br /><p style="text-align:center;margin-top:0px;"><input type="button" class="button-secondary" value="<?php echo attribute_escape(__('Close Color Picker', 'kubrick')); ?>" onclick="cp.hidePopup(\'prettyplease\')"></input></p>';
+		this.contents = contents;
+		this.populated = false;
+	}
+	function PopupWindow_hidePopup(magicword) {
+		if ( magicword != 'prettyplease' )
+			return false;
+		if (this.divName != null) {
+			if (this.use_gebi) {
+				document.getElementById(this.divName).style.visibility = "hidden";
+			}
+			else if (this.use_css) {
+				document.all[this.divName].style.visibility = "hidden";
+			}
+			else if (this.use_layers) {
+				document.layers[this.divName].visibility = "hidden";
+			}
+		}
+		else {
+			if (this.popupWindow && !this.popupWindow.closed) {
+				this.popupWindow.close();
+				this.popupWindow = null;
+			}
+		}
+		return false;
+	}
+	function colorSelect(t,p) {
+		if ( cp.p == p && document.getElementById(cp.divName).style.visibility != "hidden" )
+			cp.hidePopup('prettyplease');
+		else {
+			cp.p = p;
+			cp.select(t,p);
+		}
+	}
+	function PopupWindow_setSize(width,height) {
+		this.width = 162;
+		this.height = 210;
+	}
+
+	var cp = new ColorPicker();
+	function advUpdate(val, obj) {
+		document.getElementById(obj).value = val;
+		kUpdate(obj);
+	}
+	function kUpdate(oid) {
+		if ( 'uppercolor' == oid || 'lowercolor' == oid ) {
+			uc = document.getElementById('uppercolor').value.replace('#', '');
+			lc = document.getElementById('lowercolor').value.replace('#', '');
+			hi = document.getElementById('headerimage');
+			hi.value = 'header-img.php?upper='+uc+'&lower='+lc;
+			document.getElementById('header').style.background = 'url("<?php echo get_template_directory_uri(); ?>/images/'+hi.value+'") center no-repeat';
+			document.getElementById('advuppercolor').value = '#'+uc;
+			document.getElementById('advlowercolor').value = '#'+lc;
+		}
+		if ( 'fontcolor' == oid ) {
+			document.getElementById('header').style.color = document.getElementById('fontcolor').value;
+			document.getElementById('advfontcolor').value = document.getElementById('fontcolor').value;
+		}
+		if ( 'fontdisplay' == oid ) {
+			document.getElementById('headerimg').style.display = document.getElementById('fontdisplay').value;
+		}
+	}
+	function toggleDisplay() {
+		td = document.getElementById('fontdisplay');
+		td.value = ( td.value == 'none' ) ? 'inline' : 'none';
+		kUpdate('fontdisplay');
+	}
+	function toggleAdvanced() {
+		a = document.getElementById('jsAdvanced');
+		if ( a.style.display == 'none' )
+			a.style.display = 'block';
+		else
+			a.style.display = 'none';
+	}
+	function kDefaults() {
+		document.getElementById('headerimage').value = '';
+		document.getElementById('advuppercolor').value = document.getElementById('uppercolor').value = '#69aee7';
+		document.getElementById('advlowercolor').value = document.getElementById('lowercolor').value = '#4180b6';
+		document.getElementById('header').style.background = 'url("<?php echo get_template_directory_uri(); ?>/images/kubrickheader.jpg") center no-repeat';
+		document.getElementById('header').style.color = '#FFFFFF';
+		document.getElementById('advfontcolor').value = document.getElementById('fontcolor').value = '';
+		document.getElementById('fontdisplay').value = 'inline';
+		document.getElementById('headerimg').style.display = document.getElementById('fontdisplay').value;
+	}
+	function kRevert() {
+		document.getElementById('headerimage').value = '<?php echo js_escape(kubrick_header_image()); ?>';
+		document.getElementById('advuppercolor').value = document.getElementById('uppercolor').value = '#<?php echo js_escape(kubrick_upper_color()); ?>';
+		document.getElementById('advlowercolor').value = document.getElementById('lowercolor').value = '#<?php echo js_escape(kubrick_lower_color()); ?>';
+		document.getElementById('header').style.background = 'url("<?php echo js_escape(kubrick_header_image_url()); ?>") center no-repeat';
+		document.getElementById('header').style.color = '';
+		document.getElementById('advfontcolor').value = document.getElementById('fontcolor').value = '<?php echo js_escape(kubrick_header_color_string()); ?>';
+		document.getElementById('fontdisplay').value = '<?php echo js_escape(kubrick_header_display_string()); ?>';
+		document.getElementById('headerimg').style.display = document.getElementById('fontdisplay').value;
+	}
+	function kInit() {
+		document.getElementById('jsForm').style.display = 'block';
+		document.getElementById('nonJsForm').style.display = 'none';
+	}
+	addLoadEvent(kInit);
+// ]]>
+</script>
+<style type='text/css'>
+	#headwrap {
+		text-align: center;
+	}
+	#kubrick-header {
+		font-size: 80%;
+	}
+	#kubrick-header .hibrowser {
+		width: 780px;
+		height: 260px;
+		overflow: scroll;
+	}
+	#kubrick-header #hitarget {
+		display: none;
+	}
+	#kubrick-header #header h1 {
+		font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
+		font-weight: bold;
+		font-size: 4em;
+		text-align: center;
+		padding-top: 70px;
+		margin: 0;
+	}
+
+	#kubrick-header #header .description {
+		font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
+		font-size: 1.2em;
+		text-align: center;
+	}
+	#kubrick-header #header {
+		text-decoration: none;
+		color: <?php echo kubrick_header_color_string(); ?>;
+		padding: 0;
+		margin: 0;
+		height: 200px;
+		text-align: center;
+		background: url('<?php echo kubrick_header_image_url(); ?>') center no-repeat;
+	}
+	#kubrick-header #headerimg {
+		margin: 0;
+		height: 200px;
+		width: 100%;
+		display: <?php echo kubrick_header_display_string(); ?>;
+	}
+	#jsForm {
+		display: none;
+		text-align: center;
+	}
+	#jsForm input.submit, #jsForm input.button, #jsAdvanced input.button {
+		padding: 0px;
+		margin: 0px;
+	}
+	#advanced {
+		text-align: center;
+		width: 620px;
+	}
+	html>body #advanced {
+		text-align: center;
+		position: relative;
+		left: 50%;
+		margin-left: -380px;
+	}
+	#jsAdvanced {
+		text-align: right;
+	}
+	#nonJsForm {
+		position: relative;
+		text-align: left;
+		margin-left: -370px;
+		left: 50%;
+	}
+	#nonJsForm label {
+		padding-top: 6px;
+		padding-right: 5px;
+		float: left;
+		width: 100px;
+		text-align: right;
+	}
+	.defbutton {
+		font-weight: bold;
+	}
+	.zerosize {
+		width: 0px;
+		height: 0px;
+		overflow: hidden;
+	}
+	#colorPickerDiv a, #colorPickerDiv a:hover {
+		padding: 1px;
+		text-decoration: none;
+		border-bottom: 0px;
+	}
+</style>
+<?php
+}
+
+function kubrick_theme_page() {
+	if ( isset( $_REQUEST['saved'] ) ) echo '<div id="message" class="updated fade"><p><strong>'.__('Options saved.', 'kubrick').'</strong></p></div>';
+?>
+<div class='wrap'>
+	<div id="kubrick-header">
+	<h2><?php _e('Header Image and Color', 'kubrick'); ?></h2>
+		<div id="headwrap">
+			<div id="header">
+				<div id="headerimg">
+					<h1><?php bloginfo('name'); ?></h1>
+					<div class="description"><?php bloginfo('description'); ?></div>
+				</div>
+			</div>
+		</div>
+		<br />
+		<div id="nonJsForm">
+			<form method="post" action="">
+				<?php wp_nonce_field('kubrick-header'); ?>
+				<div class="zerosize"><input type="submit" name="defaultsubmit" value="<?php echo attribute_escape(__('Save', 'kubrick')); ?>" /></div>
+					<label for="njfontcolor"><?php _e('Font Color:', 'kubrick'); ?></label><input type="text" name="njfontcolor" id="njfontcolor" value="<?php echo attribute_escape(kubrick_header_color()); ?>" /> <?php printf(__('Any CSS color (%s or %s or %s)', 'kubrick'), '<code>red</code>', '<code>#FF0000</code>', '<code>rgb(255, 0, 0)</code>'); ?><br />
+					<label for="njuppercolor"><?php _e('Upper Color:', 'kubrick'); ?></label><input type="text" name="njuppercolor" id="njuppercolor" value="#<?php echo attribute_escape(kubrick_upper_color()); ?>" /> <?php printf(__('HEX only (%s or %s)', 'kubrick'), '<code>#FF0000</code>', '<code>#F00</code>'); ?><br />
+				<label for="njlowercolor"><?php _e('Lower Color:', 'kubrick'); ?></label><input type="text" name="njlowercolor" id="njlowercolor" value="#<?php echo attribute_escape(kubrick_lower_color()); ?>" /> <?php printf(__('HEX only (%s or %s)', 'kubrick'), '<code>#FF0000</code>', '<code>#F00</code>'); ?><br />
+				<input type="hidden" name="hi" id="hi" value="<?php echo attribute_escape(kubrick_header_image()); ?>" />
+				<input type="submit" name="toggledisplay" id="toggledisplay" value="<?php echo attribute_escape(__('Toggle Text', 'kubrick')); ?>" />
+				<input type="submit" name="defaults" value="<?php echo attribute_escape(__('Use Defaults', 'kubrick')); ?>" />
+				<input type="submit" class="defbutton" name="submitform" value="&nbsp;&nbsp;<?php _e('Save', 'kubrick'); ?>&nbsp;&nbsp;" />
+				<input type="hidden" name="action" value="save" />
+				<input type="hidden" name="njform" value="true" />
+			</form>
+		</div>
+		<div id="jsForm">
+			<form style="display:inline;" method="post" name="hicolor" id="hicolor" action="<?php echo attribute_escape($_SERVER['REQUEST_URI']); ?>">
+				<?php wp_nonce_field('kubrick-header'); ?>
+	<input type="button" class="button-secondary" onclick="tgt=document.getElementById('fontcolor');colorSelect(tgt,'pick1');return false;" name="pick1" id="pick1" value="<?php echo attribute_escape(__('Font Color', 'kubrick')); ?>"></input>
+		<input type="button" class="button-secondary" onclick="tgt=document.getElementById('uppercolor');colorSelect(tgt,'pick2');return false;" name="pick2" id="pick2" value="<?php echo attribute_escape(__('Upper Color', 'kubrick')); ?>"></input>
+		<input type="button" class="button-secondary" onclick="tgt=document.getElementById('lowercolor');colorSelect(tgt,'pick3');return false;" name="pick3" id="pick3" value="<?php echo attribute_escape(__('Lower Color', 'kubrick')); ?>"></input>
+				<input type="button" class="button-secondary" name="revert" value="<?php echo attribute_escape(__('Revert', 'kubrick')); ?>" onclick="kRevert()" />
+				<input type="button" class="button-secondary" value="<?php echo attribute_escape(__('Advanced', 'kubrick')); ?>" onclick="toggleAdvanced()" />
+				<input type="hidden" name="action" value="save" />
+				<input type="hidden" name="fontdisplay" id="fontdisplay" value="<?php echo attribute_escape(kubrick_header_display()); ?>" />
+				<input type="hidden" name="fontcolor" id="fontcolor" value="<?php echo attribute_escape(kubrick_header_color()); ?>" />
+				<input type="hidden" name="uppercolor" id="uppercolor" value="<?php echo attribute_escape(kubrick_upper_color()); ?>" />
+				<input type="hidden" name="lowercolor" id="lowercolor" value="<?php echo attribute_escape(kubrick_lower_color()); ?>" />
+				<input type="hidden" name="headerimage" id="headerimage" value="<?php echo attribute_escape(kubrick_header_image()); ?>" />
+				<p class="submit"><input type="submit" name="submitform" class="defbutton" value="<?php echo attribute_escape(__('Update Header &raquo;', 'kubrick')); ?>" onclick="cp.hidePopup('prettyplease')" /></p>
+			</form>
+			<div id="colorPickerDiv" style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;visibility:hidden;"> </div>
+			<div id="advanced">
+				<form id="jsAdvanced" style="display:none;" action="">
+					<?php wp_nonce_field('kubrick-header'); ?>
+					<label for="advfontcolor"><?php _e('Font Color (CSS):', 'kubrick'); ?> </label><input type="text" id="advfontcolor" onchange="advUpdate(this.value, 'fontcolor')" value="<?php echo attribute_escape(kubrick_header_color()); ?>" /><br />
+					<label for="advuppercolor"><?php _e('Upper Color (HEX):');?> </label><input type="text" id="advuppercolor" onchange="advUpdate(this.value, 'uppercolor')" value="#<?php echo attribute_escape(kubrick_upper_color()); ?>" /><br />
+					<label for="advlowercolor"><?php _e('Lower Color (HEX):'); ?> </label><input type="text" id="advlowercolor" onchange="advUpdate(this.value, 'lowercolor')" value="#<?php echo attribute_escape(kubrick_lower_color()); ?>" /><br />
+					<input type="button" class="button-secondary" name="default" value="<?php echo attribute_escape(__('Select Default Colors', 'kubrick')); ?>" onclick="kDefaults()" /><br />
+					<input type="button" class="button-secondary" onclick="toggleDisplay();return false;" name="pick" id="pick" value="<?php echo attribute_escape(__('Toggle Text Display', 'kubrick')); ?>"></input><br />
+				</form>
+			</div>
+		</div>
+	</div>
+</div>
+<?php } ?>
Index: /wp-content/themes/toemon/header.php
===================================================================
--- /wp-content/themes/toemon/header.php	(revision 1)
+++ /wp-content/themes/toemon/header.php	(revision 1)
@@ -0,0 +1,28 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" <?php if (function_exists('language_attributes')) { language_attributes(); }?>>
+
+<head profile="http://gmpg.org/xfn/11">
+<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
+
+<title><?php bloginfo('name');
+if ( is_single() ) {
+	_e('&raquo; Blog Archive', 'kubrick');
+}
+wp_title(); ?></title>
+
+<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
+<link rel="alternate" type="application/rss+xml" title="<?php printf(__('%s RSS Feed', 'kubrick'), get_bloginfo('name')); ?>" href="<?php bloginfo('rss2_url'); ?>" />
+<link rel="alternate" type="application/atom+xml" title="<?php printf(__('%s Atom Feed', 'kubrick'), get_bloginfo('name')); ?>" href="<?php bloginfo('atom_url'); ?>" />
+<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
+<?php
+// comment-replay.js load  @since 2.7.0
+if (function_exists('wp_enqueue_script')) { // not function Ver2.0
+	if ( is_singular() ){  //not function Ver2.0
+		wp_enqueue_script( 'comment-reply' );
+	}
+}
+?>
+<?php wp_head(); ?>
+</head>
+<body>
+<div id="xpress_page">
Index: /wp-content/themes/toemon/image.php
===================================================================
--- /wp-content/themes/toemon/image.php	(revision 1)
+++ /wp-content/themes/toemon/image.php	(revision 1)
@@ -0,0 +1,64 @@
+<?php get_header(); ?>
+
+	<div id="xpress_content" class="widecolumn">
+
+  <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+
+		<div class="post" id="post-<?php the_ID(); ?>">
+			<h2><a href="<?php echo get_permalink($post->post_parent); ?>" rev="attachment"><?php echo get_the_title($post->post_parent); ?></a> &raquo; <?php the_title(); ?></h2>
+			<div class="entry">
+				<p class="attachment"><a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'medium' ); ?></a></p> 
+				<div class="caption"><?php if ( !empty($post->post_excerpt) ) the_excerpt(); // this is the "caption" ?></div>
+
+				<?php the_content('<p class="serif">' . __('Read the rest of this entry &raquo;', 'kubrick') . '</p>'); ?>
+
+				<?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'kubrick') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
+
+				<div class="navigation">
+					<div class="alignleft"><?php previous_image_link() ?></div>
+					<div class="alignright"><?php next_image_link() ?></div>
+				</div>
+				<br class="clear" />
+
+				<p class="postmetadata alt">
+					<small>
+						<?php printf(__('This entry was posted on %1$s at %2$s and is filed under %3$s.', 'kubrick'),  get_the_time(__('l, F jS, Y', 'kubrick')), get_the_time(), get_the_category_list(', ')); ?>
+						<?php the_taxonomies(); ?>
+						<?php printf(__("You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed.", "kubrick"), get_post_comments_feed_link()); ?> 
+
+						<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
+							// Both Comments and Pings are open ?>
+							<?php printf(__('You can <a href="#respond">leave a response</a>, or <a href="%s" rel="trackback">trackback</a> from your own site.', 'kubrick'), trackback_url(false)); ?>
+
+						<?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
+							// Only Pings are Open ?>
+							<?php printf(__('Responses are currently closed, but you can <a href="%s" rel="trackback">trackback</a> from your own site.', 'kubrick'), trackback_url(false)); ?>
+
+						<?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
+							// Comments are open, Pings are not ?>
+							<?php _e('You can skip to the end and leave a response. Pinging is currently not allowed.', 'kubrick'); ?>
+
+						<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
+							// Neither Comments, nor Pings are open ?>
+							<?php _e('Both comments and pings are currently closed.', 'kubrick'); ?>
+
+						<?php } edit_post_link(__('Edit this entry.', 'kubrick'),'',''); ?>
+
+					</small>
+				</p>
+
+			</div>
+
+		</div>
+
+	<?php comments_template(); ?>
+
+	<?php endwhile; else: ?>
+
+		<p><?php _e('Sorry, no posts matched your criteria.', 'kubrick'); ?></p>
+
+<?php endif; ?>
+
+	</div>
+
+<?php get_footer(); ?>
Index: /wp-content/themes/toemon/images/header-img.php
===================================================================
--- /wp-content/themes/toemon/images/header-img.php	(revision 1)
+++ /wp-content/themes/toemon/images/header-img.php	(revision 1)
@@ -0,0 +1,77 @@
+<?php
+
+$img = 'kubrickheader.jpg';
+
+// If we don't have image processing support, redirect.
+if ( ! function_exists('imagecreatefromjpeg') )
+	die(header("Location: kubrickheader.jpg"));
+
+// Assign and validate the color values
+$default = false;
+$vars = array('upper'=>array('r1', 'g1', 'b1'), 'lower'=>array('r2', 'g2', 'b2'));
+foreach ( $vars as $var => $subvars ) {
+	if ( isset($_GET[$var]) ) {
+		foreach ( $subvars as $index => $subvar ) {
+			$length = strlen($_GET[$var]) / 3;
+			$v = substr($_GET[$var], $index * $length, $length);
+			if ( $length == 1 ) $v = '' . $v . $v;
+			$$subvar = hexdec( $v );
+			if ( $$subvar < 0 || $$subvar > 255 )
+				$default = true;
+		}
+	} else {
+		$default = true;
+	}
+}
+
+if ( $default )
+	list ( $r1, $g1, $b1, $r2, $g2, $b2 ) = array ( 105, 174, 231, 65, 128, 182 );
+
+// Create the image
+$im = imagecreatefromjpeg($img);
+
+// Get the background color, define the rectangle height
+$white = imagecolorat( $im, 15, 15 );
+$h = 182;
+
+// Define the boundaries of the rounded edges ( y => array ( x1, x2 ) )
+$corners = array(
+	0 => array ( 25, 734 ),
+	1 => array ( 23, 736 ),
+	2 => array ( 22, 737 ),
+	3 => array ( 21, 738 ),
+	4 => array ( 21, 738 ),
+	177 => array ( 21, 738 ),
+	178 => array ( 21, 738 ),
+	179 => array ( 22, 737 ),
+	180 => array ( 23, 736 ),
+	181 => array ( 25, 734 ),
+	);
+
+// Blank out the blue thing
+for ( $i = 0; $i < $h; $i++ ) {
+	$x1 = 19;
+	$x2 = 740;
+	imageline( $im, $x1, 18 + $i, $x2, 18 + $i, $white );
+}
+
+// Draw a new color thing
+for ( $i = 0; $i < $h; $i++ ) {
+	$x1 = 20;
+	$x2 = 739;
+	$r = ( $r2 - $r1 != 0 ) ? $r1 + ( $r2 - $r1 ) * ( $i / $h ) : $r1;
+	$g = ( $g2 - $g1 != 0 ) ? $g1 + ( $g2 - $g1 ) * ( $i / $h ) : $g1;
+	$b = ( $b2 - $b1 != 0 ) ? $b1 + ( $b2 - $b1 ) * ( $i / $h ) : $b1;
+	$color = imagecolorallocate( $im, $r, $g, $b );
+	if ( array_key_exists($i, $corners) ) {
+		imageline( $im, $x1, 18 + $i, $x2, 18 + $i, $white );
+		list ( $x1, $x2 ) = $corners[$i];
+	}
+	imageline( $im, $x1, 18 + $i, $x2, 18 + $i, $color );
+}
+
+//die;
+header("Content-Type: image/jpeg");
+imagejpeg($im, '', 92);
+imagedestroy($im);
+?>
Index: /wp-content/themes/toemon/index.php
===================================================================
--- /wp-content/themes/toemon/index.php	(revision 1)
+++ /wp-content/themes/toemon/index.php	(revision 1)
@@ -0,0 +1,62 @@
+<?php get_header(); ?>
+
+       <div id="xpress_wrap">
+	   
+	<?php if(is_sidbar_disp()) : ?>
+	   
+		<div id="xpress_content" class="narrowcolumn">
+		
+	<?php else : ?>
+	
+		<div id="xpress_content" class="narrowcolumn_nonside">
+		
+	<?php endif; ?>
+
+    <div id="xpress_header">
+    	<div id="xpress_headerimg">
+    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
+    		<div class="description"><?php bloginfo('description'); ?></div>
+    	</div>
+    </div>
+
+	<?php if (have_posts()) : ?>
+
+		<?php while (have_posts()) : the_post(); ?>
+
+			<div class="post" id="post-<?php the_ID(); ?>">
+				<?php if (function_exists('hotDates')) { hotDates(); }?>
+				<h2><a href="<?php the_permalink() ?>" rel="bookmark" <?php if(function_exists('the_title_attribute')) : ?> title=' <?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>'<?php endif; ?>><?php the_title(); ?></a></h2>
+				<small><?php the_time(__('F jS, Y', 'kubrick')) ?> <!-- by <?php the_author() ?> --></small>
+
+				<div class="entry">
+					<?php the_content(__('Read the rest of this entry &raquo;', 'kubrick')); ?>
+				</div>
+
+				<p class="postmetadata"><!-- Post author start --><?php/* _e('Posted:', 'kubrick'); echo '&nbsp;'; the_author_posts_link(); echo '<br />' ; */?><!-- Post author end --><?php if(function_exists('the_tags')) : ?><?php the_tags(__('Tags:', 'kubrick') . ' ', ', ', '<br />'); ?><?php endif; ?><?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?>  <?php comments_popup_link(__('No Comments &#187;', 'kubrick'), __('1 Comment &#187;', 'kubrick'), __('% Comments &#187;', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?></p>
+			</div>
+
+		<?php endwhile; ?>
+		<?php if(function_exists('wp_pagenavi')) : ?>
+			<div class="xpress_pagenavi">
+				<?php wp_pagenavi(); ?>
+			</div>
+		<?php else : ?>
+			<div class="xpress_index_navigation">
+				<div class="alignleft"><?php next_posts_link(__('&laquo; Older Entries', 'kubrick')) ?></div>
+				<div class="alignright"><?php previous_posts_link(__('Newer Entries &raquo;', 'kubrick')) ?></div>
+			</div>
+		<?php endif; ?>
+	<?php else : ?>
+
+		<h2 class="center"><?php _e('Not Found', 'kubrick'); ?></h2>
+		<p class="center"><?php _e('Sorry, but you are looking for something that isn&#8217;t here.', 'kubrick'); ?></p>
+		<?php include (get_template_directory() . "/searchform.php"); ?>
+
+	<?php endif; ?>
+
+	</div>
+       </div>
+
+<?php get_sidebar(); ?>
+
+<?php get_footer(); ?>
Index: /wp-content/themes/toemon/ja.po
===================================================================
--- /wp-content/themes/toemon/ja.po	(revision 1)
+++ /wp-content/themes/toemon/ja.po	(revision 1)
@@ -0,0 +1,662 @@
+# WordPress 用日本語リソース (UTF-8) 
+# Japanese (UTF-8) translation for WordPress
+#
+# Copyright (c) 2005-2008
+# このファイルは WordPress 本体と同じライセンスのもと配布されています。
+# This file is distributed under the same license as the WordPress package.
+#
+# WordPress 日本語版作成チーム / WP ja translation team
+# <http://groups.google.com/group/wp-ja-pkg/web/members>
+#
+#  誤字脱字誤訳、あるいはよりよい訳などありましたら以下までぜひお知らせください。
+#  また、翻訳、校正、コミットをお手伝いしていただける方も随時募集中です。
+#  連絡先 / Contact: wpja.team@gmail.com (件名か内容に「日本語リソース」と入れてください)
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: WordPress 2011 to 262\n"
+"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
+"POT-Creation-Date: 2008-08-15 21:16+0900\n"
+"PO-Revision-Date: 2008-10-03 13:22+0900\n"
+"Last-Translator: KURO <info@xoops-fan.com>\n"
+"Language-Team: wp-ja <wpja.team@gmail.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Japanese\n"
+"X-Poedit-Country: JAPAN\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: /Users/Shared/workshop\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-SearchPath-0: wp-i18n/theme/branches/2.6\n"
+
+#: 404.php:5
+msgid "Error 404 - Not Found"
+msgstr "エラー 404 - 見つかりませんでした"
+
+#: archive.php:9
+#, php-format
+msgid "Archive for the &#8216;%s&#8217; Category"
+msgstr "&#8216;%s&#8217; カテゴリーのアーカイブ"
+
+#: archive.php:11
+#, php-format
+msgid "Posts Tagged &#8216;%s&#8217;"
+msgstr "&#8216;%s&#8217; タグのついている投稿"
+
+#: archive.php:13
+#, php-format
+msgid "Archive for %s|Daily archive page"
+msgstr "%s のアーカイブ|日別アーカイブのページ"
+
+#: archive.php:13
+#: comments.php:37
+#: index.php:11
+msgid "F jS, Y"
+msgstr "Y 年 n 月 j 日"
+
+#: archive.php:15
+#, php-format
+msgid "Archive for %s|Monthly archive page"
+msgstr "%s のアーカイブ|月別アーカイブのページ"
+
+#: archive.php:15
+#: sidebar.php:27
+msgid "F, Y"
+msgstr "Y 年 n 月"
+
+#: archive.php:17
+#, php-format
+msgid "Archive for %s|Yearly archive page"
+msgstr "%s のアーカイブ|年別アーカイブのページ"
+
+#: archive.php:17
+msgid "Y"
+msgstr "Y 年"
+
+#: archive.php:19
+msgid "Author Archive"
+msgstr "投稿者のアーカイブ"
+
+#: archive.php:21
+msgid "Blog Archives"
+msgstr "ブログアーカイブ"
+
+#: archive.php:26
+#: archive.php:46
+#: index.php:23
+#: search.php:10
+#: search.php:27
+msgid "&laquo; Older Entries"
+msgstr "&laquo; 前ページへ"
+
+#: archive.php:27
+#: archive.php:47
+#: index.php:24
+#: search.php:11
+#: search.php:28
+msgid "Newer Entries &raquo;"
+msgstr "次ページへ &raquo;"
+
+#: archive.php:32
+#: index.php:10
+#: search.php:18
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "%s のパーマリンク"
+
+#: archive.php:33
+#: image.php:25
+#: sidebar.php:24
+#: single.php:27
+msgid "l, F jS, Y"
+msgstr "Y 年 n 月 j 日 l"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+#: single.php:19
+msgid "Tags:"
+msgstr "タグ:"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+#, php-format
+msgid "Posted in %s"
+msgstr "カテゴリー: %s"
+
+#: index.php:28
+#, php-format
+msgid "Posted:"
+msgstr "投稿者:"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "Edit"
+msgstr "編集"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "No Comments &#187;"
+msgstr "コメントはまだありません &#187;"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "1 Comment &#187;"
+msgstr "1 件のコメント &#187;"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "% Comments &#187;"
+msgstr "% 件のコメント &#187;"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "Comments Closed"
+msgstr "コメントは受け付けていません。"
+
+#: archive.php:52
+#: index.php:29
+msgid "Not Found"
+msgstr "見つかりませんでした。"
+
+#: archives.php:13
+msgid "Archives by Month:"
+msgstr "月別のアーカイブ:"
+
+#: archives.php:18
+msgid "Archives by Subject:"
+msgstr "カテゴリー別アーカイブ:"
+
+#: image.php:13
+#: index.php:14
+#: single.php:16
+msgid "Read the rest of this entry &raquo;"
+msgstr "この投稿の続きを読む &raquo;"
+
+#: image.php:15
+#: page.php:11
+#: single.php:18
+msgid "Pages:"
+msgstr "ページ:"
+
+#: single.php:27
+#, php-format
+msgid "This entry was posted %1$s on %2$s at %3$s and is filed under %4$s."
+msgstr "この投稿は %1$s %2$s %3$s に %4$s カテゴリーに公開されました。"
+
+#: image.php:27
+#: single.php:28
+#, php-format
+msgid "You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed."
+msgstr "この投稿へのコメントは <a href='%s'>RSS 2.0</a> フィードで購読することができます。"
+
+#: KURO Add
+#, php-format
+msgid "You can follow any responses to this entry through the"
+msgstr "この投稿へのコメントは"
+
+#: KURO Add
+#, php-format
+msgid "feed."
+msgstr "フィードで購読することができます。"
+
+#: image.php:31
+#: single.php:32
+#, php-format
+msgid "You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
+msgstr "<a href=\"#respond\">コメントを残すか</a>、ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>することができます。"
+
+#: image.php:35
+#: single.php:36
+#, php-format
+msgid "Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
+msgstr "現在コメントは受け付けておりませんが、ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>を送ることはできます。"
+
+#: image.php:39
+#: single.php:40
+msgid "You can skip to the end and leave a response. Pinging is currently not allowed."
+msgstr "このページの一番下でコメントを残すことができます。トラックバック / ピンバックは現在受け付けていません。"
+
+#: image.php:43
+#: single.php:44
+msgid "Both comments and pings are currently closed."
+msgstr "現在コメント、トラックバックともに受け付けておりません。"
+
+#: image.php:45
+#: page.php:16
+msgid "Edit this entry."
+msgstr "この投稿を編集する。"
+
+#: comments.php:9
+msgid "This post is password protected. Enter the password to view comments."
+msgstr "この投稿はパスワードで保護されています。コメントを閲覧するにはパスワードを入力してください。"
+
+#: comments.php:23
+msgid "No Responses"
+msgstr "コメント / トラックバックはありません"
+
+#: comments.php:23
+msgid "One Response"
+msgstr "コメント / トラックバック 1 件"
+
+#: comments.php:23
+msgid "% Responses"
+msgstr "コメント / トラックバック % 件"
+
+#: comments.php:23
+#, php-format
+msgid "to &#8220;%s&#8221;"
+msgstr "<!-- to &#8220;%s&#8221; -->"
+
+#: comments.php:31
+#, php-format
+msgid "<cite>%s</cite> Says:"
+msgstr "<cite>%s</cite> より: "
+
+#: comments.php:33
+msgid "Your comment is awaiting moderation."
+msgstr "コメントは管理者の承認待ちです。"
+
+#: comments.php:37
+#, php-format
+msgid "%1$s at %2$s"
+msgstr "%1$s %2$s"
+
+#: comments.php:37
+msgid "edit"
+msgstr "編集"
+
+#: comments.php:59
+msgid "Comments are closed."
+msgstr "コメントは受け付けていません。"
+
+#: comments.php:67
+msgid "Leave a Reply"
+msgstr "コメントをどうぞ"
+
+#: comments.php:70
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。"
+
+#: comments.php:77
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。"
+
+#: comments.php:77
+msgid "Log out of this account"
+msgstr "このアカウントからログアウト"
+
+#: comments.php:77
+msgid "Log out &raquo;"
+msgstr "ログアウト &raquo;"
+
+#: comments.php:82
+#: comments-popup.php:64
+msgid "Name"
+msgstr "お名前"
+
+#: comments.php:82
+#: comments.php:85
+msgid "(required)"
+msgstr " (必須)"
+
+#: comments.php:85
+msgid "Mail (will not be published)"
+msgstr "メールアドレス (公開されません)"
+
+#: comments.php:88
+msgid "Website"
+msgstr "ウェブサイト"
+
+#: comments.php:92
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>"
+
+#: comments.php:96
+msgid "Submit Comment"
+msgstr "コメント送信"
+
+#: comments-popup.php:9
+#, php-format
+msgid "%1$s - Comments on %2$s"
+msgstr "%1$s - %2$s へのコメント"
+
+#: comments-popup.php:22
+msgid "Comments"
+msgstr "コメント"
+
+#: comments-popup.php:24
+msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post."
+msgstr "このコメント欄の <abbr title=\"Really Simple Syndication\">RSS</abbr> フィード"
+
+#: comments-popup.php:27
+#, php-format
+msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>"
+msgstr "この投稿へのトラックバック <acronym title=\"Universal Resource Locator\">URL</acronym>: <em>%s</em>"
+
+#: comments-popup.php:45
+msgid "Comment"
+msgstr "コメント"
+
+#: comments-popup.php:45
+msgid "Trackback"
+msgstr "トラックバック"
+
+#: comments-popup.php:45
+msgid "Pingback"
+msgstr "ピンバック"
+
+#: comments-popup.php:45
+#, php-format
+msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>"
+msgstr "&#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>: %1$s より"
+
+#: comments-popup.php:51
+msgid "No comments yet."
+msgstr "コメントはまだありません。"
+
+#: comments-popup.php:55
+msgid "Leave a comment"
+msgstr "コメントをどうぞ"
+
+#: comments-popup.php:56
+#, php-format
+msgid "Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: <code>%s</code>"
+msgstr "改行と段落タグは自動で挿入されます。メールアドレスは表示されません。利用可能な <acronym title=\"Hypertext Markup Language\">HTML</acronym> タグ: <code>%s</code>"
+
+#: comments-popup.php:60
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out &raquo;</a>"
+msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。<a href=\"%3$s\" title=\"このアカウントからログアウトする\">ログアウト &raquo;</a>"
+
+#: comments-popup.php:71
+msgid "E-mail"
+msgstr "メールアドレス"
+
+#: comments-popup.php:76
+msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+
+#: comments-popup.php:81
+msgid "Your Comment"
+msgstr "コメント"
+
+#: comments-popup.php:87
+msgid "Say It!"
+msgstr "送信する !"
+
+#: comments-popup.php:92
+msgid "Sorry, the comment form is closed at this time."
+msgstr "コメントフォームは現在閉鎖中です。"
+
+#: comments-popup.php:97
+msgid "Close this window."
+msgstr "このウインドウを閉じる。"
+
+#: comments-popup.php:105
+#, php-format
+msgid "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+msgstr "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+
+#: footer.php:6
+#, php-format
+msgid "%1$s is proudly powered by %2$s"
+msgstr "%1$s is proudly powered by %2$s"
+
+#: footer.php:8
+#, php-format
+msgid "%1$s and %2$s."
+msgstr "%1$s と %2$s"
+
+#: footer.php:8
+msgid "Entries (RSS)"
+msgstr "投稿 (RSS)"
+
+#: footer.php:8
+msgid "Comments (RSS)"
+msgstr "コメント (RSS)"
+
+#: footer.php:9
+#, php-format
+msgid "%d queries. %s seconds."
+msgstr "%d 個のクエリと %s 秒を要しました。"
+
+#: functions.php:149
+msgid "Customize Header"
+msgstr "ヘッダーのカスタマイズ"
+
+#: functions.php:149
+#: functions.php:363
+msgid "Header Image and Color"
+msgstr "ヘッダーの背景と文字の色"
+
+#: functions.php:162
+msgid "Close Color Picker"
+msgstr "カラーピッカーを閉じる"
+
+#: functions.php:359
+msgid "Options saved."
+msgstr "設定を保存しました。"
+
+#: functions.php:376
+#: functions.php:383
+msgid "Save"
+msgstr "保存"
+
+#: functions.php:377
+msgid "Font Color:"
+msgstr "フォントの色:"
+
+#: functions.php:377
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr "CSS 色指定 (%s 、%s もしくは %s)"
+
+#: functions.php:378
+msgid "Upper Color:"
+msgstr "グラデーション上側の色:"
+
+#: functions.php:378
+#: functions.php:379
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr "16 進数のみ (%s もしくは %s)"
+
+#: functions.php:379
+msgid "Lower Color:"
+msgstr "グラデーション下側の色:"
+
+#: functions.php:381
+msgid "Toggle Text"
+msgstr "テキスト表示の切替え"
+
+#: functions.php:382
+msgid "Use Defaults"
+msgstr "デフォルト設定に戻す"
+
+#: functions.php:391
+msgid "Font Color"
+msgstr "フォントの色"
+
+#: functions.php:392
+msgid "Upper Color"
+msgstr "グラデーション上側の色"
+
+#: functions.php:393
+msgid "Lower Color"
+msgstr "グラデーション下側の色"
+
+#: functions.php:394
+msgid "Revert"
+msgstr "取り消し"
+
+#: functions.php:395
+msgid "Advanced"
+msgstr "詳細"
+
+#: functions.php:402
+msgid "Update Header &raquo;"
+msgstr "ヘッダーを更新 &raquo;"
+
+#: functions.php:408
+msgid "Font Color (CSS):"
+msgstr "フォントの色 (CSS):"
+
+#: functions.php:409
+msgid "Upper Color (HEX):"
+msgstr "グラデーション上側の色 (16 進数):"
+
+#: functions.php:410
+msgid "Lower Color (HEX):"
+msgstr "グラデーション下側の色 (16 進数):"
+
+#: functions.php:411
+msgid "Select Default Colors"
+msgstr "デフォルト設定に戻す"
+
+#: functions.php:412
+msgid "Toggle Text Display"
+msgstr "テキスト表示の切替え"
+
+#: header.php:9
+msgid "&raquo; Blog Archive"
+msgstr "&raquo; ブログアーカイブ"
+
+#: header.php:14
+#, php-format
+msgid "%s RSS Feed"
+msgstr "%s RSS フィード"
+
+#: header.php:15
+#, php-format
+msgid "%s Atom Feed"
+msgstr "%s Atom フィード"
+
+#: image.php:25
+#, php-format
+msgid "This entry was posted on %1$s at %2$s and is filed under %3$s."
+msgstr "この投稿は %1$s %2$s に %3$s カテゴリーに公開されました。"
+
+#: image.php:58
+#: single.php:58
+msgid "Sorry, no posts matched your criteria."
+msgstr "該当する投稿は見つかりませんでした。"
+
+#: index.php:30
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr "お探しの物はここにはありません。"
+
+#: links.php:11
+msgid "Links:"
+msgstr "リンク:"
+
+#: page.php:9
+msgid "Read the rest of this page &raquo;"
+msgstr "このページの続きを読む &raquo;"
+
+#: searchform.php:2
+msgid "Search for:"
+msgstr "検索:"
+
+#: searchform.php:4
+msgid "Search"
+msgstr "検索"
+
+#: search.php:7
+msgid "Search Results"
+msgstr "検索結果"
+
+#: search.php:33
+msgid "No posts found. Try a different search?"
+msgstr "見つかりませんでした。別の検索をしますか ?"
+
+#: sidebar.php:10
+msgid "Author"
+msgstr "作成者"
+
+#: sidebar.php:21
+#, php-format
+msgid "You are currently browsing the archives for the %s category."
+msgstr "%s カテゴリーのアーカイブを表示しています。"
+
+#: sidebar.php:24
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the day %3$s."
+msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s のアーカイブを表示しています。"
+
+#: sidebar.php:27
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %3$s."
+msgstr "<a href=\"%1$s/\">%2$s</a> の %3$s のアーカイブを閲覧中です。"
+
+#: sidebar.php:30
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the year %3$s."
+msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s 年のアーカイブを表示しています。"
+
+#: sidebar.php:33
+#, php-format
+msgid "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for <strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links."
+msgstr "<a href=\"%1$s/\">%2$s</a> のアーカイブ内で<strong>&#8216;%3$s&#8217;</strong>を探しました。お探しのものが見つからない場合は他のリンクを試してみてください。"
+
+#: sidebar.php:36
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
+msgstr "<a href=\"%1$s/\">%2$s</a> ブログのアーカイブを閲覧中です。"
+
+#: sidebar.php:42
+msgid "Pages"
+msgstr "ページ"
+
+#: sidebar.php:44
+msgid "Archives"
+msgstr "アーカイブ"
+
+#: sidebar.php:50
+msgid "Categories"
+msgstr "カテゴリー"
+
+#: sidebar.php:55
+msgid "Meta"
+msgstr "メタ情報"
+
+#: sidebar.php:59
+msgid "This page validates as XHTML 1.0 Transitional"
+msgstr "このページが XHTML 1.0 Transitional に準拠しているか確認する"
+
+#: sidebar.php:59
+msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+msgstr "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+
+#: sidebar.php:60
+msgid "XHTML Friends Network"
+msgstr "XHTML Friends Network"
+
+#: sidebar.php:60
+msgid "XFN"
+msgstr "XFN"
+
+#: sidebar.php:61
+msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+
+#: single.php:46
+msgid "Edit this entry"
+msgstr "この投稿を編集 "
+
+#~ msgid "Permanent Link: %s"
+#~ msgstr "パーマリンク: %s"
+#~ msgid "Sorry, no attachments matched your criteria."
+#~ msgstr "該当する添付ページは見つかりませんでした。"
+
Index: /wp-content/themes/toemon/ja_EUC.po
===================================================================
--- /wp-content/themes/toemon/ja_EUC.po	(revision 1)
+++ /wp-content/themes/toemon/ja_EUC.po	(revision 1)
@@ -0,0 +1,662 @@
+# WordPress ÍÑÆüËÜ¸ì¥ê¥½¡¼¥¹ (EUC-JP ) 
+# Japanese (EUC-JP translation for WordPress
+#
+# Copyright (c) 2005-2008
+# ¤³¤Î¥Õ¥¡¥¤¥ë¤Ï WordPress ËÜÂÎ¤ÈÆ±¤¸¥é¥¤¥»¥ó¥¹¤Î¤â¤ÈÇÛÉÛ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
+# This file is distributed under the same license as the WordPress package.
+#
+# WordPress ÆüËÜ¸ìÈÇºîÀ®¥Á¡¼¥à / WP ja translation team
+# <http://groups.google.com/group/wp-ja-pkg/web/members>
+#
+#  ¸í»úÃ¦»ú¸íÌõ¡¢¤¢¤ë¤¤¤Ï¤è¤ê¤è¤¤Ìõ¤Ê¤É¤¢¤ê¤Þ¤·¤¿¤é°Ê²¼¤Þ¤Ç¤¼¤Ò¤ªÃÎ¤é¤»¤¯¤À¤µ¤¤¡£
+#  ¤Þ¤¿¡¢ËÝÌõ¡¢¹»Àµ¡¢¥³¥ß¥Ã¥È¤ò¤ª¼êÅÁ¤¤¤·¤Æ¤¤¤¿¤À¤±¤ëÊý¤â¿ï»þÊç½¸Ãæ¤Ç¤¹¡£
+#  Ï¢ÍíÀè / Contact: wpja.team@gmail.com (·ïÌ¾¤«ÆâÍÆ¤Ë¡ÖÆüËÜ¸ì¥ê¥½¡¼¥¹¡×¤ÈÆþ¤ì¤Æ¤¯¤À¤µ¤¤)
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: WordPress 2011 to 262\n"
+"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
+"POT-Creation-Date: 2008-08-15 21:16+0900\n"
+"PO-Revision-Date: 2008-10-03 13:25+0900\n"
+"Last-Translator: KURO <info@xoops-fan.com>\n"
+"Language-Team: wp-ja <wpja.team@gmail.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=EUC-JP\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Japanese\n"
+"X-Poedit-Country: JAPAN\n"
+"X-Poedit-SourceCharset: euc-jp\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: /Users/Shared/workshop\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-SearchPath-0: wp-i18n/theme/branches/2.6\n"
+
+#: 404.php:5
+msgid "Error 404 - Not Found"
+msgstr "¥¨¥é¡¼ 404 - ¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿"
+
+#: archive.php:9
+#, php-format
+msgid "Archive for the &#8216;%s&#8217; Category"
+msgstr "&#8216;%s&#8217; ¥«¥Æ¥´¥ê¡¼¤Î¥¢¡¼¥«¥¤¥Ö"
+
+#: archive.php:11
+#, php-format
+msgid "Posts Tagged &#8216;%s&#8217;"
+msgstr "&#8216;%s&#8217; ¥¿¥°¤Î¤Ä¤¤¤Æ¤¤¤ëÅê¹Æ"
+
+#: archive.php:13
+#, php-format
+msgid "Archive for %s|Daily archive page"
+msgstr "%s ¤Î¥¢¡¼¥«¥¤¥Ö|ÆüÊÌ¥¢¡¼¥«¥¤¥Ö¤Î¥Ú¡¼¥¸"
+
+#: archive.php:13
+#: comments.php:37
+#: index.php:11
+msgid "F jS, Y"
+msgstr "Y Ç¯ n ·î j Æü"
+
+#: archive.php:15
+#, php-format
+msgid "Archive for %s|Monthly archive page"
+msgstr "%s ¤Î¥¢¡¼¥«¥¤¥Ö|·îÊÌ¥¢¡¼¥«¥¤¥Ö¤Î¥Ú¡¼¥¸"
+
+#: archive.php:15
+#: sidebar.php:27
+msgid "F, Y"
+msgstr "Y Ç¯ n ·î"
+
+#: archive.php:17
+#, php-format
+msgid "Archive for %s|Yearly archive page"
+msgstr "%s ¤Î¥¢¡¼¥«¥¤¥Ö|Ç¯ÊÌ¥¢¡¼¥«¥¤¥Ö¤Î¥Ú¡¼¥¸"
+
+#: archive.php:17
+msgid "Y"
+msgstr "Y Ç¯"
+
+#: archive.php:19
+msgid "Author Archive"
+msgstr "Åê¹Æ¼Ô¤Î¥¢¡¼¥«¥¤¥Ö"
+
+#: archive.php:21
+msgid "Blog Archives"
+msgstr "¥Ö¥í¥°¥¢¡¼¥«¥¤¥Ö"
+
+#: archive.php:26
+#: archive.php:46
+#: index.php:23
+#: search.php:10
+#: search.php:27
+msgid "&laquo; Older Entries"
+msgstr "&laquo; Á°¥Ú¡¼¥¸¤Ø"
+
+#: archive.php:27
+#: archive.php:47
+#: index.php:24
+#: search.php:11
+#: search.php:28
+msgid "Newer Entries &raquo;"
+msgstr "¼¡¥Ú¡¼¥¸¤Ø &raquo;"
+
+#: archive.php:32
+#: index.php:10
+#: search.php:18
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "%s ¤Î¥Ñ¡¼¥Þ¥ê¥ó¥¯"
+
+#: archive.php:33
+#: image.php:25
+#: sidebar.php:24
+#: single.php:27
+msgid "l, F jS, Y"
+msgstr "Y Ç¯ n ·î j Æü l"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+#: single.php:19
+msgid "Tags:"
+msgstr "¥¿¥°:"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+#, php-format
+msgid "Posted in %s"
+msgstr "¥«¥Æ¥´¥ê¡¼: %s"
+
+#: index.php:28
+#, php-format
+msgid "Posted:"
+msgstr "Åê¹Æ¼Ô:"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "Edit"
+msgstr "ÊÔ½¸"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "No Comments &#187;"
+msgstr "¥³¥á¥ó¥È¤Ï¤Þ¤À¤¢¤ê¤Þ¤»¤ó &#187;"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "1 Comment &#187;"
+msgstr "1 ·ï¤Î¥³¥á¥ó¥È &#187;"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "% Comments &#187;"
+msgstr "% ·ï¤Î¥³¥á¥ó¥È &#187;"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "Comments Closed"
+msgstr "¥³¥á¥ó¥È¤Ï¼õ¤±ÉÕ¤±¤Æ¤¤¤Þ¤»¤ó¡£"
+
+#: archive.php:52
+#: index.php:29
+msgid "Not Found"
+msgstr "¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+
+#: archives.php:13
+msgid "Archives by Month:"
+msgstr "·îÊÌ¤Î¥¢¡¼¥«¥¤¥Ö:"
+
+#: archives.php:18
+msgid "Archives by Subject:"
+msgstr "¥«¥Æ¥´¥ê¡¼ÊÌ¥¢¡¼¥«¥¤¥Ö:"
+
+#: image.php:13
+#: index.php:14
+#: single.php:16
+msgid "Read the rest of this entry &raquo;"
+msgstr "¤³¤ÎÅê¹Æ¤ÎÂ³¤­¤òÆÉ¤à &raquo;"
+
+#: image.php:15
+#: page.php:11
+#: single.php:18
+msgid "Pages:"
+msgstr "¥Ú¡¼¥¸:"
+
+#: single.php:27
+#, php-format
+msgid "This entry was posted %1$s on %2$s at %3$s and is filed under %4$s."
+msgstr "¤³¤ÎÅê¹Æ¤Ï %1$s %2$s %3$s ¤Ë %4$s ¥«¥Æ¥´¥ê¡¼¤Ë¸ø³«¤µ¤ì¤Þ¤·¤¿¡£"
+
+#: image.php:27
+#: single.php:28
+#, php-format
+msgid "You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed."
+msgstr "¤³¤ÎÅê¹Æ¤Ø¤Î¥³¥á¥ó¥È¤Ï <a href='%s'>RSS 2.0</a> ¥Õ¥£¡¼¥É¤Ç¹ØÆÉ¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£"
+
+#: KURO Add
+#, php-format
+msgid "You can follow any responses to this entry through the"
+msgstr "¤³¤ÎÅê¹Æ¤Ø¤Î¥³¥á¥ó¥È¤Ï"
+
+#: KURO Add
+#, php-format
+msgid "feed."
+msgstr "¥Õ¥£¡¼¥É¤Ç¹ØÆÉ¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£"
+
+#: image.php:31
+#: single.php:32
+#, php-format
+msgid "You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
+msgstr "<a href=\"#respond\">¥³¥á¥ó¥È¤ò»Ä¤¹¤«</a>¡¢¤´¼«Ê¬¤Î¥µ¥¤¥È¤«¤é<a href=\"%s\" rel=\"trackback\">¥È¥é¥Ã¥¯¥Ð¥Ã¥¯</a>¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£"
+
+#: image.php:35
+#: single.php:36
+#, php-format
+msgid "Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
+msgstr "¸½ºß¥³¥á¥ó¥È¤Ï¼õ¤±ÉÕ¤±¤Æ¤ª¤ê¤Þ¤»¤ó¤¬¡¢¤´¼«Ê¬¤Î¥µ¥¤¥È¤«¤é<a href=\"%s\" rel=\"trackback\">¥È¥é¥Ã¥¯¥Ð¥Ã¥¯</a>¤òÁ÷¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤¹¡£"
+
+#: image.php:39
+#: single.php:40
+msgid "You can skip to the end and leave a response. Pinging is currently not allowed."
+msgstr "¤³¤Î¥Ú¡¼¥¸¤Î°ìÈÖ²¼¤Ç¥³¥á¥ó¥È¤ò»Ä¤¹¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥È¥é¥Ã¥¯¥Ð¥Ã¥¯ / ¥Ô¥ó¥Ð¥Ã¥¯¤Ï¸½ºß¼õ¤±ÉÕ¤±¤Æ¤¤¤Þ¤»¤ó¡£"
+
+#: image.php:43
+#: single.php:44
+msgid "Both comments and pings are currently closed."
+msgstr "¸½ºß¥³¥á¥ó¥È¡¢¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¤È¤â¤Ë¼õ¤±ÉÕ¤±¤Æ¤ª¤ê¤Þ¤»¤ó¡£"
+
+#: image.php:45
+#: page.php:16
+msgid "Edit this entry."
+msgstr "¤³¤ÎÅê¹Æ¤òÊÔ½¸¤¹¤ë¡£"
+
+#: comments.php:9
+msgid "This post is password protected. Enter the password to view comments."
+msgstr "¤³¤ÎÅê¹Æ¤Ï¥Ñ¥¹¥ï¡¼¥É¤ÇÊÝ¸î¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¥³¥á¥ó¥È¤ò±ÜÍ÷¤¹¤ë¤Ë¤Ï¥Ñ¥¹¥ï¡¼¥É¤òÆþÎÏ¤·¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: comments.php:23
+msgid "No Responses"
+msgstr "¥³¥á¥ó¥È / ¥È¥é¥Ã¥¯¥Ð¥Ã¥¯¤Ï¤¢¤ê¤Þ¤»¤ó"
+
+#: comments.php:23
+msgid "One Response"
+msgstr "¥³¥á¥ó¥È / ¥È¥é¥Ã¥¯¥Ð¥Ã¥¯ 1 ·ï"
+
+#: comments.php:23
+msgid "% Responses"
+msgstr "¥³¥á¥ó¥È / ¥È¥é¥Ã¥¯¥Ð¥Ã¥¯ % ·ï"
+
+#: comments.php:23
+#, php-format
+msgid "to &#8220;%s&#8221;"
+msgstr "<!-- to &#8220;%s&#8221; -->"
+
+#: comments.php:31
+#, php-format
+msgid "<cite>%s</cite> Says:"
+msgstr "<cite>%s</cite> ¤è¤ê: "
+
+#: comments.php:33
+msgid "Your comment is awaiting moderation."
+msgstr "¥³¥á¥ó¥È¤Ï´ÉÍý¼Ô¤Î¾µÇ§ÂÔ¤Á¤Ç¤¹¡£"
+
+#: comments.php:37
+#, php-format
+msgid "%1$s at %2$s"
+msgstr "%1$s %2$s"
+
+#: comments.php:37
+msgid "edit"
+msgstr "ÊÔ½¸"
+
+#: comments.php:59
+msgid "Comments are closed."
+msgstr "¥³¥á¥ó¥È¤Ï¼õ¤±ÉÕ¤±¤Æ¤¤¤Þ¤»¤ó¡£"
+
+#: comments.php:67
+msgid "Leave a Reply"
+msgstr "¥³¥á¥ó¥È¤ò¤É¤¦¤¾"
+
+#: comments.php:70
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr "¥³¥á¥ó¥È¤òÅê¹Æ¤¹¤ë¤Ë¤Ï<a href=\"%s\">¥í¥°¥¤¥ó</a>¤·¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: comments.php:77
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr "<a href=\"%1$s\">%2$s</a> ¤È¤·¤Æ¥í¥°¥¤¥óÃæ¡£"
+
+#: comments.php:77
+msgid "Log out of this account"
+msgstr "¤³¤Î¥¢¥«¥¦¥ó¥È¤«¤é¥í¥°¥¢¥¦¥È"
+
+#: comments.php:77
+msgid "Log out &raquo;"
+msgstr "¥í¥°¥¢¥¦¥È &raquo;"
+
+#: comments.php:82
+#: comments-popup.php:64
+msgid "Name"
+msgstr "¤ªÌ¾Á°"
+
+#: comments.php:82
+#: comments.php:85
+msgid "(required)"
+msgstr " (É¬¿Ü)"
+
+#: comments.php:85
+msgid "Mail (will not be published)"
+msgstr "¥á¡¼¥ë¥¢¥É¥ì¥¹ (¸ø³«¤µ¤ì¤Þ¤»¤ó)"
+
+#: comments.php:88
+msgid "Website"
+msgstr "¥¦¥§¥Ö¥µ¥¤¥È"
+
+#: comments.php:92
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr "<strong>XHTML:</strong> ¼¡¤Î¥¿¥°¤ò»ÈÍÑ¤Ç¤­¤Þ¤¹: <code>%s</code>"
+
+#: comments.php:96
+msgid "Submit Comment"
+msgstr "¥³¥á¥ó¥ÈÁ÷¿®"
+
+#: comments-popup.php:9
+#, php-format
+msgid "%1$s - Comments on %2$s"
+msgstr "%1$s - %2$s ¤Ø¤Î¥³¥á¥ó¥È"
+
+#: comments-popup.php:22
+msgid "Comments"
+msgstr "¥³¥á¥ó¥È"
+
+#: comments-popup.php:24
+msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post."
+msgstr "¤³¤Î¥³¥á¥ó¥ÈÍó¤Î <abbr title=\"Really Simple Syndication\">RSS</abbr> ¥Õ¥£¡¼¥É"
+
+#: comments-popup.php:27
+#, php-format
+msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>"
+msgstr "¤³¤ÎÅê¹Æ¤Ø¤Î¥È¥é¥Ã¥¯¥Ð¥Ã¥¯ <acronym title=\"Universal Resource Locator\">URL</acronym>: <em>%s</em>"
+
+#: comments-popup.php:45
+msgid "Comment"
+msgstr "¥³¥á¥ó¥È"
+
+#: comments-popup.php:45
+msgid "Trackback"
+msgstr "¥È¥é¥Ã¥¯¥Ð¥Ã¥¯"
+
+#: comments-popup.php:45
+msgid "Pingback"
+msgstr "¥Ô¥ó¥Ð¥Ã¥¯"
+
+#: comments-popup.php:45
+#, php-format
+msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>"
+msgstr "&#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>: %1$s ¤è¤ê"
+
+#: comments-popup.php:51
+msgid "No comments yet."
+msgstr "¥³¥á¥ó¥È¤Ï¤Þ¤À¤¢¤ê¤Þ¤»¤ó¡£"
+
+#: comments-popup.php:55
+msgid "Leave a comment"
+msgstr "¥³¥á¥ó¥È¤ò¤É¤¦¤¾"
+
+#: comments-popup.php:56
+#, php-format
+msgid "Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: <code>%s</code>"
+msgstr "²þ¹Ô¤ÈÃÊÍî¥¿¥°¤Ï¼«Æ°¤ÇÁÞÆþ¤µ¤ì¤Þ¤¹¡£¥á¡¼¥ë¥¢¥É¥ì¥¹¤ÏÉ½¼¨¤µ¤ì¤Þ¤»¤ó¡£ÍøÍÑ²ÄÇ½¤Ê <acronym title=\"Hypertext Markup Language\">HTML</acronym> ¥¿¥°: <code>%s</code>"
+
+#: comments-popup.php:60
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out &raquo;</a>"
+msgstr "<a href=\"%1$s\">%2$s</a> ¤È¤·¤Æ¥í¥°¥¤¥óÃæ¡£<a href=\"%3$s\" title=\"¤³¤Î¥¢¥«¥¦¥ó¥È¤«¤é¥í¥°¥¢¥¦¥È¤¹¤ë\">¥í¥°¥¢¥¦¥È &raquo;</a>"
+
+#: comments-popup.php:71
+msgid "E-mail"
+msgstr "¥á¡¼¥ë¥¢¥É¥ì¥¹"
+
+#: comments-popup.php:76
+msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+
+#: comments-popup.php:81
+msgid "Your Comment"
+msgstr "¥³¥á¥ó¥È"
+
+#: comments-popup.php:87
+msgid "Say It!"
+msgstr "Á÷¿®¤¹¤ë !"
+
+#: comments-popup.php:92
+msgid "Sorry, the comment form is closed at this time."
+msgstr "¥³¥á¥ó¥È¥Õ¥©¡¼¥à¤Ï¸½ºßÊÄº¿Ãæ¤Ç¤¹¡£"
+
+#: comments-popup.php:97
+msgid "Close this window."
+msgstr "¤³¤Î¥¦¥¤¥ó¥É¥¦¤òÊÄ¤¸¤ë¡£"
+
+#: comments-popup.php:105
+#, php-format
+msgid "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+msgstr "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+
+#: footer.php:6
+#, php-format
+msgid "%1$s is proudly powered by %2$s"
+msgstr "%1$s is proudly powered by %2$s"
+
+#: footer.php:8
+#, php-format
+msgid "%1$s and %2$s."
+msgstr "%1$s ¤È %2$s"
+
+#: footer.php:8
+msgid "Entries (RSS)"
+msgstr "Åê¹Æ (RSS)"
+
+#: footer.php:8
+msgid "Comments (RSS)"
+msgstr "¥³¥á¥ó¥È (RSS)"
+
+#: footer.php:9
+#, php-format
+msgid "%d queries. %s seconds."
+msgstr "%d ¸Ä¤Î¥¯¥¨¥ê¤È %s ÉÃ¤òÍ×¤·¤Þ¤·¤¿¡£"
+
+#: functions.php:149
+msgid "Customize Header"
+msgstr "¥Ø¥Ã¥À¡¼¤Î¥«¥¹¥¿¥Þ¥¤¥º"
+
+#: functions.php:149
+#: functions.php:363
+msgid "Header Image and Color"
+msgstr "¥Ø¥Ã¥À¡¼¤ÎÇØ·Ê¤ÈÊ¸»ú¤Î¿§"
+
+#: functions.php:162
+msgid "Close Color Picker"
+msgstr "¥«¥é¡¼¥Ô¥Ã¥«¡¼¤òÊÄ¤¸¤ë"
+
+#: functions.php:359
+msgid "Options saved."
+msgstr "ÀßÄê¤òÊÝÂ¸¤·¤Þ¤·¤¿¡£"
+
+#: functions.php:376
+#: functions.php:383
+msgid "Save"
+msgstr "ÊÝÂ¸"
+
+#: functions.php:377
+msgid "Font Color:"
+msgstr "¥Õ¥©¥ó¥È¤Î¿§:"
+
+#: functions.php:377
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr "CSS ¿§»ØÄê (%s ¡¢%s ¤â¤·¤¯¤Ï %s)"
+
+#: functions.php:378
+msgid "Upper Color:"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾åÂ¦¤Î¿§:"
+
+#: functions.php:378
+#: functions.php:379
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr "16 ¿Ê¿ô¤Î¤ß (%s ¤â¤·¤¯¤Ï %s)"
+
+#: functions.php:379
+msgid "Lower Color:"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§:"
+
+#: functions.php:381
+msgid "Toggle Text"
+msgstr "¥Æ¥­¥¹¥ÈÉ½¼¨¤ÎÀÚÂØ¤¨"
+
+#: functions.php:382
+msgid "Use Defaults"
+msgstr "¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ËÌá¤¹"
+
+#: functions.php:391
+msgid "Font Color"
+msgstr "¥Õ¥©¥ó¥È¤Î¿§"
+
+#: functions.php:392
+msgid "Upper Color"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾åÂ¦¤Î¿§"
+
+#: functions.php:393
+msgid "Lower Color"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§"
+
+#: functions.php:394
+msgid "Revert"
+msgstr "¼è¤ê¾Ã¤·"
+
+#: functions.php:395
+msgid "Advanced"
+msgstr "¾ÜºÙ"
+
+#: functions.php:402
+msgid "Update Header &raquo;"
+msgstr "¥Ø¥Ã¥À¡¼¤ò¹¹¿· &raquo;"
+
+#: functions.php:408
+msgid "Font Color (CSS):"
+msgstr "¥Õ¥©¥ó¥È¤Î¿§ (CSS):"
+
+#: functions.php:409
+msgid "Upper Color (HEX):"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó¾åÂ¦¤Î¿§ (16 ¿Ê¿ô):"
+
+#: functions.php:410
+msgid "Lower Color (HEX):"
+msgstr "¥°¥é¥Ç¡¼¥·¥ç¥ó²¼Â¦¤Î¿§ (16 ¿Ê¿ô):"
+
+#: functions.php:411
+msgid "Select Default Colors"
+msgstr "¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤ËÌá¤¹"
+
+#: functions.php:412
+msgid "Toggle Text Display"
+msgstr "¥Æ¥­¥¹¥ÈÉ½¼¨¤ÎÀÚÂØ¤¨"
+
+#: header.php:9
+msgid "&raquo; Blog Archive"
+msgstr "&raquo; ¥Ö¥í¥°¥¢¡¼¥«¥¤¥Ö"
+
+#: header.php:14
+#, php-format
+msgid "%s RSS Feed"
+msgstr "%s RSS ¥Õ¥£¡¼¥É"
+
+#: header.php:15
+#, php-format
+msgid "%s Atom Feed"
+msgstr "%s Atom ¥Õ¥£¡¼¥É"
+
+#: image.php:25
+#, php-format
+msgid "This entry was posted on %1$s at %2$s and is filed under %3$s."
+msgstr "¤³¤ÎÅê¹Æ¤Ï %1$s %2$s ¤Ë %3$s ¥«¥Æ¥´¥ê¡¼¤Ë¸ø³«¤µ¤ì¤Þ¤·¤¿¡£"
+
+#: image.php:58
+#: single.php:58
+msgid "Sorry, no posts matched your criteria."
+msgstr "³ºÅö¤¹¤ëÅê¹Æ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+
+#: index.php:30
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr "¤ªÃµ¤·¤ÎÊª¤Ï¤³¤³¤Ë¤Ï¤¢¤ê¤Þ¤»¤ó¡£"
+
+#: links.php:11
+msgid "Links:"
+msgstr "¥ê¥ó¥¯:"
+
+#: page.php:9
+msgid "Read the rest of this page &raquo;"
+msgstr "¤³¤Î¥Ú¡¼¥¸¤ÎÂ³¤­¤òÆÉ¤à &raquo;"
+
+#: searchform.php:2
+msgid "Search for:"
+msgstr "¸¡º÷:"
+
+#: searchform.php:4
+msgid "Search"
+msgstr "¸¡º÷"
+
+#: search.php:7
+msgid "Search Results"
+msgstr "¸¡º÷·ë²Ì"
+
+#: search.php:33
+msgid "No posts found. Try a different search?"
+msgstr "¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£ÊÌ¤Î¸¡º÷¤ò¤·¤Þ¤¹¤« ?"
+
+#: sidebar.php:10
+msgid "Author"
+msgstr "ºîÀ®¼Ô"
+
+#: sidebar.php:21
+#, php-format
+msgid "You are currently browsing the archives for the %s category."
+msgstr "%s ¥«¥Æ¥´¥ê¡¼¤Î¥¢¡¼¥«¥¤¥Ö¤òÉ½¼¨¤·¤Æ¤¤¤Þ¤¹¡£"
+
+#: sidebar.php:24
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the day %3$s."
+msgstr "<a href=\"%1$s\">%2$s</a> ¥Ö¥í¥°¤Î %3$s ¤Î¥¢¡¼¥«¥¤¥Ö¤òÉ½¼¨¤·¤Æ¤¤¤Þ¤¹¡£"
+
+#: sidebar.php:27
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %3$s."
+msgstr "<a href=\"%1$s/\">%2$s</a> ¤Î %3$s ¤Î¥¢¡¼¥«¥¤¥Ö¤ò±ÜÍ÷Ãæ¤Ç¤¹¡£"
+
+#: sidebar.php:30
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the year %3$s."
+msgstr "<a href=\"%1$s\">%2$s</a> ¥Ö¥í¥°¤Î %3$s Ç¯¤Î¥¢¡¼¥«¥¤¥Ö¤òÉ½¼¨¤·¤Æ¤¤¤Þ¤¹¡£"
+
+#: sidebar.php:33
+#, php-format
+msgid "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for <strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links."
+msgstr "<a href=\"%1$s/\">%2$s</a> ¤Î¥¢¡¼¥«¥¤¥ÖÆâ¤Ç<strong>&#8216;%3$s&#8217;</strong>¤òÃµ¤·¤Þ¤·¤¿¡£¤ªÃµ¤·¤Î¤â¤Î¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¤ÏÂ¾¤Î¥ê¥ó¥¯¤ò»î¤·¤Æ¤ß¤Æ¤¯¤À¤µ¤¤¡£"
+
+#: sidebar.php:36
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
+msgstr "<a href=\"%1$s/\">%2$s</a> ¥Ö¥í¥°¤Î¥¢¡¼¥«¥¤¥Ö¤ò±ÜÍ÷Ãæ¤Ç¤¹¡£"
+
+#: sidebar.php:42
+msgid "Pages"
+msgstr "¥Ú¡¼¥¸"
+
+#: sidebar.php:44
+msgid "Archives"
+msgstr "¥¢¡¼¥«¥¤¥Ö"
+
+#: sidebar.php:50
+msgid "Categories"
+msgstr "¥«¥Æ¥´¥ê¡¼"
+
+#: sidebar.php:55
+msgid "Meta"
+msgstr "¥á¥¿¾ðÊó"
+
+#: sidebar.php:59
+msgid "This page validates as XHTML 1.0 Transitional"
+msgstr "¤³¤Î¥Ú¡¼¥¸¤¬ XHTML 1.0 Transitional ¤Ë½àµò¤·¤Æ¤¤¤ë¤«³ÎÇ§¤¹¤ë"
+
+#: sidebar.php:59
+msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+msgstr "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+
+#: sidebar.php:60
+msgid "XHTML Friends Network"
+msgstr "XHTML Friends Network"
+
+#: sidebar.php:60
+msgid "XFN"
+msgstr "XFN"
+
+#: sidebar.php:61
+msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+
+#: single.php:46
+msgid "Edit this entry"
+msgstr "¤³¤ÎÅê¹Æ¤òÊÔ½¸ "
+
+#~ msgid "Permanent Link: %s"
+#~ msgstr "¥Ñ¡¼¥Þ¥ê¥ó¥¯: %s"
+#~ msgid "Sorry, no attachments matched your criteria."
+#~ msgstr "³ºÅö¤¹¤ëÅºÉÕ¥Ú¡¼¥¸¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£"
+
Index: /wp-content/themes/toemon/ja_SJIS.po
===================================================================
--- /wp-content/themes/toemon/ja_SJIS.po	(revision 1)
+++ /wp-content/themes/toemon/ja_SJIS.po	(revision 1)
@@ -0,0 +1,662 @@
+# WordPress pú{ê\[X (Shift-JIS) 
+# Japanese (Shift-JIS) translation for WordPress
+#
+# Copyright (c) 2005-2008
+# ±Ìt@CÍ WordPress {ÌÆ¯¶CZXÌàÆzz³êÄ¢Ü·B
+# This file is distributed under the same license as the WordPress package.
+#
+# WordPress ú{êÅì¬`[ / WP ja translation team
+# <http://groups.google.com/group/wp-ja-pkg/web/members>
+#
+#  ëEëóA é¢Íæèæ¢óÈÇ èÜµ½çÈºÜÅºÐ¨mç¹­¾³¢B
+#  Ü½A|óAZ³AR~bgð¨è`¢µÄ¢½¾¯éûàåWÅ·B
+#  Aæ / Contact: wpja.team@gmail.com (¼©àeÉuú{ê\[XvÆüêÄ­¾³¢)
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: WordPress 2011 to 262\n"
+"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
+"POT-Creation-Date: 2008-08-15 21:16+0900\n"
+"PO-Revision-Date: 2008-10-03 13:22+0900\n"
+"Last-Translator: KURO <info@xoops-fan.com>\n"
+"Language-Team: wp-ja <wpja.team@gmail.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=Shift_JIS\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Japanese\n"
+"X-Poedit-Country: JAPAN\n"
+"X-Poedit-SourceCharset: shift_jis\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: /Users/Shared/workshop\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-SearchPath-0: wp-i18n/theme/branches/2.6\n"
+
+#: 404.php:5
+msgid "Error 404 - Not Found"
+msgstr "G[ 404 - ©Â©èÜ¹ñÅµ½"
+
+#: archive.php:9
+#, php-format
+msgid "Archive for the &#8216;%s&#8217; Category"
+msgstr "&#8216;%s&#8217; JeS[ÌA[JCu"
+
+#: archive.php:11
+#, php-format
+msgid "Posts Tagged &#8216;%s&#8217;"
+msgstr "&#8216;%s&#8217; ^OÌÂ¢Ä¢ée"
+
+#: archive.php:13
+#, php-format
+msgid "Archive for %s|Daily archive page"
+msgstr "%s ÌA[JCu|úÊA[JCuÌy[W"
+
+#: archive.php:13
+#: comments.php:37
+#: index.php:11
+msgid "F jS, Y"
+msgstr "Y N n  j ú"
+
+#: archive.php:15
+#, php-format
+msgid "Archive for %s|Monthly archive page"
+msgstr "%s ÌA[JCu|ÊA[JCuÌy[W"
+
+#: archive.php:15
+#: sidebar.php:27
+msgid "F, Y"
+msgstr "Y N n "
+
+#: archive.php:17
+#, php-format
+msgid "Archive for %s|Yearly archive page"
+msgstr "%s ÌA[JCu|NÊA[JCuÌy[W"
+
+#: archive.php:17
+msgid "Y"
+msgstr "Y N"
+
+#: archive.php:19
+msgid "Author Archive"
+msgstr "eÒÌA[JCu"
+
+#: archive.php:21
+msgid "Blog Archives"
+msgstr "uOA[JCu"
+
+#: archive.php:26
+#: archive.php:46
+#: index.php:23
+#: search.php:10
+#: search.php:27
+msgid "&laquo; Older Entries"
+msgstr "&laquo; Oy[WÖ"
+
+#: archive.php:27
+#: archive.php:47
+#: index.php:24
+#: search.php:11
+#: search.php:28
+msgid "Newer Entries &raquo;"
+msgstr "y[WÖ &raquo;"
+
+#: archive.php:32
+#: index.php:10
+#: search.php:18
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "%s Ìp[}N"
+
+#: archive.php:33
+#: image.php:25
+#: sidebar.php:24
+#: single.php:27
+msgid "l, F jS, Y"
+msgstr "Y N n  j ú l"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+#: single.php:19
+msgid "Tags:"
+msgstr "^O:"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+#, php-format
+msgid "Posted in %s"
+msgstr "JeS[: %s"
+
+#: index.php:28
+#, php-format
+msgid "Posted:"
+msgstr "eÒ:"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "Edit"
+msgstr "ÒW"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "No Comments &#187;"
+msgstr "RgÍÜ¾ èÜ¹ñ &#187;"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "1 Comment &#187;"
+msgstr "1 ÌRg &#187;"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "% Comments &#187;"
+msgstr "% ÌRg &#187;"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "Comments Closed"
+msgstr "RgÍó¯t¯Ä¢Ü¹ñB"
+
+#: archive.php:52
+#: index.php:29
+msgid "Not Found"
+msgstr "©Â©èÜ¹ñÅµ½B"
+
+#: archives.php:13
+msgid "Archives by Month:"
+msgstr "ÊÌA[JCu:"
+
+#: archives.php:18
+msgid "Archives by Subject:"
+msgstr "JeS[ÊA[JCu:"
+
+#: image.php:13
+#: index.php:14
+#: single.php:16
+msgid "Read the rest of this entry &raquo;"
+msgstr "±ÌeÌ±«ðÇÞ &raquo;"
+
+#: image.php:15
+#: page.php:11
+#: single.php:18
+msgid "Pages:"
+msgstr "y[W:"
+
+#: single.php:27
+#, php-format
+msgid "This entry was posted %1$s on %2$s at %3$s and is filed under %4$s."
+msgstr "±ÌeÍ %1$s %2$s %3$s É %4$s JeS[ÉöJ³êÜµ½B"
+
+#: image.php:27
+#: single.php:28
+#, php-format
+msgid "You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed."
+msgstr "±ÌeÖÌRgÍ <a href='%s'>RSS 2.0</a> tB[hÅwÇ·é±ÆªÅ«Ü·B"
+
+#: KURO Add
+#, php-format
+msgid "You can follow any responses to this entry through the"
+msgstr "±ÌeÖÌRgÍ"
+
+#: KURO Add
+#, php-format
+msgid "feed."
+msgstr "tB[hÅwÇ·é±ÆªÅ«Ü·B"
+
+#: image.php:31
+#: single.php:32
+#, php-format
+msgid "You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
+msgstr "<a href=\"#respond\">Rgðc·©</a>A²©ªÌTCg©ç<a href=\"%s\" rel=\"trackback\">gbNobN</a>·é±ÆªÅ«Ü·B"
+
+#: image.php:35
+#: single.php:36
+#, php-format
+msgid "Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
+msgstr "»ÝRgÍó¯t¯Ä¨èÜ¹ñªA²©ªÌTCg©ç<a href=\"%s\" rel=\"trackback\">gbNobN</a>ðé±ÆÍÅ«Ü·B"
+
+#: image.php:39
+#: single.php:40
+msgid "You can skip to the end and leave a response. Pinging is currently not allowed."
+msgstr "±Ìy[WÌêÔºÅRgðc·±ÆªÅ«Ü·BgbNobN / sobNÍ»Ýó¯t¯Ä¢Ü¹ñB"
+
+#: image.php:43
+#: single.php:44
+msgid "Both comments and pings are currently closed."
+msgstr "»ÝRgAgbNobNÆàÉó¯t¯Ä¨èÜ¹ñB"
+
+#: image.php:45
+#: page.php:16
+msgid "Edit this entry."
+msgstr "±ÌeðÒW·éB"
+
+#: comments.php:9
+msgid "This post is password protected. Enter the password to view comments."
+msgstr "±ÌeÍpX[hÅÛì³êÄ¢Ü·BRgð{·éÉÍpX[hðüÍµÄ­¾³¢B"
+
+#: comments.php:23
+msgid "No Responses"
+msgstr "Rg / gbNobNÍ èÜ¹ñ"
+
+#: comments.php:23
+msgid "One Response"
+msgstr "Rg / gbNobN 1 "
+
+#: comments.php:23
+msgid "% Responses"
+msgstr "Rg / gbNobN % "
+
+#: comments.php:23
+#, php-format
+msgid "to &#8220;%s&#8221;"
+msgstr "<!-- to &#8220;%s&#8221; -->"
+
+#: comments.php:31
+#, php-format
+msgid "<cite>%s</cite> Says:"
+msgstr "<cite>%s</cite> æè: "
+
+#: comments.php:33
+msgid "Your comment is awaiting moderation."
+msgstr "RgÍÇÒÌ³FÒ¿Å·B"
+
+#: comments.php:37
+#, php-format
+msgid "%1$s at %2$s"
+msgstr "%1$s %2$s"
+
+#: comments.php:37
+msgid "edit"
+msgstr "ÒW"
+
+#: comments.php:59
+msgid "Comments are closed."
+msgstr "RgÍó¯t¯Ä¢Ü¹ñB"
+
+#: comments.php:67
+msgid "Leave a Reply"
+msgstr "RgðÇ¤¼"
+
+#: comments.php:70
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr "Rgðe·éÉÍ<a href=\"%s\">OC</a>µÄ­¾³¢B"
+
+#: comments.php:77
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr "<a href=\"%1$s\">%2$s</a> ÆµÄOCB"
+
+#: comments.php:77
+msgid "Log out of this account"
+msgstr "±ÌAJEg©çOAEg"
+
+#: comments.php:77
+msgid "Log out &raquo;"
+msgstr "OAEg &raquo;"
+
+#: comments.php:82
+#: comments-popup.php:64
+msgid "Name"
+msgstr "¨¼O"
+
+#: comments.php:82
+#: comments.php:85
+msgid "(required)"
+msgstr " (K{)"
+
+#: comments.php:85
+msgid "Mail (will not be published)"
+msgstr "[AhX (öJ³êÜ¹ñ)"
+
+#: comments.php:88
+msgid "Website"
+msgstr "EFuTCg"
+
+#: comments.php:92
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr "<strong>XHTML:</strong> Ì^OðgpÅ«Ü·: <code>%s</code>"
+
+#: comments.php:96
+msgid "Submit Comment"
+msgstr "RgM"
+
+#: comments-popup.php:9
+#, php-format
+msgid "%1$s - Comments on %2$s"
+msgstr "%1$s - %2$s ÖÌRg"
+
+#: comments-popup.php:22
+msgid "Comments"
+msgstr "Rg"
+
+#: comments-popup.php:24
+msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post."
+msgstr "±ÌRgÌ <abbr title=\"Really Simple Syndication\">RSS</abbr> tB[h"
+
+#: comments-popup.php:27
+#, php-format
+msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>"
+msgstr "±ÌeÖÌgbNobN <acronym title=\"Universal Resource Locator\">URL</acronym>: <em>%s</em>"
+
+#: comments-popup.php:45
+msgid "Comment"
+msgstr "Rg"
+
+#: comments-popup.php:45
+msgid "Trackback"
+msgstr "gbNobN"
+
+#: comments-popup.php:45
+msgid "Pingback"
+msgstr "sobN"
+
+#: comments-popup.php:45
+#, php-format
+msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>"
+msgstr "&#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>: %1$s æè"
+
+#: comments-popup.php:51
+msgid "No comments yet."
+msgstr "RgÍÜ¾ èÜ¹ñB"
+
+#: comments-popup.php:55
+msgid "Leave a comment"
+msgstr "RgðÇ¤¼"
+
+#: comments-popup.php:56
+#, php-format
+msgid "Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: <code>%s</code>"
+msgstr "üsÆi^OÍ©®Å}ü³êÜ·B[AhXÍ\¦³êÜ¹ñBpÂ\È <acronym title=\"Hypertext Markup Language\">HTML</acronym> ^O: <code>%s</code>"
+
+#: comments-popup.php:60
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out &raquo;</a>"
+msgstr "<a href=\"%1$s\">%2$s</a> ÆµÄOCB<a href=\"%3$s\" title=\"±ÌAJEg©çOAEg·é\">OAEg &raquo;</a>"
+
+#: comments-popup.php:71
+msgid "E-mail"
+msgstr "[AhX"
+
+#: comments-popup.php:76
+msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+
+#: comments-popup.php:81
+msgid "Your Comment"
+msgstr "Rg"
+
+#: comments-popup.php:87
+msgid "Say It!"
+msgstr "M·é !"
+
+#: comments-popup.php:92
+msgid "Sorry, the comment form is closed at this time."
+msgstr "RgtH[Í»ÝÂ½Å·B"
+
+#: comments-popup.php:97
+msgid "Close this window."
+msgstr "±ÌEChEðÂ¶éB"
+
+#: comments-popup.php:105
+#, php-format
+msgid "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+msgstr "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+
+#: footer.php:6
+#, php-format
+msgid "%1$s is proudly powered by %2$s"
+msgstr "%1$s is proudly powered by %2$s"
+
+#: footer.php:8
+#, php-format
+msgid "%1$s and %2$s."
+msgstr "%1$s Æ %2$s"
+
+#: footer.php:8
+msgid "Entries (RSS)"
+msgstr "e (RSS)"
+
+#: footer.php:8
+msgid "Comments (RSS)"
+msgstr "Rg (RSS)"
+
+#: footer.php:9
+#, php-format
+msgid "%d queries. %s seconds."
+msgstr "%d ÂÌNGÆ %s bðvµÜµ½B"
+
+#: functions.php:149
+msgid "Customize Header"
+msgstr "wb_[ÌJX^}CY"
+
+#: functions.php:149
+#: functions.php:363
+msgid "Header Image and Color"
+msgstr "wb_[ÌwiÆ¶ÌF"
+
+#: functions.php:162
+msgid "Close Color Picker"
+msgstr "J[sbJ[ðÂ¶é"
+
+#: functions.php:359
+msgid "Options saved."
+msgstr "ÝèðÛ¶µÜµ½B"
+
+#: functions.php:376
+#: functions.php:383
+msgid "Save"
+msgstr "Û¶"
+
+#: functions.php:377
+msgid "Font Color:"
+msgstr "tHgÌF:"
+
+#: functions.php:377
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr "CSS Fwè (%s A%s àµ­Í %s)"
+
+#: functions.php:378
+msgid "Upper Color:"
+msgstr "Of[Vã¤ÌF:"
+
+#: functions.php:378
+#: functions.php:379
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr "16 iÌÝ (%s àµ­Í %s)"
+
+#: functions.php:379
+msgid "Lower Color:"
+msgstr "Of[Vº¤ÌF:"
+
+#: functions.php:381
+msgid "Toggle Text"
+msgstr "eLXg\¦ÌØÖ¦"
+
+#: functions.php:382
+msgid "Use Defaults"
+msgstr "ftHgÝèÉß·"
+
+#: functions.php:391
+msgid "Font Color"
+msgstr "tHgÌF"
+
+#: functions.php:392
+msgid "Upper Color"
+msgstr "Of[Vã¤ÌF"
+
+#: functions.php:393
+msgid "Lower Color"
+msgstr "Of[Vº¤ÌF"
+
+#: functions.php:394
+msgid "Revert"
+msgstr "æèÁµ"
+
+#: functions.php:395
+msgid "Advanced"
+msgstr "Ú×"
+
+#: functions.php:402
+msgid "Update Header &raquo;"
+msgstr "wb_[ðXV &raquo;"
+
+#: functions.php:408
+msgid "Font Color (CSS):"
+msgstr "tHgÌF (CSS):"
+
+#: functions.php:409
+msgid "Upper Color (HEX):"
+msgstr "Of[Vã¤ÌF (16 i):"
+
+#: functions.php:410
+msgid "Lower Color (HEX):"
+msgstr "Of[Vº¤ÌF (16 i):"
+
+#: functions.php:411
+msgid "Select Default Colors"
+msgstr "ftHgÝèÉß·"
+
+#: functions.php:412
+msgid "Toggle Text Display"
+msgstr "eLXg\¦ÌØÖ¦"
+
+#: header.php:9
+msgid "&raquo; Blog Archive"
+msgstr "&raquo; uOA[JCu"
+
+#: header.php:14
+#, php-format
+msgid "%s RSS Feed"
+msgstr "%s RSS tB[h"
+
+#: header.php:15
+#, php-format
+msgid "%s Atom Feed"
+msgstr "%s Atom tB[h"
+
+#: image.php:25
+#, php-format
+msgid "This entry was posted on %1$s at %2$s and is filed under %3$s."
+msgstr "±ÌeÍ %1$s %2$s É %3$s JeS[ÉöJ³êÜµ½B"
+
+#: image.php:58
+#: single.php:58
+msgid "Sorry, no posts matched your criteria."
+msgstr "Y·éeÍ©Â©èÜ¹ñÅµ½B"
+
+#: index.php:30
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr "¨TµÌ¨Í±±ÉÍ èÜ¹ñB"
+
+#: links.php:11
+msgid "Links:"
+msgstr "N:"
+
+#: page.php:9
+msgid "Read the rest of this page &raquo;"
+msgstr "±Ìy[WÌ±«ðÇÞ &raquo;"
+
+#: searchform.php:2
+msgid "Search for:"
+msgstr "õ:"
+
+#: searchform.php:4
+msgid "Search"
+msgstr "õ"
+
+#: search.php:7
+msgid "Search Results"
+msgstr "õÊ"
+
+#: search.php:33
+msgid "No posts found. Try a different search?"
+msgstr "©Â©èÜ¹ñÅµ½BÊÌõðµÜ·© ?"
+
+#: sidebar.php:10
+msgid "Author"
+msgstr "ì¬Ò"
+
+#: sidebar.php:21
+#, php-format
+msgid "You are currently browsing the archives for the %s category."
+msgstr "%s JeS[ÌA[JCuð\¦µÄ¢Ü·B"
+
+#: sidebar.php:24
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the day %3$s."
+msgstr "<a href=\"%1$s\">%2$s</a> uOÌ %3$s ÌA[JCuð\¦µÄ¢Ü·B"
+
+#: sidebar.php:27
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %3$s."
+msgstr "<a href=\"%1$s/\">%2$s</a> Ì %3$s ÌA[JCuð{Å·B"
+
+#: sidebar.php:30
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the year %3$s."
+msgstr "<a href=\"%1$s\">%2$s</a> uOÌ %3$s NÌA[JCuð\¦µÄ¢Ü·B"
+
+#: sidebar.php:33
+#, php-format
+msgid "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for <strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links."
+msgstr "<a href=\"%1$s/\">%2$s</a> ÌA[JCuàÅ<strong>&#8216;%3$s&#8217;</strong>ðTµÜµ½B¨TµÌàÌª©Â©çÈ¢êÍ¼ÌNðµÄÝÄ­¾³¢B"
+
+#: sidebar.php:36
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
+msgstr "<a href=\"%1$s/\">%2$s</a> uOÌA[JCuð{Å·B"
+
+#: sidebar.php:42
+msgid "Pages"
+msgstr "y[W"
+
+#: sidebar.php:44
+msgid "Archives"
+msgstr "A[JCu"
+
+#: sidebar.php:50
+msgid "Categories"
+msgstr "JeS["
+
+#: sidebar.php:55
+msgid "Meta"
+msgstr "^îñ"
+
+#: sidebar.php:59
+msgid "This page validates as XHTML 1.0 Transitional"
+msgstr "±Ìy[Wª XHTML 1.0 Transitional ÉµÄ¢é©mF·é"
+
+#: sidebar.php:59
+msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+msgstr "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+
+#: sidebar.php:60
+msgid "XHTML Friends Network"
+msgstr "XHTML Friends Network"
+
+#: sidebar.php:60
+msgid "XFN"
+msgstr "XFN"
+
+#: sidebar.php:61
+msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+
+#: single.php:46
+msgid "Edit this entry"
+msgstr "±ÌeðÒW "
+
+#~ msgid "Permanent Link: %s"
+#~ msgstr "p[}N: %s"
+#~ msgid "Sorry, no attachments matched your criteria."
+#~ msgstr "Y·éYty[WÍ©Â©èÜ¹ñÅµ½B"
+
Index: /wp-content/themes/toemon/ja_UTF.po
===================================================================
--- /wp-content/themes/toemon/ja_UTF.po	(revision 1)
+++ /wp-content/themes/toemon/ja_UTF.po	(revision 1)
@@ -0,0 +1,662 @@
+# WordPress 用日本語リソース (UTF-8) 
+# Japanese (UTF-8) translation for WordPress
+#
+# Copyright (c) 2005-2008
+# このファイルは WordPress 本体と同じライセンスのもと配布されています。
+# This file is distributed under the same license as the WordPress package.
+#
+# WordPress 日本語版作成チーム / WP ja translation team
+# <http://groups.google.com/group/wp-ja-pkg/web/members>
+#
+#  誤字脱字誤訳、あるいはよりよい訳などありましたら以下までぜひお知らせください。
+#  また、翻訳、校正、コミットをお手伝いしていただける方も随時募集中です。
+#  連絡先 / Contact: wpja.team@gmail.com (件名か内容に「日本語リソース」と入れてください)
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: WordPress 2011 to 262\n"
+"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
+"POT-Creation-Date: 2008-08-15 21:16+0900\n"
+"PO-Revision-Date: 2008-10-03 13:22+0900\n"
+"Last-Translator: KURO <info@xoops-fan.com>\n"
+"Language-Team: wp-ja <wpja.team@gmail.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Japanese\n"
+"X-Poedit-Country: JAPAN\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e;_c\n"
+"X-Poedit-Basepath: /Users/Shared/workshop\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Poedit-SearchPath-0: wp-i18n/theme/branches/2.6\n"
+
+#: 404.php:5
+msgid "Error 404 - Not Found"
+msgstr "エラー 404 - 見つかりませんでした"
+
+#: archive.php:9
+#, php-format
+msgid "Archive for the &#8216;%s&#8217; Category"
+msgstr "&#8216;%s&#8217; カテゴリーのアーカイブ"
+
+#: archive.php:11
+#, php-format
+msgid "Posts Tagged &#8216;%s&#8217;"
+msgstr "&#8216;%s&#8217; タグのついている投稿"
+
+#: archive.php:13
+#, php-format
+msgid "Archive for %s|Daily archive page"
+msgstr "%s のアーカイブ|日別アーカイブのページ"
+
+#: archive.php:13
+#: comments.php:37
+#: index.php:11
+msgid "F jS, Y"
+msgstr "Y 年 n 月 j 日"
+
+#: archive.php:15
+#, php-format
+msgid "Archive for %s|Monthly archive page"
+msgstr "%s のアーカイブ|月別アーカイブのページ"
+
+#: archive.php:15
+#: sidebar.php:27
+msgid "F, Y"
+msgstr "Y 年 n 月"
+
+#: archive.php:17
+#, php-format
+msgid "Archive for %s|Yearly archive page"
+msgstr "%s のアーカイブ|年別アーカイブのページ"
+
+#: archive.php:17
+msgid "Y"
+msgstr "Y 年"
+
+#: archive.php:19
+msgid "Author Archive"
+msgstr "投稿者のアーカイブ"
+
+#: archive.php:21
+msgid "Blog Archives"
+msgstr "ブログアーカイブ"
+
+#: archive.php:26
+#: archive.php:46
+#: index.php:23
+#: search.php:10
+#: search.php:27
+msgid "&laquo; Older Entries"
+msgstr "&laquo; 前ページへ"
+
+#: archive.php:27
+#: archive.php:47
+#: index.php:24
+#: search.php:11
+#: search.php:28
+msgid "Newer Entries &raquo;"
+msgstr "次ページへ &raquo;"
+
+#: archive.php:32
+#: index.php:10
+#: search.php:18
+#, php-format
+msgid "Permanent Link to %s"
+msgstr "%s のパーマリンク"
+
+#: archive.php:33
+#: image.php:25
+#: sidebar.php:24
+#: single.php:27
+msgid "l, F jS, Y"
+msgstr "Y 年 n 月 j 日 l"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+#: single.php:19
+msgid "Tags:"
+msgstr "タグ:"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+#, php-format
+msgid "Posted in %s"
+msgstr "カテゴリー: %s"
+
+#: index.php:28
+#, php-format
+msgid "Posted:"
+msgstr "投稿者:"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "Edit"
+msgstr "編集"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "No Comments &#187;"
+msgstr "コメントはまだありません &#187;"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "1 Comment &#187;"
+msgstr "1 件のコメント &#187;"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "% Comments &#187;"
+msgstr "% 件のコメント &#187;"
+
+#: archive.php:39
+#: index.php:17
+#: search.php:21
+msgid "Comments Closed"
+msgstr "コメントは受け付けていません。"
+
+#: archive.php:52
+#: index.php:29
+msgid "Not Found"
+msgstr "見つかりませんでした。"
+
+#: archives.php:13
+msgid "Archives by Month:"
+msgstr "月別のアーカイブ:"
+
+#: archives.php:18
+msgid "Archives by Subject:"
+msgstr "カテゴリー別アーカイブ:"
+
+#: image.php:13
+#: index.php:14
+#: single.php:16
+msgid "Read the rest of this entry &raquo;"
+msgstr "この投稿の続きを読む &raquo;"
+
+#: image.php:15
+#: page.php:11
+#: single.php:18
+msgid "Pages:"
+msgstr "ページ:"
+
+#: single.php:27
+#, php-format
+msgid "This entry was posted %1$s on %2$s at %3$s and is filed under %4$s."
+msgstr "この投稿は %1$s %2$s %3$s に %4$s カテゴリーに公開されました。"
+
+#: image.php:27
+#: single.php:28
+#, php-format
+msgid "You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed."
+msgstr "この投稿へのコメントは <a href='%s'>RSS 2.0</a> フィードで購読することができます。"
+
+#: KURO Add
+#, php-format
+msgid "You can follow any responses to this entry through the"
+msgstr "この投稿へのコメントは"
+
+#: KURO Add
+#, php-format
+msgid "feed."
+msgstr "フィードで購読することができます。"
+
+#: image.php:31
+#: single.php:32
+#, php-format
+msgid "You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
+msgstr "<a href=\"#respond\">コメントを残すか</a>、ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>することができます。"
+
+#: image.php:35
+#: single.php:36
+#, php-format
+msgid "Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback\">trackback</a> from your own site."
+msgstr "現在コメントは受け付けておりませんが、ご自分のサイトから<a href=\"%s\" rel=\"trackback\">トラックバック</a>を送ることはできます。"
+
+#: image.php:39
+#: single.php:40
+msgid "You can skip to the end and leave a response. Pinging is currently not allowed."
+msgstr "このページの一番下でコメントを残すことができます。トラックバック / ピンバックは現在受け付けていません。"
+
+#: image.php:43
+#: single.php:44
+msgid "Both comments and pings are currently closed."
+msgstr "現在コメント、トラックバックともに受け付けておりません。"
+
+#: image.php:45
+#: page.php:16
+msgid "Edit this entry."
+msgstr "この投稿を編集する。"
+
+#: comments.php:9
+msgid "This post is password protected. Enter the password to view comments."
+msgstr "この投稿はパスワードで保護されています。コメントを閲覧するにはパスワードを入力してください。"
+
+#: comments.php:23
+msgid "No Responses"
+msgstr "コメント / トラックバックはありません"
+
+#: comments.php:23
+msgid "One Response"
+msgstr "コメント / トラックバック 1 件"
+
+#: comments.php:23
+msgid "% Responses"
+msgstr "コメント / トラックバック % 件"
+
+#: comments.php:23
+#, php-format
+msgid "to &#8220;%s&#8221;"
+msgstr "<!-- to &#8220;%s&#8221; -->"
+
+#: comments.php:31
+#, php-format
+msgid "<cite>%s</cite> Says:"
+msgstr "<cite>%s</cite> より: "
+
+#: comments.php:33
+msgid "Your comment is awaiting moderation."
+msgstr "コメントは管理者の承認待ちです。"
+
+#: comments.php:37
+#, php-format
+msgid "%1$s at %2$s"
+msgstr "%1$s %2$s"
+
+#: comments.php:37
+msgid "edit"
+msgstr "編集"
+
+#: comments.php:59
+msgid "Comments are closed."
+msgstr "コメントは受け付けていません。"
+
+#: comments.php:67
+msgid "Leave a Reply"
+msgstr "コメントをどうぞ"
+
+#: comments.php:70
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr "コメントを投稿するには<a href=\"%s\">ログイン</a>してください。"
+
+#: comments.php:77
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。"
+
+#: comments.php:77
+msgid "Log out of this account"
+msgstr "このアカウントからログアウト"
+
+#: comments.php:77
+msgid "Log out &raquo;"
+msgstr "ログアウト &raquo;"
+
+#: comments.php:82
+#: comments-popup.php:64
+msgid "Name"
+msgstr "お名前"
+
+#: comments.php:82
+#: comments.php:85
+msgid "(required)"
+msgstr " (必須)"
+
+#: comments.php:85
+msgid "Mail (will not be published)"
+msgstr "メールアドレス (公開されません)"
+
+#: comments.php:88
+msgid "Website"
+msgstr "ウェブサイト"
+
+#: comments.php:92
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr "<strong>XHTML:</strong> 次のタグを使用できます: <code>%s</code>"
+
+#: comments.php:96
+msgid "Submit Comment"
+msgstr "コメント送信"
+
+#: comments-popup.php:9
+#, php-format
+msgid "%1$s - Comments on %2$s"
+msgstr "%1$s - %2$s へのコメント"
+
+#: comments-popup.php:22
+msgid "Comments"
+msgstr "コメント"
+
+#: comments-popup.php:24
+msgid "<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on this post."
+msgstr "このコメント欄の <abbr title=\"Really Simple Syndication\">RSS</abbr> フィード"
+
+#: comments-popup.php:27
+#, php-format
+msgid "The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this entry is: <em>%s</em>"
+msgstr "この投稿へのトラックバック <acronym title=\"Universal Resource Locator\">URL</acronym>: <em>%s</em>"
+
+#: comments-popup.php:45
+msgid "Comment"
+msgstr "コメント"
+
+#: comments-popup.php:45
+msgid "Trackback"
+msgstr "トラックバック"
+
+#: comments-popup.php:45
+msgid "Pingback"
+msgstr "ピンバック"
+
+#: comments-popup.php:45
+#, php-format
+msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>"
+msgstr "&#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>: %1$s より"
+
+#: comments-popup.php:51
+msgid "No comments yet."
+msgstr "コメントはまだありません。"
+
+#: comments-popup.php:55
+msgid "Leave a comment"
+msgstr "コメントをどうぞ"
+
+#: comments-popup.php:56
+#, php-format
+msgid "Line and paragraph breaks automatic, e-mail address never displayed, <acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: <code>%s</code>"
+msgstr "改行と段落タグは自動で挿入されます。メールアドレスは表示されません。利用可能な <acronym title=\"Hypertext Markup Language\">HTML</acronym> タグ: <code>%s</code>"
+
+#: comments-popup.php:60
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out &raquo;</a>"
+msgstr "<a href=\"%1$s\">%2$s</a> としてログイン中。<a href=\"%3$s\" title=\"このアカウントからログアウトする\">ログアウト &raquo;</a>"
+
+#: comments-popup.php:71
+msgid "E-mail"
+msgstr "メールアドレス"
+
+#: comments-popup.php:76
+msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+msgstr "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+
+#: comments-popup.php:81
+msgid "Your Comment"
+msgstr "コメント"
+
+#: comments-popup.php:87
+msgid "Say It!"
+msgstr "送信する !"
+
+#: comments-popup.php:92
+msgid "Sorry, the comment form is closed at this time."
+msgstr "コメントフォームは現在閉鎖中です。"
+
+#: comments-popup.php:97
+msgid "Close this window."
+msgstr "このウインドウを閉じる。"
+
+#: comments-popup.php:105
+#, php-format
+msgid "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+msgstr "Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art semantic personal publishing platform\"><strong>WordPress</strong></a>"
+
+#: footer.php:6
+#, php-format
+msgid "%1$s is proudly powered by %2$s"
+msgstr "%1$s is proudly powered by %2$s"
+
+#: footer.php:8
+#, php-format
+msgid "%1$s and %2$s."
+msgstr "%1$s と %2$s"
+
+#: footer.php:8
+msgid "Entries (RSS)"
+msgstr "投稿 (RSS)"
+
+#: footer.php:8
+msgid "Comments (RSS)"
+msgstr "コメント (RSS)"
+
+#: footer.php:9
+#, php-format
+msgid "%d queries. %s seconds."
+msgstr "%d 個のクエリと %s 秒を要しました。"
+
+#: functions.php:149
+msgid "Customize Header"
+msgstr "ヘッダーのカスタマイズ"
+
+#: functions.php:149
+#: functions.php:363
+msgid "Header Image and Color"
+msgstr "ヘッダーの背景と文字の色"
+
+#: functions.php:162
+msgid "Close Color Picker"
+msgstr "カラーピッカーを閉じる"
+
+#: functions.php:359
+msgid "Options saved."
+msgstr "設定を保存しました。"
+
+#: functions.php:376
+#: functions.php:383
+msgid "Save"
+msgstr "保存"
+
+#: functions.php:377
+msgid "Font Color:"
+msgstr "フォントの色:"
+
+#: functions.php:377
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr "CSS 色指定 (%s 、%s もしくは %s)"
+
+#: functions.php:378
+msgid "Upper Color:"
+msgstr "グラデーション上側の色:"
+
+#: functions.php:378
+#: functions.php:379
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr "16 進数のみ (%s もしくは %s)"
+
+#: functions.php:379
+msgid "Lower Color:"
+msgstr "グラデーション下側の色:"
+
+#: functions.php:381
+msgid "Toggle Text"
+msgstr "テキスト表示の切替え"
+
+#: functions.php:382
+msgid "Use Defaults"
+msgstr "デフォルト設定に戻す"
+
+#: functions.php:391
+msgid "Font Color"
+msgstr "フォントの色"
+
+#: functions.php:392
+msgid "Upper Color"
+msgstr "グラデーション上側の色"
+
+#: functions.php:393
+msgid "Lower Color"
+msgstr "グラデーション下側の色"
+
+#: functions.php:394
+msgid "Revert"
+msgstr "取り消し"
+
+#: functions.php:395
+msgid "Advanced"
+msgstr "詳細"
+
+#: functions.php:402
+msgid "Update Header &raquo;"
+msgstr "ヘッダーを更新 &raquo;"
+
+#: functions.php:408
+msgid "Font Color (CSS):"
+msgstr "フォントの色 (CSS):"
+
+#: functions.php:409
+msgid "Upper Color (HEX):"
+msgstr "グラデーション上側の色 (16 進数):"
+
+#: functions.php:410
+msgid "Lower Color (HEX):"
+msgstr "グラデーション下側の色 (16 進数):"
+
+#: functions.php:411
+msgid "Select Default Colors"
+msgstr "デフォルト設定に戻す"
+
+#: functions.php:412
+msgid "Toggle Text Display"
+msgstr "テキスト表示の切替え"
+
+#: header.php:9
+msgid "&raquo; Blog Archive"
+msgstr "&raquo; ブログアーカイブ"
+
+#: header.php:14
+#, php-format
+msgid "%s RSS Feed"
+msgstr "%s RSS フィード"
+
+#: header.php:15
+#, php-format
+msgid "%s Atom Feed"
+msgstr "%s Atom フィード"
+
+#: image.php:25
+#, php-format
+msgid "This entry was posted on %1$s at %2$s and is filed under %3$s."
+msgstr "この投稿は %1$s %2$s に %3$s カテゴリーに公開されました。"
+
+#: image.php:58
+#: single.php:58
+msgid "Sorry, no posts matched your criteria."
+msgstr "該当する投稿は見つかりませんでした。"
+
+#: index.php:30
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr "お探しの物はここにはありません。"
+
+#: links.php:11
+msgid "Links:"
+msgstr "リンク:"
+
+#: page.php:9
+msgid "Read the rest of this page &raquo;"
+msgstr "このページの続きを読む &raquo;"
+
+#: searchform.php:2
+msgid "Search for:"
+msgstr "検索:"
+
+#: searchform.php:4
+msgid "Search"
+msgstr "検索"
+
+#: search.php:7
+msgid "Search Results"
+msgstr "検索結果"
+
+#: search.php:33
+msgid "No posts found. Try a different search?"
+msgstr "見つかりませんでした。別の検索をしますか ?"
+
+#: sidebar.php:10
+msgid "Author"
+msgstr "作成者"
+
+#: sidebar.php:21
+#, php-format
+msgid "You are currently browsing the archives for the %s category."
+msgstr "%s カテゴリーのアーカイブを表示しています。"
+
+#: sidebar.php:24
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the day %3$s."
+msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s のアーカイブを表示しています。"
+
+#: sidebar.php:27
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %3$s."
+msgstr "<a href=\"%1$s/\">%2$s</a> の %3$s のアーカイブを閲覧中です。"
+
+#: sidebar.php:30
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for the year %3$s."
+msgstr "<a href=\"%1$s\">%2$s</a> ブログの %3$s 年のアーカイブを表示しています。"
+
+#: sidebar.php:33
+#, php-format
+msgid "You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for <strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links."
+msgstr "<a href=\"%1$s/\">%2$s</a> のアーカイブ内で<strong>&#8216;%3$s&#8217;</strong>を探しました。お探しのものが見つからない場合は他のリンクを試してみてください。"
+
+#: sidebar.php:36
+#, php-format
+msgid "You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
+msgstr "<a href=\"%1$s/\">%2$s</a> ブログのアーカイブを閲覧中です。"
+
+#: sidebar.php:42
+msgid "Pages"
+msgstr "ページ"
+
+#: sidebar.php:44
+msgid "Archives"
+msgstr "アーカイブ"
+
+#: sidebar.php:50
+msgid "Categories"
+msgstr "カテゴリー"
+
+#: sidebar.php:55
+msgid "Meta"
+msgstr "メタ情報"
+
+#: sidebar.php:59
+msgid "This page validates as XHTML 1.0 Transitional"
+msgstr "このページが XHTML 1.0 Transitional に準拠しているか確認する"
+
+#: sidebar.php:59
+msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+msgstr "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+
+#: sidebar.php:60
+msgid "XHTML Friends Network"
+msgstr "XHTML Friends Network"
+
+#: sidebar.php:60
+msgid "XFN"
+msgstr "XFN"
+
+#: sidebar.php:61
+msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+msgstr "Powered by WordPress, state-of-the-art semantic personal publishing platform."
+
+#: single.php:46
+msgid "Edit this entry"
+msgstr "この投稿を編集 "
+
+#~ msgid "Permanent Link: %s"
+#~ msgstr "パーマリンク: %s"
+#~ msgid "Sorry, no attachments matched your criteria."
+#~ msgstr "該当する添付ページは見つかりませんでした。"
+
Index: /wp-content/themes/toemon/kubrick.pot
===================================================================
--- /wp-content/themes/toemon/kubrick.pot	(revision 1)
+++ /wp-content/themes/toemon/kubrick.pot	(revision 1)
@@ -0,0 +1,608 @@
+# kubrick theme pot file.
+# Copyright (C) 2008 WordPress
+# This file is distributed under the same license as the kubrick theme package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: 1.6\n"
+"Report-Msgid-Bugs-To: wp-polyglots@lists.automattic.com\n"
+"POT-Creation-Date: 2008-08-15 21:16+0900\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: 404.php:5
+msgid "Error 404 - Not Found"
+msgstr ""
+
+#: archive.php:9
+#, php-format
+msgid "Archive for the &#8216;%s&#8217; Category"
+msgstr ""
+
+#: archive.php:11
+#, php-format
+msgid "Posts Tagged &#8216;%s&#8217;"
+msgstr ""
+
+#: archive.php:13
+#, php-format
+msgid "Archive for %s|Daily archive page"
+msgstr ""
+
+#: archive.php:13 comments.php:37 index.php:11
+msgid "F jS, Y"
+msgstr ""
+
+#: archive.php:15
+#, php-format
+msgid "Archive for %s|Monthly archive page"
+msgstr ""
+
+#: archive.php:15 sidebar.php:27
+msgid "F, Y"
+msgstr ""
+
+#: archive.php:17
+#, php-format
+msgid "Archive for %s|Yearly archive page"
+msgstr ""
+
+#: archive.php:17
+msgid "Y"
+msgstr ""
+
+#: archive.php:19
+msgid "Author Archive"
+msgstr ""
+
+#: archive.php:21
+msgid "Blog Archives"
+msgstr ""
+
+#: archive.php:26 archive.php:46 index.php:23 search.php:10 search.php:27
+msgid "&laquo; Older Entries"
+msgstr ""
+
+#: archive.php:27 archive.php:47 index.php:24 search.php:11 search.php:28
+msgid "Newer Entries &raquo;"
+msgstr ""
+
+#: archive.php:32 index.php:10 search.php:18
+#, php-format
+msgid "Permanent Link to %s"
+msgstr ""
+
+#: archive.php:33 image.php:25 sidebar.php:24 single.php:27
+msgid "l, F jS, Y"
+msgstr ""
+
+#: archive.php:39 index.php:17 search.php:21 single.php:19
+msgid "Tags:"
+msgstr ""
+
+#: archive.php:39 index.php:17 search.php:21
+#, php-format
+msgid "Posted in %s"
+msgstr ""
+
+#: archive.php:39 index.php:17 search.php:21
+msgid "Edit"
+msgstr ""
+
+#: archive.php:39 index.php:17 search.php:21
+msgid "No Comments &#187;"
+msgstr ""
+
+#: archive.php:39 index.php:17 search.php:21
+msgid "1 Comment &#187;"
+msgstr ""
+
+#: archive.php:39 index.php:17 search.php:21
+msgid "% Comments &#187;"
+msgstr ""
+
+#: archive.php:39 index.php:17 search.php:21
+msgid "Comments Closed"
+msgstr ""
+
+#: archive.php:52 index.php:29
+msgid "Not Found"
+msgstr ""
+
+#: archives.php:13
+msgid "Archives by Month:"
+msgstr ""
+
+#: archives.php:18
+msgid "Archives by Subject:"
+msgstr ""
+
+#: image.php:13 index.php:14 single.php:16
+msgid "Read the rest of this entry &raquo;"
+msgstr ""
+
+#: image.php:15 page.php:11 single.php:18
+msgid "Pages:"
+msgstr ""
+
+#: single.php:27
+#, php-format
+msgid "This entry was posted %1$s on %2$s at %3$s and is filed under %4$s."
+msgstr ""
+
+#: image.php:27 single.php:28
+#, php-format
+msgid ""
+"You can follow any responses to this entry through the <a href='%s'>RSS 2.0</"
+"a> feed."
+msgstr ""
+
+#: image.php:31 single.php:32
+#, php-format
+msgid ""
+"You can <a href=\"#respond\">leave a response</a>, or <a href=\"%s\" rel="
+"\"trackback\">trackback</a> from your own site."
+msgstr ""
+
+#: image.php:35 single.php:36
+#, php-format
+msgid ""
+"Responses are currently closed, but you can <a href=\"%s\" rel=\"trackback"
+"\">trackback</a> from your own site."
+msgstr ""
+
+#: image.php:39 single.php:40
+msgid ""
+"You can skip to the end and leave a response. Pinging is currently not "
+"allowed."
+msgstr ""
+
+#: image.php:43 single.php:44
+msgid "Both comments and pings are currently closed."
+msgstr ""
+
+#: image.php:45 page.php:16
+msgid "Edit this entry."
+msgstr ""
+
+#: comments.php:9
+msgid "This post is password protected. Enter the password to view comments."
+msgstr ""
+
+#: comments.php:23
+msgid "No Responses"
+msgstr ""
+
+#: comments.php:23
+msgid "One Response"
+msgstr ""
+
+#: comments.php:23
+msgid "% Responses"
+msgstr ""
+
+#: comments.php:23
+#, php-format
+msgid "to &#8220;%s&#8221;"
+msgstr ""
+
+#: comments.php:31
+#, php-format
+msgid "<cite>%s</cite> Says:"
+msgstr ""
+
+#: comments.php:33
+msgid "Your comment is awaiting moderation."
+msgstr ""
+
+#: comments.php:37
+#, php-format
+msgid "%1$s at %2$s"
+msgstr ""
+
+#: comments.php:37
+msgid "edit"
+msgstr ""
+
+#: comments.php:59
+msgid "Comments are closed."
+msgstr ""
+
+#: comments.php:67
+msgid "Leave a Reply"
+msgstr ""
+
+#: comments.php:70
+#, php-format
+msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
+msgstr ""
+
+#: comments.php:77
+#, php-format
+msgid "Logged in as <a href=\"%1$s\">%2$s</a>."
+msgstr ""
+
+#: comments.php:77
+msgid "Log out of this account"
+msgstr ""
+
+#: comments.php:77
+msgid "Log out &raquo;"
+msgstr ""
+
+#: comments.php:82 comments-popup.php:64
+msgid "Name"
+msgstr ""
+
+#: comments.php:82 comments.php:85
+msgid "(required)"
+msgstr ""
+
+#: comments.php:85
+msgid "Mail (will not be published)"
+msgstr ""
+
+#: comments.php:88
+msgid "Website"
+msgstr ""
+
+#: comments.php:92
+#, php-format
+msgid "<strong>XHTML:</strong> You can use these tags: <code>%s</code>"
+msgstr ""
+
+#: comments.php:96
+msgid "Submit Comment"
+msgstr ""
+
+#: comments-popup.php:9
+#, php-format
+msgid "%1$s - Comments on %2$s"
+msgstr ""
+
+#: comments-popup.php:22
+msgid "Comments"
+msgstr ""
+
+#: comments-popup.php:24
+msgid ""
+"<abbr title=\"Really Simple Syndication\">RSS</abbr> feed for comments on "
+"this post."
+msgstr ""
+
+#: comments-popup.php:27
+#, php-format
+msgid ""
+"The <abbr title=\"Universal Resource Locator\">URL</abbr> to TrackBack this "
+"entry is: <em>%s</em>"
+msgstr ""
+
+#: comments-popup.php:45
+msgid "Comment"
+msgstr ""
+
+#: comments-popup.php:45
+msgid "Trackback"
+msgstr ""
+
+#: comments-popup.php:45
+msgid "Pingback"
+msgstr ""
+
+#: comments-popup.php:45
+#, php-format
+msgid "by %1$s &#8212; %2$s @ <a href=\"#comment-%3$s\">%4$s</a>"
+msgstr ""
+
+#: comments-popup.php:51
+msgid "No comments yet."
+msgstr ""
+
+#: comments-popup.php:55
+msgid "Leave a comment"
+msgstr ""
+
+#: comments-popup.php:56
+#, php-format
+msgid ""
+"Line and paragraph breaks automatic, e-mail address never displayed, "
+"<acronym title=\"Hypertext Markup Language\">HTML</acronym> allowed: <code>%"
+"s</code>"
+msgstr ""
+
+#: comments-popup.php:60
+#, php-format
+msgid ""
+"Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of "
+"this account\">Log out &raquo;</a>"
+msgstr ""
+
+#: comments-popup.php:71
+msgid "E-mail"
+msgstr ""
+
+#: comments-popup.php:76
+msgid "<abbr title=\"Universal Resource Locator\">URL</abbr>"
+msgstr ""
+
+#: comments-popup.php:81
+msgid "Your Comment"
+msgstr ""
+
+#: comments-popup.php:87
+msgid "Say It!"
+msgstr ""
+
+#: comments-popup.php:92
+msgid "Sorry, the comment form is closed at this time."
+msgstr ""
+
+#: comments-popup.php:97
+msgid "Close this window."
+msgstr ""
+
+#: comments-popup.php:105
+#, php-format
+msgid ""
+"Powered by <a href=\"%s\" title=\"Powered by WordPress, state-of-the-art "
+"semantic personal publishing platform\"><strong>WordPress</strong></a>"
+msgstr ""
+
+#: footer.php:6
+#, php-format
+msgid "%1$s is proudly powered by %2$s"
+msgstr ""
+
+#: footer.php:8
+#, php-format
+msgid "%1$s and %2$s."
+msgstr ""
+
+#: footer.php:8
+msgid "Entries (RSS)"
+msgstr ""
+
+#: footer.php:8
+msgid "Comments (RSS)"
+msgstr ""
+
+#: footer.php:9
+#, php-format
+msgid "%d queries. %s seconds."
+msgstr ""
+
+#: functions.php:149
+msgid "Customize Header"
+msgstr ""
+
+#: functions.php:149 functions.php:363
+msgid "Header Image and Color"
+msgstr ""
+
+#: functions.php:162
+msgid "Close Color Picker"
+msgstr ""
+
+#: functions.php:359
+msgid "Options saved."
+msgstr ""
+
+#: functions.php:376 functions.php:383
+msgid "Save"
+msgstr ""
+
+#: functions.php:377
+msgid "Font Color:"
+msgstr ""
+
+#: functions.php:377
+#, php-format
+msgid "Any CSS color (%s or %s or %s)"
+msgstr ""
+
+#: functions.php:378
+msgid "Upper Color:"
+msgstr ""
+
+#: functions.php:378 functions.php:379
+#, php-format
+msgid "HEX only (%s or %s)"
+msgstr ""
+
+#: functions.php:379
+msgid "Lower Color:"
+msgstr ""
+
+#: functions.php:381
+msgid "Toggle Text"
+msgstr ""
+
+#: functions.php:382
+msgid "Use Defaults"
+msgstr ""
+
+#: functions.php:391
+msgid "Font Color"
+msgstr ""
+
+#: functions.php:392
+msgid "Upper Color"
+msgstr ""
+
+#: functions.php:393
+msgid "Lower Color"
+msgstr ""
+
+#: functions.php:394
+msgid "Revert"
+msgstr ""
+
+#: functions.php:395
+msgid "Advanced"
+msgstr ""
+
+#: functions.php:402
+msgid "Update Header &raquo;"
+msgstr ""
+
+#: functions.php:408
+msgid "Font Color (CSS):"
+msgstr ""
+
+#: functions.php:409
+msgid "Upper Color (HEX):"
+msgstr ""
+
+#: functions.php:410
+msgid "Lower Color (HEX):"
+msgstr ""
+
+#: functions.php:411
+msgid "Select Default Colors"
+msgstr ""
+
+#: functions.php:412
+msgid "Toggle Text Display"
+msgstr ""
+
+#: header.php:9
+msgid "&raquo; Blog Archive"
+msgstr ""
+
+#: header.php:14
+#, php-format
+msgid "%s RSS Feed"
+msgstr ""
+
+#: header.php:15
+#, php-format
+msgid "%s Atom Feed"
+msgstr ""
+
+#: image.php:25
+#, php-format
+msgid "This entry was posted on %1$s at %2$s and is filed under %3$s."
+msgstr ""
+
+#: image.php:58 single.php:58
+msgid "Sorry, no posts matched your criteria."
+msgstr ""
+
+#: index.php:30
+msgid "Sorry, but you are looking for something that isn&#8217;t here."
+msgstr ""
+
+#: links.php:11
+msgid "Links:"
+msgstr ""
+
+#: page.php:9
+msgid "Read the rest of this page &raquo;"
+msgstr ""
+
+#: searchform.php:2
+msgid "Search for:"
+msgstr ""
+
+#: searchform.php:4
+msgid "Search"
+msgstr ""
+
+#: search.php:7
+msgid "Search Results"
+msgstr ""
+
+#: search.php:33
+msgid "No posts found. Try a different search?"
+msgstr ""
+
+#: sidebar.php:10
+msgid "Author"
+msgstr ""
+
+#: sidebar.php:21
+#, php-format
+msgid "You are currently browsing the archives for the %s category."
+msgstr ""
+
+#: sidebar.php:24
+#, php-format
+msgid ""
+"You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for "
+"the day %3$s."
+msgstr ""
+
+#: sidebar.php:27
+#, php-format
+msgid ""
+"You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for %"
+"3$s."
+msgstr ""
+
+#: sidebar.php:30
+#, php-format
+msgid ""
+"You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives for "
+"the year %3$s."
+msgstr ""
+
+#: sidebar.php:33
+#, php-format
+msgid ""
+"You have searched the <a href=\"%1$s/\">%2$s</a> blog archives for "
+"<strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything in "
+"these search results, you can try one of these links."
+msgstr ""
+
+#: sidebar.php:36
+#, php-format
+msgid ""
+"You are currently browsing the <a href=\"%1$s/\">%2$s</a> blog archives."
+msgstr ""
+
+#: sidebar.php:42
+msgid "Pages"
+msgstr ""
+
+#: sidebar.php:44
+msgid "Archives"
+msgstr ""
+
+#: sidebar.php:50
+msgid "Categories"
+msgstr ""
+
+#: sidebar.php:55
+msgid "Meta"
+msgstr ""
+
+#: sidebar.php:59
+msgid "This page validates as XHTML 1.0 Transitional"
+msgstr ""
+
+#: sidebar.php:59
+msgid "Valid <abbr title=\"eXtensible HyperText Markup Language\">XHTML</abbr>"
+msgstr ""
+
+#: sidebar.php:60
+msgid "XHTML Friends Network"
+msgstr ""
+
+#: sidebar.php:60
+msgid "XFN"
+msgstr ""
+
+#: sidebar.php:61
+msgid ""
+"Powered by WordPress, state-of-the-art semantic personal publishing platform."
+msgstr ""
+
+#: single.php:46
+msgid "Edit this entry"
+msgstr ""
Index: /wp-content/themes/toemon/links.php
===================================================================
--- /wp-content/themes/toemon/links.php	(revision 1)
+++ /wp-content/themes/toemon/links.php	(revision 1)
@@ -0,0 +1,25 @@
+<?php
+/*
+Template Name: Links
+*/
+?>
+
+<?php get_header(); ?>
+
+<div id="xpress_content" class="widecolumn">
+
+    <div id="xpress_header">
+    	<div id="xpress_headerimg">
+    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
+    		<div class="description"><?php bloginfo('description'); ?></div>
+    	</div>
+    </div>
+
+<h2><?php _e('Links:', 'kubrick'); ?></h2>
+<ul>
+<?php wp_list_bookmarks(); ?>
+</ul>
+
+</div>
+
+<?php get_footer(); ?>
Index: /wp-content/themes/toemon/page.php
===================================================================
--- /wp-content/themes/toemon/page.php	(revision 1)
+++ /wp-content/themes/toemon/page.php	(revision 1)
@@ -0,0 +1,41 @@
+<?php get_header(); ?>
+
+   <div id="xpress_wrap">
+	   
+	<?php if(is_sidbar_disp()) : ?>
+	   
+		<div id="xpress_content" class="narrowcolumn">
+		
+	<?php else : ?>
+	
+		<div id="xpress_content" class="narrowcolumn_nonside">
+		
+	<?php endif; ?>
+
+    <div id="xpress_header">
+    	<div id="xpress_headerimg">
+    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
+    		<div class="description"><?php bloginfo('description'); ?></div>
+    	</div>
+    </div>
+
+		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+		<div class="post" id="post-<?php the_ID(); ?>">
+		<?php if (function_exists('hotDates')) { hotDates(); }?>
+		<h2><?php the_title(); ?></h2>
+			<div class="entry">
+				<?php the_content('<p class="serif">' . __('Read the rest of this page &raquo;', 'kubrick') . '</p>'); ?>
+
+				<?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'kubrick') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
+
+			</div>
+		</div>
+		<?php endwhile; endif; ?>
+	<?php edit_post_link(__('Edit this entry.', 'kubrick'), '<p>', '</p>'); ?>
+
+	</div>
+       </div>
+
+<?php get_sidebar(); ?>
+
+<?php get_footer(); ?>
Index: /wp-content/themes/toemon/rtl.css
===================================================================
--- /wp-content/themes/toemon/rtl.css	(revision 1)
+++ /wp-content/themes/toemon/rtl.css	(revision 1)
@@ -0,0 +1,106 @@
+/*
+Theme name: WordPress Default - kubrick -
+Editors: Navid Kashani
+Persian Wordpress Project : wp-persian.com
+*/
+body, .commentlist li, #commentform input, #commentform textarea, #commentform p, #sidebar, #wp-calendar caption  {
+	font-family:tahoma, arial;
+}
+#page {
+	text-align:right;
+	direction:rtl;
+}
+h1, h2, h3, #sidebar h2 {
+	font-family:arial, tahoma;
+}
+.commentlist li .avatar {
+	float:left;
+}
+#header {
+	margin:0 1px 0 0;
+}
+.narrowcolumn {
+	float:right;
+	padding: 0 45px 20px 0;
+}
+.widecolumn {
+	margin: 5px 150px 0 0;
+}
+.widecolumn .smallattachment {
+	margin: 5px 0 5px 5px;
+}
+.postmetadata {
+	clear:right;
+}
+#sidebar {
+	margin-left: 0;
+	margin-right: 545px;
+}
+img.alignright {
+	margin: 0 7px 2px 0;
+}
+
+img.alignleft {
+	margin: 0 0 2px 7px;
+}
+
+.alignright {
+	float: left;
+}
+
+.alignleft {
+	float: right;
+}
+code {
+	display:block;
+	direction:ltr;
+	text-align:left;
+}
+acronym, abbr, span.caps {
+	letter-spacing:0; /* fix opera bug */
+}
+html>body .entry ul {
+	padding:0 10px 0 0;
+	text-indent:10px;
+}
+html>body .entry li {
+	margin: 7px 10px 8px 0;
+}
+.entry ol {
+	padding: 0 35px 0 0;
+}
+#sidebar ul ul, #sidebar ul ol {
+	margin: 5px 10px 0 0;
+}
+#sidebar ul ul ul, #sidebar ul ol {
+	margin: 0 10px 0 0;
+}
+#commentform input {
+	margin: 5px 0 1px 5px;
+}
+#commentform #submit {
+	float:left;
+}
+.commentlist p {
+	margin: 10px 0 10px 5px;
+}
+#wp-calendar #next a {
+	padding-right:0;
+	padding-left:10px;
+	text-align:left;
+}
+#wp-calendar #prev a {
+	padding-left:0;
+	padding-right:10px;
+	text-align:right;
+}
+blockquote {
+	margin: 15px 10px 0 30px;
+	padding-left: 0;
+	padding-right: 20px;
+	border-left: 0 none;
+	border-right: 5px solid #ddd;
+}
+#email, #url {
+	direction:ltr;
+}
Index: /wp-content/themes/toemon/search.php
===================================================================
--- /wp-content/themes/toemon/search.php	(revision 1)
+++ /wp-content/themes/toemon/search.php	(revision 1)
@@ -0,0 +1,61 @@
+<?php get_header(); ?>
+       
+       <div id="xpress_wrap">
+	   
+	<?php if(is_sidbar_disp()) : ?>
+	   
+		<div id="xpress_content" class="narrowcolumn">
+		
+	<?php else : ?>
+	
+		<div id="xpress_content" class="narrowcolumn_nonside">
+		
+	<?php endif; ?>
+
+    <div id="xpress_header">
+    	<div id="xpress_headerimg">
+    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
+    		<div class="description"><?php bloginfo('description'); ?></div>
+    	</div>
+    </div>
+
+	<?php if (have_posts()) : ?>
+
+		<h2 class="pagetitle"><?php _e('Search Results', 'kubrick'); ?></h2>
+
+		<div class="xpress_navigation">
+			<div class="alignleft"><?php next_posts_link(__('&laquo; Older Entries', 'kubrick')) ?></div>
+			<div class="alignright"><?php previous_posts_link(__('Newer Entries &raquo;', 'kubrick')) ?></div>
+		</div>
+
+
+		<?php while (have_posts()) : the_post(); ?>
+
+			<div class="post">
+				<?php if (function_exists('hotDates')) { hotDates(); }?>
+				<h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h3>
+				<small><?php the_time('l, F jS, Y') ?></small>
+
+				<p class="postmetadata"><?php if(function_exists('the_tags')) : ?><?php the_tags(__('Tags:', 'kubrick') . ' ', ', ', '<br />'); ?><?php endif; ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?>  <?php comments_popup_link(__('No Comments &#187;', 'kubrick'), __('1 Comment &#187;', 'kubrick'), __('% Comments &#187;', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?></p>
+			</div>
+
+		<?php endwhile; ?>
+
+		<div class="xpress_navigation">
+			<div class="alignleft"><?php next_posts_link(__('&laquo; Older Entries', 'kubrick')) ?></div>
+			<div class="alignright"><?php previous_posts_link(__('Newer Entries &raquo;', 'kubrick')) ?></div>
+		</div>
+
+	<?php else : ?>
+
+		<h2 class="center"><?php _e('No posts found. Try a different search?', 'kubrick'); ?></h2>
+		<?php include (get_template_directory() . '/searchform.php'); ?>
+
+	<?php endif; ?>
+
+	</div>
+       </div>
+
+<?php get_sidebar(); ?>
+
+<?php get_footer(); ?>
Index: /wp-content/themes/toemon/searchform.php
===================================================================
--- /wp-content/themes/toemon/searchform.php	(revision 1)
+++ /wp-content/themes/toemon/searchform.php	(revision 1)
@@ -0,0 +1,6 @@
+<form method="get" id="searchform" action="<?php bloginfo('url'); ?>/">
+<label class="hidden" for="s"><?php _e('Search for:', 'kubrick'); ?></label>
+<div><input type="text" value="<?php if(function_exists('the_serch_query')) : ?><?php the_search_query(); ?><?php else : ?><?php echo attribute_escape($s); ?><?php endif; ?>" name="s" id="s" />
+<input type="submit" id="searchsubmit" value="<?php _e('Search', 'kubrick'); ?>" />
+</div>
+</form>
Index: /wp-content/themes/toemon/sidebar.php
===================================================================
--- /wp-content/themes/toemon/sidebar.php	(revision 1)
+++ /wp-content/themes/toemon/sidebar.php	(revision 1)
@@ -0,0 +1,75 @@
+	<div class="xpress_sidebar">
+		<ul>
+			<?php 	/* Widgetized sidebar, if you have the plugin installed. */
+					if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
+			<li>
+				<?php include (get_template_directory() . '/searchform.php'); ?>
+			</li>
+
+			<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.
+			<li><h2><?php _e('Author', 'kubrick'); ?></h2>
+			<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
+			</li>
+			-->
+
+			<?php if ( is_404() || is_category() || is_day() || is_month() ||
+						is_year() || is_search() || is_paged() ) {
+			?> <li>
+
+			<?php /* If this is a 404 page */ if (is_404()) { ?>
+			<?php /* If this is a category archive */ } elseif (is_category()) { ?>
+			<p><?php printf(__('You are currently browsing the archives for the %s category.', 'kubrick'), single_cat_title('', false)); ?></p>
+
+			<?php /* If this is a yearly archive */ } elseif (is_day()) { ?>
+			<p><?php printf(__('You are currently browsing the <a href="%1$s/">%2$s</a> blog archives for the day %3$s.', 'kubrick'), get_bloginfo('url'), get_bloginfo('name'), get_the_time(__('l, F jS, Y', 'kubrick'))); ?></p>
+
+			<?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
+			<p><?php printf(__('You are currently browsing the <a href="%1$s/">%2$s</a> blog archives for %3$s.', 'kubrick'), get_bloginfo('url'), get_bloginfo('name'), get_the_time(__('F, Y', 'kubrick'))); ?></p>
+
+			<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
+			<p><?php printf(__('You are currently browsing the <a href="%1$s/">%2$s</a> blog archives for the year %3$s.', 'kubrick'), get_bloginfo('url'), get_bloginfo('name'), get_the_time('Y')); ?></p>
+
+			<?php /* If this is a monthly archive */ } elseif (is_search()) { ?>
+			<p><?php printf(__('You have searched the <a href="%1$s/">%2$s</a> blog archives for <strong>&#8216;%3$s&#8217;</strong>. If you are unable to find anything in these search results, you can try one of these links.', 'kubrick'), get_bloginfo('url'), get_bloginfo('name'), get_search_query()); ?></p>
+
+			<?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
+			<p><?php printf(__('You are currently browsing the <a href="%1$s/">%2$s</a> blog archives.', 'kubrick'), get_bloginfo('url'), get_bloginfo('name')); ?></p>
+
+			<?php } ?>
+
+			</li> <?php }?>
+
+			<?php wp_list_pages('title_li=<h2>' . __('Pages', 'kubrick') . '</h2>' ); ?>
+
+			<li><h2><?php _e('Archives', 'kubrick'); ?></h2>
+				<ul>
+				<?php wp_get_archives('type=monthly'); ?>
+				</ul>
+			</li>
+            
+            <?php if(function_exists('wp_list_categories')) : ?>
+			<?php wp_list_categories('show_count=1&title_li=<h2>' . __('Categories', 'kubrick') . '</h2>'); ?>
+			<?php else : ?>
+			<li><h2><?php _e('Categories', 'kubrick'); ?></h2>
+			<ul><?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?></ul></li>
+			<?php endif; ?>
+
+
+			<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
+            <?php if(function_exists('wp_list_bookmarks')) : ?>
+				<?php wp_list_bookmarks(); ?>
+			<?php endif; ?>
+				<li><h2><?php _e('Meta', 'kubrick'); ?></h2>
+				<ul>
+					<?php wp_register(); ?>
+					<li><?php wp_loginout(); ?></li>
+					<li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional', 'kubrick'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>', 'kubrick'); ?></a></li>
+					<li><a href="http://gmpg.org/xfn/"><abbr title="<?php _e('XHTML Friends Network', 'kubrick'); ?>"><?php _e('XFN', 'kubrick'); ?></abbr></a></li>
+					<li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.', 'kubrick'); ?>">WordPress</a></li>
+					<?php wp_meta(); ?>
+				</ul>
+				</li>
+			<?php } ?>
+			<?php endif; ?>
+		</ul>
+	</div>
Index: /wp-content/themes/toemon/single.php
===================================================================
--- /wp-content/themes/toemon/single.php	(revision 1)
+++ /wp-content/themes/toemon/single.php	(revision 1)
@@ -0,0 +1,77 @@
+<?php get_header(); ?>
+
+	<div id="xpress_content" class="widecolumn">
+
+    <div id="xpress_header">
+    	<div id="xpress_headerimg">
+    		<h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
+    		<div class="description"><?php bloginfo('description'); ?></div>
+    	</div>
+    </div>
+
+	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+
+		<div class="xpress_single_navigation">
+			<div class="alignleft"><?php kuro_previous_post_link('&laquo; %link') ?></div>
+			<div class="alignright"><?php kuro_next_post_link('%link &raquo;') ?></div>
+		</div>
+
+		<div class="post" id="post-<?php the_ID(); ?>">
+			<?php if (function_exists('hotDates')) { hotDates(); }?>
+			<h2><?php the_title(); ?></h2>
+			<small><?php the_time(__('F jS, Y', 'kubrick')) ?> <!-- by <?php the_author() ?> --></small>
+
+			<div class="entry">
+				<?php the_content('<p class="serif">' . __('Read the rest of this entry &raquo;', 'kubrick') . '</p>'); ?>
+
+				<?php wp_link_pages(array('before' => '<p><strong>' . __('Pages:', 'kubrick') . '</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
+				<?php echo '<p class="postmeta">' ;/* _e('Posted:', 'kubrick'); echo '&nbsp;'; the_author_posts_link(); echo '<br />' ; */?><?php if(function_exists('the_tags')) : ?><?php the_tags(__('Tags:', 'kubrick') . ' ', ', ', '<br />'); ?><?php endif; ?><?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(' &bull; ') . '</p>'); ?>
+				
+				<p class="postmetadata alt">
+					<small>
+						<?php /* This is commented, because it requires a little adjusting sometimes.
+							You'll need to download this plugin, and follow the instructions:
+							http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */
+							/* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); $time_since = sprintf(__('%s ago', 'kubrick'), time_since($entry_datetime)); */ ?>
+						<?php printf(__('This entry was posted %1$s on %2$s at %3$s and is filed under %4$s.', 'kubrick'), $time_since, get_the_time(__('l, F jS, Y', 'kubrick')), get_the_time(), get_the_category_list(' &bull; ')); ?>
+						<?php if (function_exists('get_post_comments_feed_link')) : ?>
+						<?php printf(__("You can follow any responses to this entry through the <a href='%s'>RSS 2.0</a> feed.", "kubrick"), get_post_comments_feed_link()); ?> 
+                        <?php else : ?>
+						<?php _e('You can follow any responses to this entry through the', 'kubrick'); ?><?php comments_rss_link('RSS 2.0'); ?><?php _e('feed.', 'kubrick'); ?>
+						<?php endif; ?>
+
+						<?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
+							// Both Comments and Pings are open ?>
+							<?php printf(__('You can <a href="#respond">leave a response</a>, or <a href="%s" rel="trackback">trackback</a> from your own site.', 'kubrick'), trackback_url(false)); ?>
+
+						<?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
+							// Only Pings are Open ?>
+							<?php printf(__('Responses are currently closed, but you can <a href="%s" rel="trackback">trackback</a> from your own site.', 'kubrick'), trackback_url(false)); ?>
+
+						<?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
+							// Comments are open, Pings are not ?>
+							<?php _e('You can skip to the end and leave a response. Pinging is currently not allowed.', 'kubrick'); ?>
+
+						<?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
+							// Neither Comments, nor Pings are open ?>
+							<?php _e('Both comments and pings are currently closed.', 'kubrick'); ?>
+
+						<?php } edit_post_link(__('Edit this entry', 'kubrick'),'','.'); ?>
+
+					</small>
+				</p>
+
+			</div>
+		</div>
+
+	<?php comments_template(); ?>
+
+	<?php endwhile; else: ?>
+
+		<p><?php _e('Sorry, no posts matched your criteria.', 'kubrick'); ?></p>
+
+<?php endif; ?>
+
+	</div>
+
+<?php get_footer(); ?>
Index: /wp-content/themes/toemon/style.css
===================================================================
--- /wp-content/themes/toemon/style.css	(revision 1)
+++ /wp-content/themes/toemon/style.css	(revision 1)
@@ -0,0 +1,616 @@
+/*
+Theme Name: Toemon's TEST
+Theme URI: http://www.toemon.com/
+Description: The theme for XPress series
+Version: 0.5
+Author: KURO
+Author URI: http://xoops-fan.com/
+Tags: XPressME,toemon,KURO
+
+*/
+
+
+
+/* Begin Typography & Colors */
+
+#xpress_content {
+	font-size: 1.0em
+	}
+
+.widecolumn .entry {
+	font-size: 1.05em;
+	}
+
+.narrowcolumn .entry,.narrowcolumn_nonside .entry, .widecolumn .entry {
+	line-height: 1.4em;
+	}
+	
+p.postmeta{
+	line-height: 1.2em;
+	font-size: 0.9em;
+	}
+
+#xpress_page .alt {
+	background-color: #f8f8f8;
+	border-top: 1px solid #ddd;
+	border-bottom: 1px solid #ddd;
+	}
+
+#xpress_page small {
+	font-family: Arial, Helvetica, Sans-Serif;
+	font-size: 0.8em;
+	line-height: 1.5em;
+	}
+
+#xpress_headerimg .description {
+	font-size: 1.2em;
+	}
+
+#xpress_page h1,
+#xpress_page h2 {
+	font-size: 1.5em;
+	}
+
+.xpress_pagetitle {
+	font-size: 1.5em;
+	font-weight: bold;
+	}
+
+.xpress_sidebar h2 {
+	font-size: 1.1em;
+	}
+
+#xpress_page h3 {
+	font-size: 1.3em;
+	}
+	
+.xpress_commentlist li, #xpress_commentform input, #xpress_commentform textarea {
+	font-size: 11px;
+	}
+
+.xpress_commentlist li {
+	font-weight: bold;
+	list-style-type: none!important;
+	}
+
+.xpress_commentlist li .avatar { 
+	float: right;
+	border: 1px solid #eee;
+	padding: 2px;
+	background: #fff;
+	}
+
+.xpress_commentlist cite, .xpress_commentlist cite a {
+	font-weight: bold;
+	font-style: normal;
+	font-size: 1.1em;
+	}
+
+.xpress_commentlist p {
+	font-weight: normal;
+	line-height: 1.5em;
+	text-transform: none;
+	}
+
+.xpress_commentmetadata {
+	font-size: 11px;
+	font-weight: normal;
+	}
+
+.postmetadata {
+	font-size: 0.9em;
+	}
+
+.xpress_sidebar {
+	font-size: 0.8em;
+	}
+
+#xpress_page small, .xpress_sidebar ul ul li, .xpress_sidebar ul ol li, .nocomments, .postmetadata, blockquote, strike {
+	color: #777;
+	}
+
+#xpress_page code {
+	font-size: 1.1em;
+	}
+
+acronym, abbr, span.caps
+{
+	font-size: 0.9em;
+	letter-spacing: .07em;
+	}
+
+#wp-calendar #prev a, #wp-calendar #next a {
+	font-size: 9pt;
+	}
+
+#wp-calendar a {
+	text-decoration: none;
+	}
+
+#wp-calendar caption {
+	font: bold 1.3em;
+	text-align: center;
+	}
+
+#wp-calendar th {
+	font-style: normal;
+	text-transform: capitalize;
+	}
+	
+#xpress_footer p {
+	font-size: 0.9em;
+}	
+/* End Typography & Colors */
+
+
+
+/* Begin Structure */
+p{
+	margin:0;
+	padding:0;
+}
+
+#xpress_page {
+	padding: 0;
+	width: 100%;
+	margin: 0;
+	text-align:left;
+	}
+
+#xpress_header {
+	margin:0 0 30px;
+	padding:0 2px 3px;
+	background:url(./images/titleline.jpg) no-repeat left bottom;
+	}
+
+#xpress_wrap {
+	float: left;
+	width: 100%;
+	margin-right: -205px;
+	}
+
+#xpress_content {
+	padding: 0 15px;
+	}
+	
+#xpress_content.narrowcolumn {
+	margin-right: 205px;
+	}
+	
+.widecolumn { 
+	width: 500px; /*width of single page*/
+	margin: 0 auto;
+	}	
+	
+.post hr {
+	display: block;
+	}
+	
+#xpress_content .post {
+	width: 100%;
+	margin: 0 0 20px;
+	padding-top:20px;
+	clear: both;
+	}	
+	
+.post h2 {
+	margin: 0;
+	}
+
+.entry {
+	clear:both;
+	padding:10px 0 0;
+	}
+	
+.entry p{
+	padding: 5px 0;
+	}
+
+p.postmeta{
+	padding-top: 20px;
+	}
+	
+.narrowcolumn_nonside .postmetadata,
+.narrowcolumn .postmetadata {
+	padding-top: 10px;
+	/*text-align:center;*//*postmeta of index page*/
+	}
+
+.widecolumn .postmetadata {
+	margin: 30px 0;
+	padding:5px 10px;
+	}
+
+.widecolumn .smallattachment {
+	text-align: center;
+	float: left;
+	width: 128px;
+	margin: 5px 5px 5px 0px;
+}
+
+.widecolumn .attachment {
+	text-align: center;
+	margin: 5px 0px;
+}
+
+
+
+#xpress_page .clear {
+	clear: both;
+}
+
+#xpress_footer {
+	padding-top: 40px;
+	margin: 0 auto;
+	width: 100%;
+	clear: both;
+	}
+
+#xpress_footer p {
+	margin: 0;
+	padding: 20px 0;
+	text-align: center;
+	}
+	
+.dateblock{
+	margin:-12px 0 0 -5px!important;
+	}
+
+/* End Structure */
+
+
+/*	Begin Headers */
+#xpress_page h1 {
+	padding-top: 20px;
+	margin: 0 0 5px;
+	}
+
+.xpress_sidebar h2 {
+	margin: 5px 0 0;
+	padding: 0;
+	}
+
+#xpress_page h3 {
+	padding: 0;
+	margin: 0;
+	}
+
+h3.xpress_comments {
+	padding: 0;
+	margin: 40px auto 20px ;
+	}
+/* End Headers */
+
+/* Begin Images */
+
+/*	Using 'class="alignright"' on an image will (who would've
+	thought?!) align the image to the right. And using 'class="centered',
+	will of course center the image. This is much better than using
+	align="center", being much more futureproof (and valid) */
+
+img.centered {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+	}
+
+img.alignright {
+	padding: 4px;
+	margin: 0 0 2px 7px;
+	display: inline;
+	}
+
+img.alignleft {
+	padding: 4px;
+	margin: 0 7px 2px 0;
+	display: inline;
+	}
+
+.alignright {
+	float: right;
+	}
+
+.alignleft {
+	float: left
+	}
+/* End Images */
+
+
+
+/* Begin Lists
+
+	Special stylized non-IE bullets
+	Do not work in Internet Explorer, which merely default to normal bullets. */
+
+html>body .entry ul {
+	margin-left: 0px;
+	padding: 0 0 0 30px;
+	list-style: none;
+	padding-left: 10px;
+	text-indent: -10px;
+	}
+
+html>body .entry li {
+	margin: 7px 0 8px 10px;
+	}
+
+.entry ul li:before, .xpress_sidebar ul ul li:before {
+	content: "\00BB \0020";
+	}
+	
+.entry ol {
+	padding: 0 0 0 35px;
+	margin: 0;
+	}
+
+.entry ol li {
+	margin: 0;
+	padding: 0;
+	}
+
+.postmetadata ul, .postmetadata li {
+	display: inline;
+	list-style-type: none;
+	list-style-image: none;
+	}
+
+.xpress_sidebar ul, .xpress_sidebar ul ol {
+	margin: 0;
+	padding: 0;
+	}
+
+.xpress_sidebar ul li {
+	list-style-type: none;
+	list-style-image: none;
+	margin-bottom: 15px;
+	}
+
+.xpress_sidebar ul p, .xpress_sidebar ul select {
+	margin: 5px 0 8px;
+	}
+
+.xpress_sidebar ul ul, .xpress_sidebar ul ol {
+	margin: 5px 0 0 10px;
+	}
+
+.xpress_sidebar ul ul ul, .xpress_sidebar ul ol {
+	margin: 0 0 0 10px;
+	}
+
+#xpress_page ol li, .xpress_sidebar ul ol li {
+	list-style: decimal outside;
+	}
+
+.xpress_sidebar ul ul li, .xpress_sidebar ul ol li {
+	margin: 3px 0 0;
+	padding: 0;
+	}
+/* End Entry Lists */
+
+
+
+/* Begin Form Elements */
+.xpress_sidebar #searchform {
+	margin: 10px auto;
+	padding: 5px 3px;
+	text-align: center;
+	}
+
+.xpress_sidebar #searchform #s {
+	width: 108px;
+	padding: 2px;
+	}
+
+.xpress_sidebar #searchsubmit {
+	padding: 1px;
+	}
+
+.entry form { /* This is mainly for password protected posts, makes them look better. */
+	text-align:center;
+	}
+
+#xpress_page select {
+	width: 130px;
+	}
+	
+#xpress_commentform{
+	margin-top: 15px;
+	}
+
+#xpress_commentform input {
+	width: 170px;
+	padding: 2px;
+	margin: 1px 5px 1px 0;
+	}
+
+#xpress_commentform textarea {
+	width: 90%; /*500px-paddingª4px-borderª2px*/
+	padding: 2px;
+	}
+
+#xpress_commentform #xpress_submit {
+	margin: 0;
+	float: right;
+	}
+/* End Form Elements */
+
+
+
+/* Begin Comments*/
+.xpress_commentlist {
+	margin: 15px 0 20px;
+	padding: 0;
+	}
+
+.xpress_commentlist li {
+	margin: 0 0 3px;
+	padding: 5px 10px 3px;
+	list-style: none;
+	}
+
+.xpress_commentlist p {
+	margin: 10px 5px 10px 0;
+	}
+
+#xpress_commentform p {
+	padding: 0 0 1px;
+	}
+	
+.nocomments {
+	text-align: center;
+	margin: 0;
+	padding: 0;
+	}
+
+.xpress_commentmetadata {
+	margin: 0;
+	display: block;
+	}
+/* End Comments */
+
+
+
+/* Begin Sidebar */
+#xpress_page .xpress_sidebar {
+	float: right;
+	display:inline;
+	margin:0 15px 0 0;
+	padding: 20px 0 10px;
+	width: 190px;
+	}
+
+.xpress_sidebar form {
+	margin: 0;
+	}
+/* End Sidebar */
+
+
+
+/* Begin Calendar */
+#wp-calendar {
+	empty-cells: show;
+	margin: 10px auto 0;
+	width: 155px;
+	}
+
+#wp-calendar #next a {
+	padding-right: 10px;
+	text-align: right;
+	}
+
+#wp-calendar #prev a {
+	padding-left: 10px;
+	text-align: left;
+	}
+
+#wp-calendar a {
+	display: block;
+	}
+
+#wp-calendar caption {
+	text-align: center;
+	width: 100%;
+	}
+
+#wp-calendar td {
+	padding: 3px 0;
+	text-align: center;
+	}
+
+#wp-calendar td.pad:hover { /* Doesn't work in IE */
+	background-color: #fff; }
+/* End Calendar */
+
+
+
+/* Begin Various Tags & Classes */
+acronym, abbr, span.caps {
+	cursor: help;
+	}
+
+acronym, abbr {
+	border-bottom: 1px dashed #999;
+	}
+
+blockquote {
+	margin: 15px 30px 0 10px;
+	padding-left: 20px;
+	border-left: 5px solid #ddd;
+	}
+
+blockquote cite {
+	margin: 5px 0 0;
+	display: block;
+	}
+
+#xpress_page .center {
+	text-align: center;
+	}
+
+#xpress_page .hidden {
+	display: none;
+	}
+
+#xpress_page hr {
+	display: none;
+	}
+
+#xpress_page a img {
+	border: none;
+	}
+	
+.xpress_single_navigation {
+	display:block;
+	width: 500px;
+	margin: 0 auto;	
+	}
+	
+.xpress_index_navigation {
+	display:block;
+	width: 100%;
+	margin: 0 auto;	
+	}
+	
+.xpress_pagenavi {
+	display: block;
+	margin: 0 auto;
+	padding: 5px 0;
+	text-align: center;
+	}
+/* End Various Tags & Classes*/
+
+
+
+/* Captions */
+.aligncenter,
+div.aligncenter {
+	display: block;
+	margin-left: auto;
+	margin-right: auto;
+}
+
+.wp-caption {
+	border: 1px solid #ddd;
+	text-align: center;
+	background-color: #f3f3f3;
+	padding-top: 4px;
+	margin: 10px;
+	-moz-border-radius: 3px;
+	-khtml-border-radius: 3px;
+	-webkit-border-radius: 3px;
+	border-radius: 3px;
+}
+
+.wp-caption img {
+	margin: 0;
+	padding: 0;
+	border: 0 none;
+}
+
+.wp-caption p.wp-caption-text {
+	font-size: 11px;
+	line-height: 17px;
+	padding: 0 4px 5px;
+	margin: 0;
+}
+/* End captions */
Index: /wp-content/themes/toemon/xpress_block.inc.php
===================================================================
--- /wp-content/themes/toemon/xpress_block.inc.php	(revision 1)
+++ /wp-content/themes/toemon/xpress_block.inc.php	(revision 1)
@@ -0,0 +1,42 @@
+<?php
+
+function theme_contents_block(&$block_posts,$except=false,$except_size= 100,$show_comment_link=true,$show_cat_link=true,$show_post_time=true,$show_view_num=true,$show_author=true,$show_the_tags=true)
+{
+	global $id;
+
+	while($block_posts->have_posts()){
+		$block_posts->the_post();
+?>
+            <style type="text/css">
+            <!--
+            .entry p{margin:0;padding:5px 0;}
+            .post p{line-height:1.4;}
+            .dateblock{margin-left:-5px!important;}
+            //-->
+            </style>
+			<div class="post" id="post-<?php the_ID(); ?>" style="clear:both;margin:0 0 20px;padding:20px 0 0;width:100%;">
+				<?php if (function_exists('hotDates')) {
+					echo '<style type="text/css">@import url('. get_bloginfo('url') . '/wp-content/plugins/hotDates/hotDates.css);</style>';
+					hotDates(); 
+				}?>
+				<h2 style="margin:0;font-size:1.5em;"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2>
+				<small style="font-family:Arial,Helvetica,Sans-Serif;font-size:0.8em;line-height:1.5em;color:#777777;"><?php the_time(__('F jS, Y', 'kubrick')) ?> <!-- by <?php the_author() ?> --></small>
+
+				<div class="entry" style="line-height:1.4em;clear:both;padding:10px 0 0;margin:0;">
+					<?php
+						if ($except) 
+							wpj_excerpt($except_size, 2);
+						else
+							the_content(__('Read the rest of this entry &raquo;', 'kubrick'));
+					?>
+				</div>
+				<p class="postmetadata" style="padding:10px 0 0;color:#777777;font-size:0.9em;">
+				<?php/* if($show_author) { _e('Posted:', 'kubrick'); the_author_posts_link(); echo '<br />' ; }*/?>
+				<?php if($show_the_tags) the_tags(__('Tags:', 'kubrick') . ' ', ' &bull; ', '<br />'); ?>
+			 	<?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(' &bull; ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?>  <?php comments_popup_link(__('No Comments &#187;', 'kubrick'), __('1 Comment &#187;', 'kubrick'), __('% Comments &#187;', 'kubrick'), '', __('Comments Closed', 'kubrick') ); ?></p>
+			</div>
+
+<?php
+   }
+}
+?>
Index: /xoops_version.php
===================================================================
--- /xoops_version.php	(revision 1)
+++ /xoops_version.php	(revision 1)
@@ -0,0 +1,100 @@
+<?php
+/**
+ * XPressME - WordPress for XOOPS
+ *
+ * Adding multi-author features to XPress
+ *
+ * @copyright	toemon
+ * @license		GNU public license
+ * @author		"toemon ( http://www.toemon.com)"
+ * @package		module::xpressme
+ */
+ 
+if( ! defined( 'XOOPS_ROOT_PATH' ) ) exit ;
+
+$mydirpath = dirname(__FILE__);
+$mydirname = basename($mydirpath);
+
+$lang = @$GLOBALS["xoopsConfig"]['language'];
+
+// language file (modinfo.php)
+
+if( file_exists( $mydirpath .'/language/'.$lang.'/modinfo.php' ) ) {
+	include_once $mydirpath .'/language/'.$lang.'/modinfo.php' ;
+} else if( file_exists(  $mydirpath .'/language/english/modinfo.php' ) ) {
+	include_once $mydirpath .'/language/english/modinfo.php' ;
+}
+global $wp_db_version,$wp_version;
+
+include $mydirpath .'/wp-includes/version.php' ;
+
+$modversion['name'] = ucfirst($mydirname) . ' ' . constant('_MI_XPRESS_NAME') ;
+$modversion['description'] = constant( '_MI_XPRESS_DESC');
+$modversion['version'] = "0.01";
+$modversion['credits'] = "XPressME DEV Toemon) (http://www.toemon.com) Wordpress DEV (http://wordpress.org/);";
+$modversion['author'] = "toemon (http://www.toemon.com)";
+$modversion['license'] = "GPL see LICENSE";
+$modversion['official'] = 0 ;
+$modversion['image'] =  'module_icon.php' ;
+$modversion['dirname'] = $mydirname;
+
+// status
+$modversion['codename'] = "";
+
+// onInstall, onUpdate, onUninstall
+$modversion['onInstall'] = 'include/oninstall.php' ;
+$modversion['onUpdate'] = 'include/onupdate.php' ;
+$modversion['onUninstall'] = 'include/onuninstall.php' ;
+
+// Sql file (must contain sql generated by phpMyAdmin or phpPgAdmin)
+//$modversion['sqlfile']['mysql'] = "sql/mysql.sql";
+
+$db_prefix = $mydirname;
+if ($mydirname == 'wordpress') {
+	$db_prefix = 'wp';
+}
+	$modversion['tables'] = array(
+	$db_prefix . "_comments",
+	$db_prefix . "_links",
+	$db_prefix . "_options",
+	$db_prefix . "_postmeta",
+	$db_prefix . "_posts",
+	$db_prefix . "_users",
+	$db_prefix . "_usermeta",
+	$db_prefix . "_terms",
+	$db_prefix . "_term_relationships",
+	$db_prefix . "_term_taxonomy",
+	$db_prefix . "_views",	
+	$db_prefix . "_d3forum_link"
+	);
+
+
+// Search
+//$modversion['hasSearch'] = 1 ;
+//$modversion['search']['file'] = 'include/search.php' ;
+//$modversion['search']['func'] = $mydirname.'_global_search' ;
+//Admin things
+$modversion['hasAdmin'] = 0;
+//$modversion['adminindex'] = "admin/index.php";
+//$modversion['adminmenu'] = "admin/menu.php";
+
+$modversion['hasMain'] = 1;
+if(is_object($GLOBALS["xoopsUser"])){
+	$modversion['sub'][1]['name'] = constant( '_MI_XPRESS_MENU_POST_NEW');
+	$modversion['sub'][1]['url'] = "wp-admin/post-new.php";
+	$modversion['sub'][2]['name'] = constant( '_MI_XPRESS_MENU_EDIT');
+	$modversion['sub'][2]['url'] = "wp-admin/edit.php";
+}
+
+// Use smarty
+//$modversion["use_smarty"] = 1;
+
+/**
+* Templates
+*/
+//$modversion['templates'] = array() ;
+//$modversion['templates'][1]['file'] = 'xpress_index.html';
+//$modversion['templates'][1]['description'] = '';
+
+$modversion['hasconfig'] = 0;
+?>
