From a6e5922d71e95f6555019df98eacc7cff9d1c618 Mon Sep 17 00:00:00 2001 From: brego Date: Mon, 4 Jul 2005 00:53:17 +0000 Subject: [PATCH] Changes in the description of the default page. git-svn-id: https://svn.cakephp.org/repo/trunk/cake@308 3807eeeb-6ff5-0310-8944-8be069107fe0 --- app/views/pages/home.thtml | 35 ++++++++++++++++++++++------------- libs/view.php | 4 ++-- 2 files changed, 24 insertions(+), 15 deletions(-) diff --git a/app/views/pages/home.thtml b/app/views/pages/home.thtml index 31beec3438d..47d39d41bf8 100644 --- a/app/views/pages/home.thtml +++ b/app/views/pages/home.thtml @@ -1,27 +1,36 @@ -

Cake works!

+

Cake PHP works!

-

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.

-

Introducing Cake

+

Introducing Cake PHP

-

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. (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 linkOut('PEAR', 'http://pear.php.net')?> and linkOut('PECL', 'http://pecl.php.net')?> libraries – they don't usually re-use their code.

+ +

Cake PHP builds on a concept introduced in linkOut('Ruby on Rails', 'http://rubyonrails.com')?> – it enables rapid developement of feature-rich websites.

Features

-

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.

Getting involved

-

NEW! 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!

-

linkOut('Cake PHP Google Group','http://groups-beta.google.com/group/cake-php')?> · linkOut('Cake Wiki (temporary)','http://cake.bplusf.net/')?> · linkOut('Cake TRAC (SVN repository, etc.)','https://developers.nextco.com/cake')?>

+ -

See linkOut('Cake website','http://sputnik.pl/cake')?> for more information.

+

Soon there will be oficial linkOut('Cake PHP website','http://cakphp.org/')?>, so stay tuned.

+

Also see Cake PHP's original authors 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 8eca86820bf..9dea33e7ade 100644 --- a/libs/view.php +++ b/libs/view.php @@ -479,8 +479,8 @@ function _render($___viewFn, $___data_for_view, $___play_safe = true) ${$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; } } }