Setting missing props on files

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@7588 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
phpnut 2008-09-09 18:51:28 +00:00
parent 8a30e58504
commit bfa180e4af
8 changed files with 164 additions and 164 deletions

View file

@ -1,5 +1,5 @@
<?php
/* SVN FILE: $Id: dbo_mysql.test.php 6296 2008-01-01 22:18:17Z phpnut $ */
/* SVN FILE: $Id$ */
/**
* DboOracle test
*
@ -19,9 +19,9 @@
* @package cake
* @subpackage cake.cake.libs
* @since CakePHP(tm) v 1.2.0
* @version $Revision: 6296 $
* @modifiedby $LastChangedBy: phpnut $
* @lastmodified $Date: 2008-01-01 17:18:17 -0500 (Tue, 01 Jan 2008) $
* @version $Revision$
* @modifiedby $LastChangedBy$
* @lastmodified $Date$
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/

View file

@ -1,5 +1,5 @@
<?php
/* SVN FILE: $Id: dbo_sqlite.test.php 7257 2008-06-24 04:55:59Z nate $ */
/* SVN FILE: $Id$ */
/**
* DboSqlite test
*
@ -19,9 +19,9 @@
* @package cake
* @subpackage cake.cake.libs
* @since CakePHP(tm) v 1.2.0
* @version $Revision: 7257 $
* @modifiedby $LastChangedBy: nate $
* @lastmodified $Date: 2008-06-24 00:55:59 -0400 (Tue, 24 Jun 2008) $
* @version $Revision$
* @modifiedby $LastChangedBy$
* @lastmodified $Date$
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/

View file

@ -1,71 +1,71 @@
<?php
/* SVN FILE: $Id$ */
/**
* Short description for ad_fixture.php
*
* Long description for ad_fixture.php
*
* PHP versions 4 and 5
*
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @filesource
* @copyright CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
* @link http://www.cakephp.org
* @package cake
* @subpackage cake.tests.fixtures
* @since 1.2
* @version $Revision$
* @modifiedBy $LastChangedBy$
* @lastModified $Date$
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
/**
* AdFixture class
*
* @package cake
* @subpackage cake.tests.fixtures
*/
class AdFixture extends CakeTestFixture {
/**
* name property
*
* @var string 'Ad'
* @access public
*/
var $name = 'Ad';
/**
* fields property
*
* @var array
* @access public
*/
var $fields = array(
'id' => array('type' => 'integer', 'key' => 'primary'),
'campaign_id' => array('type' => 'integer'),
'parent_id' => array('type' => 'integer'),
'lft' => array('type' => 'integer'),
'rght' => array('type' => 'integer'),
'name' => array('type' => 'string', 'length' => 255, 'null' => false)
);
/**
* records property
*
* @var array
* @access public
*/
var $records = array(
array('parent_id' => null, 'lft' => 1, 'rght' => 2, 'campaign_id' => 1, 'name' => 'Nordover'),
array('parent_id' => null, 'lft' => 3, 'rght' => 4, 'campaign_id' => 1, 'name' => 'Statbergen'),
array('parent_id' => null, 'lft' => 5, 'rght' => 6, 'campaign_id' => 1, 'name' => 'Feroy'),
array('parent_id' => null, 'lft' => 7, 'rght' => 12, 'campaign_id' => 2, 'name' => 'Newcastle'),
array('parent_id' => null, 'lft' => 8, 'rght' => 9, 'campaign_id' => 2, 'name' => 'Dublin'),
array('parent_id' => null, 'lft' => 10, 'rght' => 11, 'campaign_id' => 2, 'name' => 'Alborg'),
array('parent_id' => null, 'lft' => 13, 'rght' => 14, 'campaign_id' => 3, 'name' => 'New York')
);
}
<?php
/* SVN FILE: $Id$ */
/**
* Short description for ad_fixture.php
*
* Long description for ad_fixture.php
*
* PHP versions 4 and 5
*
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @filesource
* @copyright CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
* @link http://www.cakephp.org
* @package cake
* @subpackage cake.tests.fixtures
* @since 1.2
* @version $Revision$
* @modifiedBy $LastChangedBy$
* @lastModified $Date$
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
/**
* AdFixture class
*
* @package cake
* @subpackage cake.tests.fixtures
*/
class AdFixture extends CakeTestFixture {
/**
* name property
*
* @var string 'Ad'
* @access public
*/
var $name = 'Ad';
/**
* fields property
*
* @var array
* @access public
*/
var $fields = array(
'id' => array('type' => 'integer', 'key' => 'primary'),
'campaign_id' => array('type' => 'integer'),
'parent_id' => array('type' => 'integer'),
'lft' => array('type' => 'integer'),
'rght' => array('type' => 'integer'),
'name' => array('type' => 'string', 'length' => 255, 'null' => false)
);
/**
* records property
*
* @var array
* @access public
*/
var $records = array(
array('parent_id' => null, 'lft' => 1, 'rght' => 2, 'campaign_id' => 1, 'name' => 'Nordover'),
array('parent_id' => null, 'lft' => 3, 'rght' => 4, 'campaign_id' => 1, 'name' => 'Statbergen'),
array('parent_id' => null, 'lft' => 5, 'rght' => 6, 'campaign_id' => 1, 'name' => 'Feroy'),
array('parent_id' => null, 'lft' => 7, 'rght' => 12, 'campaign_id' => 2, 'name' => 'Newcastle'),
array('parent_id' => null, 'lft' => 8, 'rght' => 9, 'campaign_id' => 2, 'name' => 'Dublin'),
array('parent_id' => null, 'lft' => 10, 'rght' => 11, 'campaign_id' => 2, 'name' => 'Alborg'),
array('parent_id' => null, 'lft' => 13, 'rght' => 14, 'campaign_id' => 3, 'name' => 'New York')
);
}
?>

View file

@ -1,5 +1,5 @@
<?php
/* SVN FILE: $Id: binary_test_fixture.php 7126 2008-06-05 15:20:45Z nate $ */
/* SVN FILE: $Id$ */
/**
* Short description for file.
*
@ -21,9 +21,9 @@
* @package cake.tests
* @subpackage cake.tests.fixtures
* @since CakePHP(tm) v 1.2.0.6700
* @version $Revision: 7126 $
* @modifiedby $LastChangedBy: AD7six $
* @lastmodified $Date: 2008-06-05 11:20:45 -0400 (Thu, 05 Jun 2008) $
* @version $Revision$
* @modifiedby $LastChangedBy$
* @lastmodified $Date$
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
*/
/**

View file

@ -1,63 +1,63 @@
<?php
/* SVN FILE: $Id$ */
/**
* Short description for campaign_fixture.php
*
* Long description for campaign_fixture.php
*
* PHP versions 4 and 5
*
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @filesource
* @copyright CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
* @link http://www.cakephp.org
* @package cake
* @subpackage cake.tests.fixtures
* @since 1.2
* @version $Revision$
* @modifiedBy $LastChangedBy$
* @lastModified $Date$
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
/**
* CampaignFixture class
*
* @package cake
* @subpackage cake.tests.fixtures
*/
class CampaignFixture extends CakeTestFixture {
/**
* name property
*
* @var string 'Campaign'
* @access public
*/
var $name = 'Campaign';
/**
* fields property
*
* @var array
* @access public
*/
var $fields = array(
'id' => array('type' => 'integer', 'key' => 'primary'),
'name' => array('type' => 'string', 'length' => 255, 'null' => false),
);
/**
* records property
*
* @var array
* @access public
*/
var $records = array(
array('name' => 'Hurtigruten'),
array('name' => 'Colorline'),
array('name' => 'Queen of Scandinavia')
);
}
<?php
/* SVN FILE: $Id$ */
/**
* Short description for campaign_fixture.php
*
* Long description for campaign_fixture.php
*
* PHP versions 4 and 5
*
* CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @filesource
* @copyright CakePHP(tm) : Rapid Development Framework <http://www.cakephp.org/>
* @link http://www.cakephp.org
* @package cake
* @subpackage cake.tests.fixtures
* @since 1.2
* @version $Revision$
* @modifiedBy $LastChangedBy$
* @lastModified $Date$
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
*/
/**
* CampaignFixture class
*
* @package cake
* @subpackage cake.tests.fixtures
*/
class CampaignFixture extends CakeTestFixture {
/**
* name property
*
* @var string 'Campaign'
* @access public
*/
var $name = 'Campaign';
/**
* fields property
*
* @var array
* @access public
*/
var $fields = array(
'id' => array('type' => 'integer', 'key' => 'primary'),
'name' => array('type' => 'string', 'length' => 255, 'null' => false),
);
/**
* records property
*
* @var array
* @access public
*/
var $records = array(
array('name' => 'Hurtigruten'),
array('name' => 'Colorline'),
array('name' => 'Queen of Scandinavia')
);
}
?>

View file

@ -1,8 +1,8 @@
<?php echo $this->element('nocache/sub2'); ?>
<cake:nocache>
<?php $foobar = 'in sub1'; ?>
<?php echo $foobar; ?>
</cake:nocache>
<?php echo $this->element('nocache/sub2'); ?>
<cake:nocache>
<?php $foobar = 'in sub1'; ?>
<?php echo $foobar; ?>
</cake:nocache>
<?php echo 'printing: "' . $foobar . '"'; ?>

View file

@ -1,6 +1,6 @@
<cake:nocache>
<?php $barfoo = 'in sub2'; ?>
<?php echo $barfoo; ?>
</cake:nocache>
<cake:nocache>
<?php $barfoo = 'in sub2'; ?>
<?php echo $barfoo; ?>
</cake:nocache>
<?php echo 'printing: "' . $barfoo . '"'; ?>

View file

@ -1,9 +1,9 @@
<cake:nocache>
<?php echo $foo; ?>
</cake:nocache>
<cake:nocache>
<?php echo $bar; ?>
</cake:nocache>
<cake:nocache>
<?php echo $foo; ?>
</cake:nocache>
<cake:nocache>
<?php echo $bar; ?>
</cake:nocache>
<?php echo $this->element('nocache/sub1'); ?>