diff --git a/app/views/pages/home.thtml b/app/views/pages/home.thtml index 31beec343..47d39d41b 100644 --- a/app/views/pages/home.thtml +++ b/app/views/pages/home.thtml @@ -1,27 +1,36 @@ -
Your installation of Cake is functional. Edit /app/views/pages/home.thtml
to change the contents of this page.
Your installation of Cake PHP is functional. Edit /app/views/pages/home.thtml
to change the contents of this page.
Cake is a structure of libraries, classes and run-time infrastructure for PHP programmers. It's also what I use at work. It's based on certain conventions, so you may find it rigid at first. The directory structure is already laid out, and it's different from what most people use. From what I've experienced, a great many PHP programmers start as web- or graphic-designers, i.e. they are not university-educated programmers as many in C++ and Java-land. They invent their own, peculiar ways of solving problems and stick to them. Perhaps that's why so few people use PEAR and PECL libraries – they don't usually re-use their code. And I was one of them. (=$html->linkOut('continued...','http://sputnik.pl/docs/intro')?>)
+Cake is a structure of libraries, classes and run-time infrastructure for PHP programmers. It's also what It's original author, Michal uses at work. It's based on certain conventions, so you may find it rigid at first. The directory structure is already laid out, and it's different from what most people use. From what We've experienced, a great many PHP programmers start as web- or graphic-designers, i.e. they are not university-educated programmers as many in C++ and Java-land. They invent their own, peculiar ways of solving problems and stick to them. Perhaps that's why so few people use =$html->linkOut('PEAR', 'http://pear.php.net')?> and =$html->linkOut('PECL', 'http://pecl.php.net')?> libraries – they don't usually re-use their code.
+ +Cake PHP builds on a concept introduced in =$html->linkOut('Ruby on Rails', 'http://rubyonrails.com')?> – it enables rapid developement of feature-rich websites.
.htaccess
files and mod_rewrite
to work; these are available on most web servers)Cake is in its early infancy, but it works and I'm using it on a few projects. Currently the Dispatcher is working, the Model has CRUD functionality but with no joins between tables yet. The Controller is working and has most basic functions (including render()
for templating).
Cake is still in its early infancy, but we are proceeding in good direction – table joins will most probably get added in 0.9.3 release, and better support for user-defined settings is also underway.
NEW! =$html->linkOut('My Amazon Wishlish','http://www.amazon.com/gp/registry/registry.html?id=NODP8QT6LFTO')?> for when you'll want to show your appreciation.
+Cake PHP needs you! We have already quiet active user base, but we are allways open to new bug reports or feature ideas!
-=$html->linkOut('Cake PHP Google Group','http://groups-beta.google.com/group/cake-php')?> · =$html->linkOut('Cake Wiki (temporary)','http://cake.bplusf.net/')?> · =$html->linkOut('Cake TRAC (SVN repository, etc.)','https://developers.nextco.com/cake')?>
+See =$html->linkOut('Cake website','http://sputnik.pl/cake')?> for more information.
+Soon there will be oficial =$html->linkOut('Cake PHP website','http://cakphp.org/')?>, so stay tuned.
+Also see Cake PHP's original authors =$html->linkOut('Amazon wishlish','http://www.amazon.com/gp/registry/registry.html?id=NODP8QT6LFTO')?> if you want to show appreciation for his work on the project.
\ No newline at end of file diff --git a/libs/view.php b/libs/view.php index 8eca86820..9dea33e7a 100644 --- a/libs/view.php +++ b/libs/view.php @@ -479,8 +479,8 @@ class View extends Object ${$helper}->here = $this->here; ${$helper}->params = $this->params; ${$helper}->action = $this->action; - ${$helper}->data = $this->data; - ${$helper}->validationErrors = $this->validationErrors; + //${$helper}->data = $this->data; + //${$helper}->validationErrors = $this->validationErrors; } } }