[limb-svn] r5989 - in 3.x/trunk/limb: active_record cms dbal/src/drivers/oci search/cli tests_runner/tests/cases tree/src wact/src/compiler wact/src/compiler/tag_node wact/src/components wact/src/components/core wact/src/components/form wact/tests/cases/compiler/parser
svn at limb-project.com
svn at limb-project.com
Wed Jun 13 17:08:12 MSD 2007
Author: pachanga
Date: 2007-06-13 17:08:11 +0400 (Wed, 13 Jun 2007)
New Revision: 5989
URL: http://fisheye.limb-project.com/changelog/limb/?cs=5989
Modified:
3.x/trunk/limb/active_record/toolkit.inc.php
3.x/trunk/limb/cms/toolkit.inc.php
3.x/trunk/limb/dbal/src/drivers/oci/lmbOciTypeInfo.class.php
3.x/trunk/limb/search/cli/indexer.php
3.x/trunk/limb/tests_runner/tests/cases/lmbTestTreeTest.class.php
3.x/trunk/limb/tree/src/lmbTreeDecorator.class.php
3.x/trunk/limb/wact/src/compiler/tag_node/WactTagDictionary.class.php
3.x/trunk/limb/wact/src/compiler/templatecompiler.inc.php
3.x/trunk/limb/wact/src/components/components.inc.php
3.x/trunk/limb/wact/src/components/core/default_filter.inc.php
3.x/trunk/limb/wact/src/components/form/form.inc.php
3.x/trunk/limb/wact/tests/cases/compiler/parser/WactBaseParsingStateTestCase.class.php
Log:
-- fixing phpdoc
Modified: 3.x/trunk/limb/active_record/toolkit.inc.php
===================================================================
--- 3.x/trunk/limb/active_record/toolkit.inc.php 2007-06-13 07:50:57 UTC (rev 5988)
+++ 3.x/trunk/limb/active_record/toolkit.inc.php 2007-06-13 13:08:11 UTC (rev 5989)
@@ -1,12 +1,16 @@
<?php
-/*
- * Limb PHP Framework
- *
- * @link http://limb-project.com
- * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
- * @license LGPL http://www.gnu.org/copyleft/lesser.html
+/*
+ * Limb PHP Framework
+ *
+ * @link http://limb-project.com
+ * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
+ * @license LGPL http://www.gnu.org/copyleft/lesser.html
*/
+/**
+ * @package active_record
+ * @version $Id$
+ */
lmb_require('limb/toolkit/src/lmbToolkit.class.php');
lmb_require('limb/active_record/src/toolkit/lmbARTools.class.php');
lmbToolkit :: merge(new lmbARTools());
Modified: 3.x/trunk/limb/cms/toolkit.inc.php
===================================================================
--- 3.x/trunk/limb/cms/toolkit.inc.php 2007-06-13 07:50:57 UTC (rev 5988)
+++ 3.x/trunk/limb/cms/toolkit.inc.php 2007-06-13 13:08:11 UTC (rev 5989)
@@ -1,11 +1,16 @@
<?php
-/*
- * Limb PHP Framework
- *
- * @link http://limb-project.com
- * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
- * @license LGPL http://www.gnu.org/copyleft/lesser.html
+/*
+ * Limb PHP Framework
+ *
+ * @link http://limb-project.com
+ * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
+ * @license LGPL http://www.gnu.org/copyleft/lesser.html
*/
+
+/**
+ * @package cms
+ * @version $Id$
+ */
lmb_require('limb/toolkit/src/lmbToolkit.class.php');
lmb_require('limb/cms/src/toolkit/lmbCmsTools.class.php');
lmbToolkit :: merge(new lmbCmsTools());
Modified: 3.x/trunk/limb/dbal/src/drivers/oci/lmbOciTypeInfo.class.php
===================================================================
--- 3.x/trunk/limb/dbal/src/drivers/oci/lmbOciTypeInfo.class.php 2007-06-13 07:50:57 UTC (rev 5988)
+++ 3.x/trunk/limb/dbal/src/drivers/oci/lmbOciTypeInfo.class.php 2007-06-13 13:08:11 UTC (rev 5989)
@@ -1,14 +1,19 @@
<?php
-/*
- * Limb PHP Framework
- *
- * @link http://limb-project.com
- * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
- * @license LGPL http://www.gnu.org/copyleft/lesser.html
+/*
+ * Limb PHP Framework
+ *
+ * @link http://limb-project.com
+ * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
+ * @license LGPL http://www.gnu.org/copyleft/lesser.html
*/
lmb_require('limb/dbal/src/drivers/lmbDbTypeInfo.class.php');
-Class lmbOciTypeInfo extends lmbDbTypeInfo
+/**
+ * class lmbOciTypeInfo.
+ * @package dbal
+ * @version $Id$
+ */
+class lmbOciTypeInfo extends lmbDbTypeInfo
{
function getNativeToColumnTypeMapping()
{
Modified: 3.x/trunk/limb/search/cli/indexer.php
===================================================================
--- 3.x/trunk/limb/search/cli/indexer.php 2007-06-13 07:50:57 UTC (rev 5988)
+++ 3.x/trunk/limb/search/cli/indexer.php 2007-06-13 13:08:11 UTC (rev 5989)
@@ -1,11 +1,16 @@
<?php
-/*
- * Limb PHP Framework
- *
- * @link http://limb-project.com
- * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
- * @license LGPL http://www.gnu.org/copyleft/lesser.html
+/*
+ * Limb PHP Framework
+ *
+ * @link http://limb-project.com
+ * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
+ * @license LGPL http://www.gnu.org/copyleft/lesser.html
*/
+
+/**
+ * @package search
+ * @version $Id$
+ */
if(!isset($argv[1]))
die("index starting uri not specified!\n");
Modified: 3.x/trunk/limb/tests_runner/tests/cases/lmbTestTreeTest.class.php
===================================================================
--- 3.x/trunk/limb/tests_runner/tests/cases/lmbTestTreeTest.class.php 2007-06-13 07:50:57 UTC (rev 5988)
+++ 3.x/trunk/limb/tests_runner/tests/cases/lmbTestTreeTest.class.php 2007-06-13 13:08:11 UTC (rev 5989)
@@ -11,12 +11,14 @@
require_once(dirname(__FILE__) . '/../../src/lmbTestGroup.class.php');
Mock :: generate('lmbTestTreeDirNode', 'MockTestTreeNode');
-Mock :: generate('lmbTestGroup', 'MockTestGroup');
-SimpleTest :: ignore('MockTestGroup');
-
class lmbTestTreeTest extends UnitTestCase
{
+ function setUp()
+ {
+ Mock :: generate('lmbTestGroup', 'MockTestGroup');//prevent this mock to be executed as a test case
+ }
+
function testPerform()
{
$node = new MockTestTreeNode();
Modified: 3.x/trunk/limb/tree/src/lmbTreeDecorator.class.php
===================================================================
--- 3.x/trunk/limb/tree/src/lmbTreeDecorator.class.php 2007-06-13 07:50:57 UTC (rev 5988)
+++ 3.x/trunk/limb/tree/src/lmbTreeDecorator.class.php 2007-06-13 13:08:11 UTC (rev 5989)
@@ -1,11 +1,16 @@
<?php
-/*
- * Limb PHP Framework
- *
- * @link http://limb-project.com
- * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
- * @license LGPL http://www.gnu.org/copyleft/lesser.html
+/*
+ * Limb PHP Framework
+ *
+ * @link http://limb-project.com
+ * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
+ * @license LGPL http://www.gnu.org/copyleft/lesser.html
*/
+
+/**
+ * @package tree
+ * @version $Id$
+ */
lmb_require('limb/tree/src/lmbTree.interface.php');
lmb_require('limb/core/src/lmbDecorator.class.php');
lmbDecorator :: generate('lmbTree', 'lmbTreeDecorator');
Modified: 3.x/trunk/limb/wact/src/compiler/tag_node/WactTagDictionary.class.php
===================================================================
--- 3.x/trunk/limb/wact/src/compiler/tag_node/WactTagDictionary.class.php 2007-06-13 07:50:57 UTC (rev 5988)
+++ 3.x/trunk/limb/wact/src/compiler/tag_node/WactTagDictionary.class.php 2007-06-13 13:08:11 UTC (rev 5989)
@@ -1,25 +1,25 @@
-<?php
-/*
- * Limb PHP Framework
- *
- * @link http://limb-project.com
- * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
- * @license LGPL http://www.gnu.org/copyleft/lesser.html
- */
+<?php
+/*
+ * Limb PHP Framework
+ *
+ * @link http://limb-project.com
+ * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
+ * @license LGPL http://www.gnu.org/copyleft/lesser.html
+ */
require_once 'limb/wact/src/compiler/WactCompilerArtifactDictionary.class.php';
require_once 'limb/wact/src/compiler/tag_node/WactTagInfo.class.php';
require_once 'limb/wact/src/compiler/tag_node/WactTagInfoExtractor.class.php';
define('LOCATION_SERVER', 'server');
-define('LOCATION_CLIENT', 'client');
-
+define('LOCATION_CLIENT', 'client');
+
/**
* class WactTagDictionary.
*
* @package wact
* @version $Id$
- */
+ */
class WactTagDictionary extends WactCompilerArtifactDictionary
{
protected $info = array();
Modified: 3.x/trunk/limb/wact/src/compiler/templatecompiler.inc.php
===================================================================
--- 3.x/trunk/limb/wact/src/compiler/templatecompiler.inc.php 2007-06-13 07:50:57 UTC (rev 5988)
+++ 3.x/trunk/limb/wact/src/compiler/templatecompiler.inc.php 2007-06-13 13:08:11 UTC (rev 5989)
@@ -1,15 +1,18 @@
<?php
-/*
- * Limb PHP Framework
- *
- * @link http://limb-project.com
- * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
- * @license LGPL http://www.gnu.org/copyleft/lesser.html
+/*
+ * Limb PHP Framework
+ *
+ * @link http://limb-project.com
+ * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
+ * @license LGPL http://www.gnu.org/copyleft/lesser.html
*/
/**
-* Include all the compile time base components plus the compiler
-*/
+ * Include all the compile time base components plus the compiler
+ *
+ * @package wact
+ * @version $Id$
+ */
require_once 'limb/wact/src/compiler/WactDictionaryHolder.class.php';
require_once 'limb/wact/src/compiler/expression/WactExpressionInterface.interface.php';
Modified: 3.x/trunk/limb/wact/src/components/components.inc.php
===================================================================
--- 3.x/trunk/limb/wact/src/components/components.inc.php 2007-06-13 07:50:57 UTC (rev 5988)
+++ 3.x/trunk/limb/wact/src/components/components.inc.php 2007-06-13 13:08:11 UTC (rev 5989)
@@ -1,12 +1,16 @@
-<?php
-/*
- * Limb PHP Framework
- *
- * @link http://limb-project.com
- * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
- * @license LGPL http://www.gnu.org/copyleft/lesser.html
- */
+<?php
+/*
+ * Limb PHP Framework
+ *
+ * @link http://limb-project.com
+ * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
+ * @license LGPL http://www.gnu.org/copyleft/lesser.html
+ */
+/**
+ * @package wact
+ * @version $Id$
+ */
require_once(dirname(__FILE__) . '/WactRuntimeComponent.class.php');
require_once(dirname(__FILE__) . '/WactDatasourceRuntimeComponent.class.php');
require_once(dirname(__FILE__) . '/WactRuntimeTagComponent.class.php');
Modified: 3.x/trunk/limb/wact/src/components/core/default_filter.inc.php
===================================================================
--- 3.x/trunk/limb/wact/src/components/core/default_filter.inc.php 2007-06-13 07:50:57 UTC (rev 5988)
+++ 3.x/trunk/limb/wact/src/components/core/default_filter.inc.php 2007-06-13 13:08:11 UTC (rev 5989)
@@ -1,12 +1,16 @@
-<?php
-/*
- * Limb PHP Framework
- *
- * @link http://limb-project.com
- * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
- * @license LGPL http://www.gnu.org/copyleft/lesser.html
- */
+<?php
+/*
+ * Limb PHP Framework
+ *
+ * @link http://limb-project.com
+ * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
+ * @license LGPL http://www.gnu.org/copyleft/lesser.html
+ */
+/**
+ * @package wact
+ * @version $Id$
+ */
function WactApplyDefault($value, $default)
{
if (empty($value) && $value !== "0" && $value !== 0)
Modified: 3.x/trunk/limb/wact/src/components/form/form.inc.php
===================================================================
--- 3.x/trunk/limb/wact/src/components/form/form.inc.php 2007-06-13 07:50:57 UTC (rev 5988)
+++ 3.x/trunk/limb/wact/src/components/form/form.inc.php 2007-06-13 13:08:11 UTC (rev 5989)
@@ -1,12 +1,16 @@
<?php
-/*
- * Limb PHP Framework
- *
- * @link http://limb-project.com
- * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
- * @license LGPL http://www.gnu.org/copyleft/lesser.html
+/*
+ * Limb PHP Framework
+ *
+ * @link http://limb-project.com
+ * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
+ * @license LGPL http://www.gnu.org/copyleft/lesser.html
*/
+/**
+ * @package wact
+ * @version $Id$
+ */
require_once 'limb/wact/src/components/form/error.inc.php';
require_once 'limb/wact/src/components/form/WactFormComponent.class.php';
require_once 'limb/wact/src/components/form/WactFormElementComponent.class.php';
Modified: 3.x/trunk/limb/wact/tests/cases/compiler/parser/WactBaseParsingStateTestCase.class.php
===================================================================
--- 3.x/trunk/limb/wact/tests/cases/compiler/parser/WactBaseParsingStateTestCase.class.php 2007-06-13 07:50:57 UTC (rev 5988)
+++ 3.x/trunk/limb/wact/tests/cases/compiler/parser/WactBaseParsingStateTestCase.class.php 2007-06-13 13:08:11 UTC (rev 5989)
@@ -1,10 +1,10 @@
<?php
-/*
- * Limb PHP Framework
- *
- * @link http://limb-project.com
- * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
- * @license LGPL http://www.gnu.org/copyleft/lesser.html
+/*
+ * Limb PHP Framework
+ *
+ * @link http://limb-project.com
+ * @copyright Copyright © 2004-2007 BIT(http://bit-creative.com)
+ * @license LGPL http://www.gnu.org/copyleft/lesser.html
*/
require_once 'limb/wact/src/compiler/templatecompiler.inc.php';
More information about the limb-svn
mailing list