This commit is contained in:
Mischa ter Smitten 2014-09-18 10:50:35 +02:00
parent d0b78e78ca
commit a69e9bc63b
19 changed files with 139 additions and 118 deletions

View file

@ -29,10 +29,22 @@ class I18nSchema extends CakeSchema {
public $name = 'i18n'; public $name = 'i18n';
/**
* Before callback.
*
* @param array $event Schema object properties
* @return boolean Should process continue
*/
public function before($event = array()) { public function before($event = array()) {
return true; return true;
} }
/**
* After callback.
*
* @param array $event Schema object properties
* @return void
*/
public function after($event = array()) { public function after($event = array()) {
} }

View file

@ -28,10 +28,22 @@ class SessionsSchema extends CakeSchema {
public $name = 'Sessions'; public $name = 'Sessions';
/**
* Before callback.
*
* @param array $event Schema object properties
* @return boolean Should process continue
*/
public function before($event = array()) { public function before($event = array()) {
return true; return true;
} }
/**
* After callback.
*
* @param array $event Schema object properties
* @return void
*/
public function after($event = array()) { public function after($event = array()) {
} }

View file

@ -20,4 +20,3 @@ $content = explode("\n", $content);
foreach ($content as $line): foreach ($content as $line):
echo '<p> ' . $line . "</p>\n"; echo '<p> ' . $line . "</p>\n";
endforeach; endforeach;
?>

View file

@ -14,4 +14,4 @@
* @license http://www.opensource.org/licenses/mit-license.php MIT License * @license http://www.opensource.org/licenses/mit-license.php MIT License
*/ */
?> ?>
<?php echo $content; ?> <?php echo $content;

View file

@ -26,4 +26,3 @@
if (Configure::read('debug') > 0): if (Configure::read('debug') > 0):
echo $this->element('exception_stack_trace'); echo $this->element('exception_stack_trace');
endif; endif;
?>

View file

@ -23,4 +23,3 @@
if (Configure::read('debug') > 0): if (Configure::read('debug') > 0):
echo $this->element('exception_stack_trace'); echo $this->element('exception_stack_trace');
endif; endif;
?>

View file

@ -17,7 +17,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html> <html>
<head> <head>
<title><?php echo $title_for_layout; ?></title> <title><?php echo $this->fetch('title'); ?></title>
</head> </head>
<body> <body>
<?php echo $this->fetch('content'); ?> <?php echo $this->fetch('content'); ?>

View file

@ -14,4 +14,4 @@
* @license http://www.opensource.org/licenses/mit-license.php MIT License * @license http://www.opensource.org/licenses/mit-license.php MIT License
*/ */
?> ?>
<?php echo $this->fetch('content'); ?> <?php echo $this->fetch('content');

View file

@ -23,7 +23,7 @@ $cakeVersion = __d('cake_dev', 'CakePHP %s', Configure::version())
<?php echo $this->Html->charset(); ?> <?php echo $this->Html->charset(); ?>
<title> <title>
<?php echo $cakeDescription ?>: <?php echo $cakeDescription ?>:
<?php echo $title_for_layout; ?> <?php echo $this->fetch('title'); ?>
</title> </title>
<?php <?php
echo $this->Html->meta('icon'); echo $this->Html->meta('icon');

View file

@ -22,7 +22,7 @@ $cakeDescription = __d('cake_dev', 'CakePHP: the rapid development php framework
<?php echo $this->Html->charset(); ?> <?php echo $this->Html->charset(); ?>
<title> <title>
<?php echo $cakeDescription ?>: <?php echo $cakeDescription ?>:
<?php echo $title_for_layout; ?> <?php echo $this->fetch('title'); ?>
</title> </title>
<?php <?php
echo $this->Html->meta('icon'); echo $this->Html->meta('icon');

View file

@ -18,11 +18,13 @@
<html> <html>
<head> <head>
<?php echo $this->Html->charset(); ?> <?php echo $this->Html->charset(); ?>
<title><?php echo $page_title; ?></title> <title><?php echo $pageTitle; ?></title>
<?php if (Configure::read('debug') == 0): ?> <?php
<meta http-equiv="Refresh" content="<?php echo $pause; ?>;url=<?php echo $url; ?>"/> if (Configure::read('debug') == 0):
<?php endif; ?> echo sprintf('<meta http-equiv="Refresh" content="%s;url=%s" />', $pause, $url);
endif;
?>
<style><!-- <style><!--
P { text-align:center; font:bold 1.1em sans-serif } P { text-align:center; font:bold 1.1em sans-serif }
A { color:#444; text-decoration:none } A { color:#444; text-decoration:none }
@ -30,6 +32,8 @@ A:HOVER { text-decoration: underline; color:#44E }
--></style> --></style>
</head> </head>
<body> <body>
<p><a href="<?php echo $url; ?>"><?php echo $message; ?></a></p> <p>
<?php echo $this->Html->link($message, $url); ?>
</p>
</body> </body>
</html> </html>

View file

@ -1,2 +1,2 @@
<?php echo $scripts_for_layout; ?> <?php echo $this->fetch('script'); ?>
<script type="text/javascript"><?php echo $this->fetch('content'); ?></script> <script type="text/javascript"><?php echo $this->fetch('content'); ?></script>

View file

@ -3,7 +3,7 @@ if (!isset($channel)):
$channel = array(); $channel = array();
endif; endif;
if (!isset($channel['title'])): if (!isset($channel['title'])):
$channel['title'] = $title_for_layout; $channel['title'] = $this->fetch('title');
endif; endif;
echo $this->Rss->document( echo $this->Rss->document(
@ -11,4 +11,3 @@ echo $this->Rss->document(
array(), $channel, $this->fetch('content') array(), $channel, $this->fetch('content')
) )
); );
?>

View file

@ -1 +1 @@
<?php echo $this->fetch('content'); ?> <?php echo $this->fetch('content');

View file

@ -13,79 +13,75 @@ App::uses('Debugger', 'Utility');
?> ?>
<h2><?php echo __d('cake_dev', 'Release Notes for CakePHP %s.', Configure::version()); ?></h2> <h2><?php echo __d('cake_dev', 'Release Notes for CakePHP %s.', Configure::version()); ?></h2>
<p> <p>
<a href="http://cakephp.org/changelogs/<?php echo Configure::version(); ?>"><?php echo __d('cake_dev', 'Read the changelog'); ?> </a> <?php echo $this->Html->link(__d('cake_dev', 'Read the changelog'), 'http://cakephp.org/changelogs/' . Configure::version()); ?>
</p> </p>
<?php <?php
if (Configure::read('debug') > 0): if (Configure::read('debug') > 0):
Debugger::checkSecurityKeys(); Debugger::checkSecurityKeys();
endif; endif;
?> ?>
<?php <?php if (file_exists(WWW_ROOT . 'css' . DS . 'cake.generic.css')): ?>
if (file_exists(WWW_ROOT . 'css' . DS . 'cake.generic.css')): <p id="url-rewriting-warning" style="background-color:#e32; color:#fff;">
?> <?php echo __d('cake_dev', 'URL rewriting is not properly configured on your server.'); ?>
<p id="url-rewriting-warning" style="background-color:#e32; color:#fff;"> 1) <a target="_blank" href="http://book.cakephp.org/2.0/en/installation/url-rewriting.html" style="color:#fff;">Help me configure it</a>
<?php echo __d('cake_dev', 'URL rewriting is not properly configured on your server.'); ?> 2) <a target="_blank" href="http://book.cakephp.org/2.0/en/development/configuration.html#cakephp-core-configuration" style="color:#fff;">I don't / can't use URL rewriting</a>
1) <a target="_blank" href="http://book.cakephp.org/2.0/en/installation/url-rewriting.html" style="color:#fff;">Help me configure it</a> </p>
2) <a target="_blank" href="http://book.cakephp.org/2.0/en/development/configuration.html#cakephp-core-configuration" style="color:#fff;">I don't / can't use URL rewriting</a> <?php endif; ?>
</p>
<?php
endif;
?>
<p> <p>
<?php <?php
if (version_compare(PHP_VERSION, '5.2.8', '>=')): if (version_compare(PHP_VERSION, '5.2.8', '>=')):
echo '<span class="notice success">';
echo __d('cake_dev', 'Your version of PHP is 5.2.8 or higher.');
echo '</span>';
else:
echo '<span class="notice">';
echo __d('cake_dev', 'Your version of PHP is too low. You need PHP 5.2.8 or higher to use CakePHP.');
echo '</span>';
endif;
?>
</p>
<p>
<?php
if (is_writable(TMP)):
echo '<span class="notice success">'; echo '<span class="notice success">';
echo __d('cake_dev', 'Your version of PHP is 5.2.8 or higher.'); echo __d('cake_dev', 'Your tmp directory is writable.');
echo '</span>'; echo '</span>';
else: else:
echo '<span class="notice">'; echo '<span class="notice">';
echo __d('cake_dev', 'Your version of PHP is too low. You need PHP 5.2.8 or higher to use CakePHP.'); echo __d('cake_dev', 'Your tmp directory is NOT writable.');
echo '</span>'; echo '</span>';
endif; endif;
?>
</p>
<p>
<?php
if (is_writable(TMP)):
echo '<span class="notice success">';
echo __d('cake_dev', 'Your tmp directory is writable.');
echo '</span>';
else:
echo '<span class="notice">';
echo __d('cake_dev', 'Your tmp directory is NOT writable.');
echo '</span>';
endif;
?> ?>
</p> </p>
<p> <p>
<?php <?php
$settings = Cache::settings(); $settings = Cache::settings();
if (!empty($settings)): if (!empty($settings)):
echo '<span class="notice success">'; echo '<span class="notice success">';
echo __d('cake_dev', 'The %s is being used for core caching. To change the config edit %s', '<em>'. $settings['engine'] . 'Engine</em>', 'APP/Config/core.php'); echo __d('cake_dev', 'The %s is being used for core caching. To change the config edit %s', '<em>' . $settings['engine'] . 'Engine</em>', 'APP/Config/core.php');
echo '</span>'; echo '</span>';
else: else:
echo '<span class="notice">'; echo '<span class="notice">';
echo __d('cake_dev', 'Your cache is NOT working. Please check the settings in %s', 'APP/Config/core.php'); echo __d('cake_dev', 'Your cache is NOT working. Please check the settings in %s', 'APP/Config/core.php');
echo '</span>'; echo '</span>';
endif; endif;
?> ?>
</p> </p>
<p> <p>
<?php <?php
$filePresent = null; $filePresent = null;
if (file_exists(APP . 'Config' . DS . 'database.php')): if (file_exists(APP . 'Config' . DS . 'database.php')):
echo '<span class="notice success">'; echo '<span class="notice success">';
echo __d('cake_dev', 'Your database configuration file is present.'); echo __d('cake_dev', 'Your database configuration file is present.');
$filePresent = true; $filePresent = true;
echo '</span>'; echo '</span>';
else: else:
echo '<span class="notice">'; echo '<span class="notice">';
echo __d('cake_dev', 'Your database configuration file is NOT present.'); echo __d('cake_dev', 'Your database configuration file is NOT present.');
echo '<br/>'; echo '<br/>';
echo __d('cake_dev', 'Rename %s to %s', 'APP/Config/database.php.default', 'APP/Config/database.php'); echo __d('cake_dev', 'Rename %s to %s', 'APP/Config/database.php.default', 'APP/Config/database.php');
echo '</span>'; echo '</span>';
endif; endif;
?> ?>
</p> </p>
<?php <?php
@ -103,47 +99,48 @@ if (isset($filePresent)):
endif; endif;
endif; endif;
} }
?>
<p>
<?php
if ($connected && $connected->isConnected()):
echo '<span class="notice success">';
echo __d('cake_dev', 'CakePHP is able to connect to the database.');
echo '</span>';
else:
echo '<span class="notice">';
echo __d('cake_dev', 'CakePHP is NOT able to connect to the database.');
echo '<br /><br />';
echo $errorMsg;
echo '</span>';
endif;
?> ?>
</p> <p>
<?php endif; ?> <?php
if ($connected && $connected->isConnected()):
echo '<span class="notice success">';
echo __d('cake_dev', 'CakePHP is able to connect to the database.');
echo '</span>';
else:
echo '<span class="notice">';
echo __d('cake_dev', 'CakePHP is NOT able to connect to the database.');
echo '<br /><br />';
echo $errorMsg;
echo '</span>';
endif;
?>
</p>
<?php <?php
App::uses('Validation', 'Utility'); endif;
if (!Validation::alphaNumeric('cakephp')):
echo '<p><span class="notice">'; App::uses('Validation', 'Utility');
echo __d('cake_dev', 'PCRE has not been compiled with Unicode support.'); if (!Validation::alphaNumeric('cakephp')):
echo '<br/>'; echo '<p><span class="notice">';
echo __d('cake_dev', 'Recompile PCRE with Unicode support by adding <code>--enable-unicode-properties</code> when configuring'); echo __d('cake_dev', 'PCRE has not been compiled with Unicode support.');
echo '</span></p>'; echo '<br/>';
endif; echo __d('cake_dev', 'Recompile PCRE with Unicode support by adding <code>--enable-unicode-properties</code> when configuring');
echo '</span></p>';
endif;
?> ?>
<p> <p>
<?php <?php
if (CakePlugin::loaded('DebugKit')): if (CakePlugin::loaded('DebugKit')):
echo '<span class="notice success">'; echo '<span class="notice success">';
echo __d('cake_dev', 'DebugKit plugin is present'); echo __d('cake_dev', 'DebugKit plugin is present');
echo '</span>'; echo '</span>';
else: else:
echo '<span class="notice">'; echo '<span class="notice">';
echo __d('cake_dev', 'DebugKit is not installed. It will help you inspect and debug different aspects of your application.'); echo __d('cake_dev', 'DebugKit is not installed. It will help you inspect and debug different aspects of your application.');
echo '<br/>'; echo '<br/>';
echo __d('cake_dev', 'You can install it from %s', $this->Html->link('GitHub', 'https://github.com/cakephp/debug_kit')); echo __d('cake_dev', 'You can install it from %s', $this->Html->link('GitHub', 'https://github.com/cakephp/debug_kit'));
echo '</span>'; echo '</span>';
endif; endif;
?> ?>
</p> </p>
@ -160,20 +157,20 @@ You can also add some CSS styles for your pages at: %s.',
<h3><?php echo __d('cake_dev', 'Getting Started'); ?></h3> <h3><?php echo __d('cake_dev', 'Getting Started'); ?></h3>
<p> <p>
<?php <?php
echo $this->Html->link( echo $this->Html->link(
sprintf('<strong>%s</strong> %s', __d('cake_dev', 'New'), __d('cake_dev', 'CakePHP 2.0 Docs')), sprintf('<strong>%s</strong> %s', __d('cake_dev', 'New'), __d('cake_dev', 'CakePHP 2.0 Docs')),
'http://book.cakephp.org/2.0/en/', 'http://book.cakephp.org/2.0/en/',
array('target' => '_blank', 'escape' => false) array('target' => '_blank', 'escape' => false)
); );
?> ?>
</p> </p>
<p> <p>
<?php <?php
echo $this->Html->link( echo $this->Html->link(
__d('cake_dev', 'The 15 min Blog Tutorial'), __d('cake_dev', 'The 15 min Blog Tutorial'),
'http://book.cakephp.org/2.0/en/tutorials-and-examples/blog/blog.html', 'http://book.cakephp.org/2.0/en/tutorials-and-examples/blog/blog.html',
array('target' => '_blank', 'escape' => false) array('target' => '_blank', 'escape' => false)
); );
?> ?>
</p> </p>

View file

@ -9,7 +9,7 @@
<html> <html>
<head> <head>
<?php echo $this->Html->charset(); ?> <?php echo $this->Html->charset(); ?>
<title><?php echo $page_title; ?></title> <title><?php echo $pageTitle; ?></title>
<?php if (!Configure::read('debug')): ?> <?php if (!Configure::read('debug')): ?>
<meta http-equiv="Refresh" content="<?php echo $pause; ?>;url=<?php echo $url; ?>"/> <meta http-equiv="Refresh" content="<?php echo $pause; ?>;url=<?php echo $url; ?>"/>

View file

@ -1004,7 +1004,7 @@ class Controller extends Object implements CakeEventListener {
$this->set('url', Router::url($url)); $this->set('url', Router::url($url));
$this->set('message', $message); $this->set('message', $message);
$this->set('pause', $pause); $this->set('pause', $pause);
$this->set('page_title', $message); $this->set('pageTitle', $message);
$this->render(false, $layout); $this->render(false, $layout);
} }

View file

@ -1020,7 +1020,7 @@ class ViewTest extends CakeTestCase {
$this->PostsController->set('url', 'flash'); $this->PostsController->set('url', 'flash');
$this->PostsController->set('message', 'yo what up'); $this->PostsController->set('message', 'yo what up');
$this->PostsController->set('pause', 3); $this->PostsController->set('pause', 3);
$this->PostsController->set('page_title', 'yo what up'); $this->PostsController->set('pageTitle', 'yo what up');
$View = new TestView($this->PostsController); $View = new TestView($this->PostsController);
$result = $View->render(false, 'flash'); $result = $View->render(false, 'flash');

View file

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> <head>
<title><?php echo $page_title?></title> <title><?php echo $pageTitle?></title>
<?php echo $this->Html->charset(); ?> <?php echo $this->Html->charset(); ?>
<?php if (!Configure::read('debug')) { ?> <?php if (!Configure::read('debug')) { ?>
@ -16,4 +16,4 @@ A:HOVER { text-decoration: underline; color:#44E }
<body> <body>
<p><a href="<?php echo $url?>"><?php echo $message?></a></p> <p><a href="<?php echo $url?>"><?php echo $message?></a></p>
</body> </body>
</html> </html>