NobuNobu
nobun****@users*****
2006年 12月 26日 (火) 23:30:54 JST
Index: xoops2jp/html/core/XCube_ActionFilter.class.php diff -u xoops2jp/html/core/XCube_ActionFilter.class.php:1.1.2.1 xoops2jp/html/core/XCube_ActionFilter.class.php:1.1.2.2 --- xoops2jp/html/core/XCube_ActionFilter.class.php:1.1.2.1 Fri Sep 29 17:13:22 2006 +++ xoops2jp/html/core/XCube_ActionFilter.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_ActionFilter.class.php,v 1.1.2.1 2006/09/29 08:13:22 minahito Exp $ + * @version $Id: XCube_ActionFilter.class.php,v 1.1.2.2 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ /** Index: xoops2jp/html/core/XCube_ActionForm.class.php diff -u xoops2jp/html/core/XCube_ActionForm.class.php:1.1.2.3 xoops2jp/html/core/XCube_ActionForm.class.php:1.1.2.4 --- xoops2jp/html/core/XCube_ActionForm.class.php:1.1.2.3 Sat Oct 7 18:26:31 2006 +++ xoops2jp/html/core/XCube_ActionForm.class.php Tue Dec 26 23:30:54 2006 @@ -1,14 +1,18 @@ <?php /** + * * @package XCube - * @version $Id: XCube_ActionForm.class.php,v 1.1.2.3 2006/10/07 09:26:31 minahito Exp $ + * @version $Id: XCube_ActionForm.class.php,v 1.1.2.4 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ -if (!defined('XOOPS_ROOT_PATH')) exit(); +if (!defined('XCUBE_CORE_PATH')) define('XCUBE_CORE_PATH', dirname(__FILE__)); -require_once XOOPS_ROOT_PATH . "/core/XCube_Property.class.php"; -require_once XOOPS_ROOT_PATH . "/core/XCube_Validator.class.php"; -require_once XOOPS_ROOT_PATH . "/core/XCube_FormFile.class.php"; +require_once XCUBE_CORE_PATH . '/XCube_Property.class.php'; +require_once XCUBE_CORE_PATH . '/XCube_Validator.class.php'; +require_once XCUBE_CORE_PATH . '/XCube_FormFile.class.php'; // // TODO The difference of array and no-array is too big. Index: xoops2jp/html/core/XCube_Controller.class.php diff -u xoops2jp/html/core/XCube_Controller.class.php:1.1.2.8 xoops2jp/html/core/XCube_Controller.class.php:1.1.2.9 --- xoops2jp/html/core/XCube_Controller.class.php:1.1.2.8 Sun Dec 3 00:36:01 2006 +++ xoops2jp/html/core/XCube_Controller.class.php Tue Dec 26 23:30:54 2006 @@ -1,26 +1,30 @@ <?php /** + * * @package XCube - * @version $Id: XCube_Controller.class.php,v 1.1.2.8 2006/12/02 15:36:01 nobunobu Exp $ + * @version $Id: XCube_Controller.class.php,v 1.1.2.9 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ -if (!defined('XOOPS_ROOT_PATH')) exit(); +if (!defined('XCUBE_CORE_PATH')) define('XCUBE_CORE_PATH', dirname(__FILE__)); -require_once XOOPS_ROOT_PATH . "/core/XCube_ActionFilter.class.php"; -require_once XOOPS_ROOT_PATH . "/core/XCube_RenderSystem.class.php"; -require_once XOOPS_ROOT_PATH . "/core/XCube_Delegate.class.php"; +require_once XCUBE_CORE_PATH . '/XCube_ActionFilter.class.php'; +require_once XCUBE_CORE_PATH . '/XCube_RenderSystem.class.php'; +require_once XCUBE_CORE_PATH . '/XCube_Delegate.class.php'; -require_once XOOPS_ROOT_PATH . "/core/XCube_Object.class.php"; -require_once XOOPS_ROOT_PATH . "/core/XCube_Service.class.php"; +require_once XCUBE_CORE_PATH . '/XCube_Object.class.php'; +require_once XCUBE_CORE_PATH . '/XCube_Service.class.php'; -require_once XOOPS_ROOT_PATH . "/core/XCube_Identity.class.php"; -require_once XOOPS_ROOT_PATH . "/core/XCube_RoleManager.class.php"; -require_once XOOPS_ROOT_PATH . "/core/XCube_Permission.class.php"; +require_once XCUBE_CORE_PATH . '/XCube_Identity.class.php'; +require_once XCUBE_CORE_PATH . '/XCube_RoleManager.class.php'; +require_once XCUBE_CORE_PATH . '/XCube_Permission.class.php'; -require_once XOOPS_ROOT_PATH . "/core/XCube_LanguageManager.class.php"; +require_once XCUBE_CORE_PATH . '/XCube_LanguageManager.class.php'; -require_once XOOPS_ROOT_PATH . "/core/XCube_ActionForm.class.php"; -require_once XOOPS_ROOT_PATH . "/core/XCube_TextFilter.class.php"; +require_once XCUBE_CORE_PATH . '/XCube_ActionForm.class.php'; +require_once XCUBE_CORE_PATH . '/XCube_TextFilter.class.php'; /** * Virtual or Actual front controller class. @@ -453,7 +457,7 @@ */ function &_createServiceManager() { - require_once XOOPS_ROOT_PATH . "/core/XCube_ServiceManager.class.php"; + require_once XCUBE_CORE_PATH . '/XCube_ServiceManager.class.php'; $serviceManager =& new XCube_ServiceManager(); return $serviceManager; } Index: xoops2jp/html/core/XCube_Delegate.class.php diff -u xoops2jp/html/core/XCube_Delegate.class.php:1.1.2.3 xoops2jp/html/core/XCube_Delegate.class.php:1.1.2.4 --- xoops2jp/html/core/XCube_Delegate.class.php:1.1.2.3 Thu Oct 19 22:30:41 2006 +++ xoops2jp/html/core/XCube_Delegate.class.php Tue Dec 26 23:30:54 2006 @@ -1,8 +1,12 @@ <?php /** - * @version $Id: XCube_Delegate.class.php,v 1.1.2.3 2006/10/19 13:30:41 minahito Exp $ + * + * @package XCube + * @version $Id: XCube_Delegate.class.php,v 1.1.2.4 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ - /** * This class is an expression of reference in delegation mechanism for PHP4. Index: xoops2jp/html/core/XCube_FormFile.class.php diff -u xoops2jp/html/core/XCube_FormFile.class.php:1.1.2.2 xoops2jp/html/core/XCube_FormFile.class.php:1.1.2.3 --- xoops2jp/html/core/XCube_FormFile.class.php:1.1.2.2 Mon Oct 16 16:38:16 2006 +++ xoops2jp/html/core/XCube_FormFile.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_FormFile.class.php,v 1.1.2.2 2006/10/16 07:38:16 minahito Exp $ + * @version $Id: XCube_FormFile.class.php,v 1.1.2.3 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ /** @@ -175,9 +179,9 @@ * @param $prefix string Prefix for random string. * @param $salt string Salt for generating token. */ - function setRandomToBodyName($prefix,$salt=XOOPS_SALT) + function setRandomToBodyName($prefix,$salt='') { - $filename = $prefix . $this->_getRandomString() . "." . $this->getExtension(); + $filename = $prefix . $this->_getRandomString($salt) . "." . $this->getExtension(); $this->setFileName($filename); } @@ -186,9 +190,9 @@ * @param $prefix string Prefix for random string. * @param $salt string Salt for generating token. */ - function setRandomToFilename($prefix,$salt=XOOPS_SALT) + function setRandomToFilename($prefix,$salt='') { - $filename = $prefix . $this->_getRandomString(); + $filename = $prefix . $this->_getRandomString($salt); $this->setFileName($filename); } @@ -197,8 +201,9 @@ @param $salt string Salt for generating token. @return string */ - function _getRandomString($salt=XOOPS_SALT) + function _getRandomString($salt='') { + if (empty($salt)) $salt = XOOPS_SALT; srand( microtime() *1000000); return md5($salt . rand()); } @@ -232,7 +237,7 @@ * @param $salt string Salt for generating token. * @return bool */ - function saveAsRandBody($dir,$prefix='',$salt=XOOPS_SALT) + function saveAsRandBody($dir,$prefix='',$salt='') { $this->setRandomToBodyName($prefix,$salt); return $this->saveAs($dir); @@ -247,7 +252,7 @@ * @param $salt string Salt for generating token. * @return bool */ - function saveAsRand($dir,$prefix='',$salt=XOOPS_SALT) + function saveAsRand($dir,$prefix='',$salt='') { $this->setRandomToFileName($prefix,$salt); return $this->saveAs($dir); Index: xoops2jp/html/core/XCube_HttpContext.class.php diff -u xoops2jp/html/core/XCube_HttpContext.class.php:1.1.2.5 xoops2jp/html/core/XCube_HttpContext.class.php:1.1.2.6 --- xoops2jp/html/core/XCube_HttpContext.class.php:1.1.2.5 Sat Oct 21 20:08:34 2006 +++ xoops2jp/html/core/XCube_HttpContext.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_HttpContext.class.php,v 1.1.2.5 2006/10/21 11:08:34 minahito Exp $ + * @version $Id: XCube_HttpContext.class.php,v 1.1.2.6 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ define("XCUBE_CONTEXT_TYPE_DEFAULT", "web_browser"); Index: xoops2jp/html/core/XCube_Identity.class.php diff -u xoops2jp/html/core/XCube_Identity.class.php:1.1.2.1 xoops2jp/html/core/XCube_Identity.class.php:1.1.2.2 --- xoops2jp/html/core/XCube_Identity.class.php:1.1.2.1 Fri Sep 29 17:13:22 2006 +++ xoops2jp/html/core/XCube_Identity.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_Identity.class.php,v 1.1.2.1 2006/09/29 08:13:22 minahito Exp $ + * @version $Id: XCube_Identity.class.php,v 1.1.2.2 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ /** Index: xoops2jp/html/core/XCube_LanguageManager.class.php diff -u xoops2jp/html/core/XCube_LanguageManager.class.php:1.1.2.1 xoops2jp/html/core/XCube_LanguageManager.class.php:1.1.2.2 --- xoops2jp/html/core/XCube_LanguageManager.class.php:1.1.2.1 Fri Sep 29 17:13:22 2006 +++ xoops2jp/html/core/XCube_LanguageManager.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_LanguageManager.class.php,v 1.1.2.1 2006/09/29 08:13:22 minahito Exp $ + * @version $Id: XCube_LanguageManager.class.php,v 1.1.2.2 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ /** Index: xoops2jp/html/core/XCube_Object.class.php diff -u xoops2jp/html/core/XCube_Object.class.php:1.1.2.1 xoops2jp/html/core/XCube_Object.class.php:1.1.2.2 --- xoops2jp/html/core/XCube_Object.class.php:1.1.2.1 Fri Sep 29 17:13:22 2006 +++ xoops2jp/html/core/XCube_Object.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_Object.class.php,v 1.1.2.1 2006/09/29 08:13:22 minahito Exp $ + * @version $Id: XCube_Object.class.php,v 1.1.2.2 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ function S_PUBLIC_VAR($definition) Index: xoops2jp/html/core/XCube_PageNavigator.class.php diff -u xoops2jp/html/core/XCube_PageNavigator.class.php:1.1.2.7 xoops2jp/html/core/XCube_PageNavigator.class.php:1.1.2.8 --- xoops2jp/html/core/XCube_PageNavigator.class.php:1.1.2.7 Fri Oct 13 18:59:16 2006 +++ xoops2jp/html/core/XCube_PageNavigator.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_PageNavigator.class.php,v 1.1.2.7 2006/10/13 09:59:16 minahito Exp $ + * @version $Id: XCube_PageNavigator.class.php,v 1.1.2.8 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ define('XCUBE_PAGENAVI_START', 1); Index: xoops2jp/html/core/XCube_Permission.class.php diff -u xoops2jp/html/core/XCube_Permission.class.php:1.1.2.1 xoops2jp/html/core/XCube_Permission.class.php:1.1.2.2 --- xoops2jp/html/core/XCube_Permission.class.php:1.1.2.1 Fri Sep 29 17:13:22 2006 +++ xoops2jp/html/core/XCube_Permission.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_Permission.class.php,v 1.1.2.1 2006/09/29 08:13:22 minahito Exp $ + * @version $Id: XCube_Permission.class.php,v 1.1.2.2 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ /** Index: xoops2jp/html/core/XCube_Property.class.php diff -u xoops2jp/html/core/XCube_Property.class.php:1.1.2.5 xoops2jp/html/core/XCube_Property.class.php:1.1.2.6 --- xoops2jp/html/core/XCube_Property.class.php:1.1.2.5 Fri Nov 17 19:38:55 2006 +++ xoops2jp/html/core/XCube_Property.class.php Tue Dec 26 23:30:54 2006 @@ -1,11 +1,13 @@ <?php /** + * * @package XCube - * @version $Id: XCube_Property.class.php,v 1.1.2.5 2006/11/17 10:38:55 minahito Exp $ + * @version $Id: XCube_Property.class.php,v 1.1.2.6 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ -if (!defined('XOOPS_ROOT_PATH')) exit(); - /** * Defines a interface for the property class group. */ Index: xoops2jp/html/core/XCube_RenderCache.class.php diff -u xoops2jp/html/core/XCube_RenderCache.class.php:1.1.2.1 xoops2jp/html/core/XCube_RenderCache.class.php:1.1.2.2 --- xoops2jp/html/core/XCube_RenderCache.class.php:1.1.2.1 Fri Sep 29 17:13:22 2006 +++ xoops2jp/html/core/XCube_RenderCache.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_RenderCache.class.php,v 1.1.2.1 2006/09/29 08:13:22 minahito Exp $ + * @version $Id: XCube_RenderCache.class.php,v 1.1.2.2 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ class XCube_RenderCache Index: xoops2jp/html/core/XCube_RenderSystem.class.php diff -u xoops2jp/html/core/XCube_RenderSystem.class.php:1.1.2.4 xoops2jp/html/core/XCube_RenderSystem.class.php:1.1.2.5 --- xoops2jp/html/core/XCube_RenderSystem.class.php:1.1.2.4 Sat Nov 11 18:37:24 2006 +++ xoops2jp/html/core/XCube_RenderSystem.class.php Tue Dec 26 23:30:54 2006 @@ -1,11 +1,13 @@ <?php /** + * * @package XCube - * @version $Id: XCube_RenderSystem.class.php,v 1.1.2.4 2006/11/11 09:37:24 minahito Exp $ + * @version $Id: XCube_RenderSystem.class.php,v 1.1.2.5 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ - if (!defined('XOOPS_ROOT_PATH')) exit(); - define("XCUBE_RENDER_MODE_NORMAL",1); define("XCUBE_RENDER_MODE_DIALOG",2); Index: xoops2jp/html/core/XCube_RoleManager.class.php diff -u xoops2jp/html/core/XCube_RoleManager.class.php:1.1.2.1 xoops2jp/html/core/XCube_RoleManager.class.php:1.1.2.2 --- xoops2jp/html/core/XCube_RoleManager.class.php:1.1.2.1 Fri Sep 29 17:13:22 2006 +++ xoops2jp/html/core/XCube_RoleManager.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_RoleManager.class.php,v 1.1.2.1 2006/09/29 08:13:22 minahito Exp $ + * @version $Id: XCube_RoleManager.class.php,v 1.1.2.2 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ /** Index: xoops2jp/html/core/XCube_Root.class.php diff -u xoops2jp/html/core/XCube_Root.class.php:1.1.2.5 xoops2jp/html/core/XCube_Root.class.php:1.1.2.6 --- xoops2jp/html/core/XCube_Root.class.php:1.1.2.5 Sun Dec 3 00:36:01 2006 +++ xoops2jp/html/core/XCube_Root.class.php Tue Dec 26 23:30:54 2006 @@ -1,10 +1,16 @@ <?php /** + * * @package XCube - * @version $Id: XCube_Root.class.php,v 1.1.2.5 2006/12/02 15:36:01 nobunobu Exp $ + * @version $Id: XCube_Root.class.php,v 1.1.2.6 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ -require_once XOOPS_ROOT_PATH . "/core/XCube_HttpContext.class.php"; +if (!defined('XCUBE_CORE_PATH')) define('XCUBE_CORE_PATH', dirname(__FILE__)); + +require_once XCUBE_CORE_PATH . '/XCube_HttpContext.class.php'; /** * This class offers the access course same as global variable for a logic in old mechanism. @@ -353,7 +359,7 @@ $ret = null; if ($classPath != null) { - require_once XOOPS_ROOT_PATH . $classPath . "/" . $className . ".class.php"; + require_once $this->mSiteConfig['Cube']['Root'] . $classPath . "/" . $className . ".class.php"; } if (class_exists($className)) { Index: xoops2jp/html/core/XCube_Service.class.php diff -u xoops2jp/html/core/XCube_Service.class.php:1.1.2.1 xoops2jp/html/core/XCube_Service.class.php:1.1.2.2 --- xoops2jp/html/core/XCube_Service.class.php:1.1.2.1 Fri Sep 29 17:13:22 2006 +++ xoops2jp/html/core/XCube_Service.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_Service.class.php,v 1.1.2.1 2006/09/29 08:13:22 minahito Exp $ + * @version $Id: XCube_Service.class.php,v 1.1.2.2 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ /** Index: xoops2jp/html/core/XCube_ServiceManager.class.php diff -u xoops2jp/html/core/XCube_ServiceManager.class.php:1.1.2.1 xoops2jp/html/core/XCube_ServiceManager.class.php:1.1.2.2 --- xoops2jp/html/core/XCube_ServiceManager.class.php:1.1.2.1 Fri Sep 29 17:13:22 2006 +++ xoops2jp/html/core/XCube_ServiceManager.class.php Tue Dec 26 23:30:54 2006 @@ -1,12 +1,16 @@ <?php /** + * * @package XCube - * @version $Id: XCube_ServiceManager.class.php,v 1.1.2.1 2006/09/29 08:13:22 minahito Exp $ + * @version $Id: XCube_ServiceManager.class.php,v 1.1.2.2 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ -if (!defined('XOOPS_ROOT_PATH')) exit(); +if (!defined('XCUBE_CORE_PATH')) define('XCUBE_CORE_PATH', dirname(__FILE__)); -require_once XOOPS_ROOT_PATH . "/core/XCube_Delegate.class.php"; +require_once XCUBE_CORE_PATH . '/XCube_Delegate.class.php'; class XCube_ServiceUtils { Index: xoops2jp/html/core/XCube_TextFilter.class.php diff -u xoops2jp/html/core/XCube_TextFilter.class.php:1.1.2.1 xoops2jp/html/core/XCube_TextFilter.class.php:1.1.2.2 --- xoops2jp/html/core/XCube_TextFilter.class.php:1.1.2.1 Sun Dec 3 00:36:01 2006 +++ xoops2jp/html/core/XCube_TextFilter.class.php Tue Dec 26 23:30:54 2006 @@ -1,8 +1,13 @@ <?php /** + * * @package XCube - * @version $Id: XCube_TextFilter.class.php,v 1.1.2.1 2006/12/02 15:36:01 nobunobu Exp $ + * @version $Id: XCube_TextFilter.class.php,v 1.1.2.2 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ + /** * * @final Index: xoops2jp/html/core/XCube_Theme.class.php diff -u xoops2jp/html/core/XCube_Theme.class.php:1.1.2.3 xoops2jp/html/core/XCube_Theme.class.php:1.1.2.4 --- xoops2jp/html/core/XCube_Theme.class.php:1.1.2.3 Mon Nov 27 15:53:52 2006 +++ xoops2jp/html/core/XCube_Theme.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_Theme.class.php,v 1.1.2.3 2006/11/27 06:53:52 minahito Exp $ + * @version $Id: XCube_Theme.class.php,v 1.1.2.4 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ /** Index: xoops2jp/html/core/XCube_Utils.class.php diff -u xoops2jp/html/core/XCube_Utils.class.php:1.1.2.4 xoops2jp/html/core/XCube_Utils.class.php:1.1.2.5 --- xoops2jp/html/core/XCube_Utils.class.php:1.1.2.4 Fri Oct 27 20:45:05 2006 +++ xoops2jp/html/core/XCube_Utils.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_Utils.class.php,v 1.1.2.4 2006/10/27 11:45:05 minahito Exp $ + * @version $Id: XCube_Utils.class.php,v 1.1.2.5 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ /** Index: xoops2jp/html/core/XCube_Validator.class.php diff -u xoops2jp/html/core/XCube_Validator.class.php:1.1.2.2 xoops2jp/html/core/XCube_Validator.class.php:1.1.2.3 --- xoops2jp/html/core/XCube_Validator.class.php:1.1.2.2 Sat Oct 7 16:34:54 2006 +++ xoops2jp/html/core/XCube_Validator.class.php Tue Dec 26 23:30:54 2006 @@ -1,7 +1,11 @@ <?php /** + * * @package XCube - * @version $Id: XCube_Validator.class.php,v 1.1.2.2 2006/10/07 07:34:54 ryuji_amano Exp $ + * @version $Id: XCube_Validator.class.php,v 1.1.2.3 2006/12/26 14:30:54 nobunobu Exp $ + * @copyright Copyright 2005, 2006 XOOPS Cube Project <http://xoopscube.org/> + * @license http://xoopscube.sourceforge.net/bsd_licenses.txt Modified BSD license + * */ /**