123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <?php
- /**
- *
- * PHP 5
- *
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @package cake.libs.view.templates.pages
- * @since CakePHP(tm) v 0.10.0.1076
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- App::uses('Debugger', 'Utility');
- ?>
- <h2><?php echo __d('cake_dev', 'Release Notes for CakePHP %s.', Configure::version()); ?></h2>
- <a href="http://cakephp.org/changelogs/1.3.6"><?php echo __d('cake_dev', 'Read the changelog'); ?> </a>
- <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>
- <?php
- $settings = Cache::settings();
- if (!empty($settings)):
- echo '<span class="notice success">';
- echo __d('cake_dev', 'The %s is being used for caching. To change the config edit APP/config/core.php ', '<em>'. $settings['engine'] . 'Engine</em>');
- echo '</span>';
- else:
- echo '<span class="notice">';
- echo __d('cake_dev', 'Your cache is NOT working. Please check the settings in APP/config/core.php');
- echo '</span>';
- endif;
- ?>
- </p>
- <p>
- <?php
- $filePresent = null;
- if (file_exists(APP . 'Config' . DS . 'database.php')):
- echo '<span class="notice success">';
- echo __d('cake_dev', 'Your database configuration file is present.');
- $filePresent = true;
- echo '</span>';
- else:
- echo '<span class="notice">';
- echo __d('cake_dev', 'Your database configuration file is NOT present.');
- echo '<br/>';
- echo __d('cake_dev', 'Rename config/database.php.default to config/database.php');
- echo '</span>';
- endif;
- ?>
- </p>
- <?php
- if (isset($filePresent)):
- App::uses('ConnectionManager', 'Model');
- try {
- $connected = ConnectionManager::getDataSource('default');
- } catch (Exception $e) {
- $connected = false;
- }
- ?>
- <p>
- <?php
- if ($connected && $connected->isConnected()):
- echo '<span class="notice success">';
- echo __d('cake_dev', 'Cake is able to connect to the database.');
- echo '</span>';
- else:
- echo '<span class="notice">';
- echo __d('cake_dev', 'Cake is NOT able to connect to the database.');
- echo '</span>';
- endif;
- ?>
- </p>
- <?php endif; ?>
- <?php
- App::uses('Validation', 'Utility');
- if (!Validation::alphaNumeric('cakephp')) {
- echo '<p><span class="notice">';
- __('PCRE has not been compiled with Unicode support.');
- echo '<br/>';
- __('Recompile PCRE with Unicode support by adding <code>--enable-unicode-properties</code> when configuring');
- echo '</span></p>';
- }
- ?>
- <h3><?php echo __d('cake_dev', 'Editing this Page'); ?></h3>
- <p>
- <?php
- echo __d('cake_dev', 'To change the content of this page, create: APP/views/pages/home.ctp.<br />
- To change its layout, create: APP/views/layouts/default.ctp.<br />
- You can also add some CSS styles for your pages at: APP/webroot/css.');
- ?>
- </p>
- <h3><?php echo __d('cake_dev', 'Getting Started'); ?></h3>
- <p>
- <?php
- echo $this->Html->link(
- sprintf('<strong>%s</strong> %s', __d('cake_dev', 'New'), __d('cake_dev', 'CakePHP 1.3 Docs')),
- 'http://book.cakephp.org/view/875/x1-3-Collection',
- array('target' => '_blank', 'escape' => false)
- );
- ?>
- </p>
- <p>
- <?php
- echo $this->Html->link(
- __d('cake_dev', 'The 15 min Blog Tutorial'),
- 'http://book.cakephp.org/view/1528/Blog',
- array('target' => '_blank', 'escape' => false)
- );
- ?>
- </p>
- <h3><?php echo __d('cake_dev', 'More about Cake'); ?></h3>
- <p>
- <?php echo __d('cake_dev', 'CakePHP is a rapid development framework for PHP which uses commonly known design patterns like Active Record, Association Data Mapping, Front Controller and MVC.'); ?>
- </p>
- <p>
- <?php echo __d('cake_dev', 'Our primary goal is to provide a structured framework that enables PHP users at all levels to rapidly develop robust web applications, without any loss to flexibility.'); ?>
- </p>
- <ul>
- <li><a href="http://cakefoundation.org/"><?php echo __d('cake_dev', 'Cake Software Foundation'); ?> </a>
- <ul><li><?php echo __d('cake_dev', 'Promoting development related to CakePHP'); ?></li></ul></li>
- <li><a href="http://www.cakephp.org"><?php echo __d('cake_dev', 'CakePHP'); ?> </a>
- <ul><li><?php echo __d('cake_dev', 'The Rapid Development Framework'); ?></li></ul></li>
- <li><a href="http://book.cakephp.org"><?php echo __d('cake_dev', 'CakePHP Documentation'); ?> </a>
- <ul><li><?php echo __d('cake_dev', 'Your Rapid Development Cookbook'); ?></li></ul></li>
- <li><a href="http://api.cakephp.org"><?php echo __d('cake_dev', 'CakePHP API'); ?> </a>
- <ul><li><?php echo __d('cake_dev', 'Quick Reference'); ?></li></ul></li>
- <li><a href="http://bakery.cakephp.org"><?php echo __d('cake_dev', 'The Bakery'); ?> </a>
- <ul><li><?php echo __d('cake_dev', 'Everything CakePHP'); ?></li></ul></li>
- <li><a href="http://live.cakephp.org"><?php echo __d('cake_dev', 'The Show'); ?> </a>
- <ul><li><?php echo __d('cake_dev', 'The Show is a live and archived internet radio broadcast CakePHP-related topics and answer questions live via IRC, Skype, and telephone.'); ?></li></ul></li>
- <li><a href="http://groups.google.com/group/cake-php"><?php echo __d('cake_dev', 'CakePHP Google Group'); ?> </a>
- <ul><li><?php echo __d('cake_dev', 'Community mailing list'); ?></li></ul></li>
- <li><a href="irc://irc.freenode.net/cakephp">irc.freenode.net #cakephp</a>
- <ul><li><?php echo __d('cake_dev', 'Live chat about CakePHP'); ?></li></ul></li>
- <li><a href="http://github.com/cakephp/"><?php echo __d('cake_dev', 'CakePHP Code'); ?> </a>
- <ul><li><?php echo __d('cake_dev', 'For the Development of CakePHP Git repository, Downloads'); ?></li></ul></li>
- <li><a href="http://cakephp.lighthouseapp.com/"><?php echo __d('cake_dev', 'CakePHP Lighthouse'); ?> </a>
- <ul><li><?php echo __d('cake_dev', 'CakePHP Tickets, Wiki pages, Roadmap'); ?></li></ul></li>
- <li><a href="http://www.cakeforge.org"><?php echo __d('cake_dev', 'CakeForge'); ?> </a>
- <ul><li><?php echo __d('cake_dev', 'Open Development for CakePHP'); ?></li></ul></li>
- <li><a href="http://astore.amazon.com/cakesoftwaref-20/"><?php echo __d('cake_dev', 'Book Store'); ?> </a>
- <ul><li><?php echo __d('cake_dev', 'Recommended Software Books'); ?></li></ul></li>
- <li><a href="http://www.cafepress.com/cakefoundation"><?php echo __d('cake_dev', 'CakePHP gear'); ?> </a>
- <ul><li><?php echo __d('cake_dev', 'Get your own CakePHP gear - Doughnate to Cake'); ?></li></ul></li>
- </ul>
|