Index: dule_icon.php
===================================================================
--- /module_icon.php	(revision 850)
+++ 	(revision )
@@ -1,30 +1,0 @@
-<?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: -config.php
===================================================================
--- /wp-config.php	(revision 850)
+++ 	(revision )
@@ -1,52 +1,0 @@
-<?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: ops_version.php
===================================================================
--- /xoops_version.php	(revision 850)
+++ 	(revision )
@@ -1,100 +1,0 @@
-<?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;
-?>
