[fw-general] Zend Framework 2.1.5 Released!

2013-04-17 Thread Matthew Weier O'Phinney
The Zend Framework community is pleased to announce the immediate availability of Zend Framework 2.1.5! Packages and installation instructions are available at: http://framework.zend.com/downloads/latest This is a monthly maintenance release. Notable changes --- 2.1.5 is a month

[fw-general] obtain datas from array object Doctrine

2013-04-17 Thread wilmer
I Have annotation self-reference with doctrine, in my controller which throws me: [1] => App\Models\Menu Object ( [id:App\Models\Menu:private] => 2 [menu:App\Models\Menu:private] => Registro [estado:App\Models\Menu:private] => A [fecha:Ap

Re: [fw-general] Re: Cannot update to the current Zend Framework version 2.1.6

2013-04-17 Thread Matthew Weier O'Phinney
On Wed, Apr 17, 2013 at 12:55 PM, automatix wrote: > For the future: How can I find the last (stable) version out? http://framework.zend.com/api/zf-version?v=2 -- Matthew Weier O'Phinney Project Lead| matt...@zend.com Zend Framework | http://framework.zend.com/ PGP key: http

[fw-general] Re: zf2 tests can't load ./vendor modules

2013-04-17 Thread Katalin
It's not a doctrineorm autoloader error. As I said, the first module that tries to load and is not from "modules", it crashes. Marco Pivetta wrote > DoctrineModule does not support autoloading without composer anymore. You > may want to require the composer autoloader in your Bootstrap.php :) > >

[fw-general] Re: Cannot update to the current Zend Framework version 2.1.6

2013-04-17 Thread automatix
Ok. Thank you! -- View this message in context: http://zend-framework-community.634137.n4.nabble.com/Cannot-update-to-the-current-Zend-Framework-version-2-1-6-tp4659740p4659753.html Sent from the Zend Framework mailing list archive at Nabble.com. -- List: fw-general@lists.zend.com Info: http:

[fw-general] Re: Cannot update to the current Zend Framework version 2.1.6

2013-04-17 Thread Marco Pivetta
Go to github, see the tags in the dropdown or in the github project's "tags" section: https://github.com/zendframework/zf2/tags Marco Pivetta http://twitter.com/Ocramius http://ocramius.github.com/ On 17 April 2013 19:55, automatix [via Zend Framework Community] < ml-node+s634137n465975...@n4

[fw-general] Re: Cannot update to the current Zend Framework version 2.1.6

2013-04-17 Thread automatix
For the future: How can I find the last (stable) version out? -- View this message in context: http://zend-framework-community.634137.n4.nabble.com/Cannot-update-to-the-current-Zend-Framework-version-2-1-6-tp4659740p4659751.html Sent from the Zend Framework mailing list archive at Nabble.com.

[fw-general] Re: zf2 tests can't load ./vendor modules

2013-04-17 Thread Marco Pivetta
DoctrineModule does not support autoloading without composer anymore. You may want to require the composer autoloader in your Bootstrap.php :) Marco Pivetta http://twitter.com/Ocramius http://ocramius.github.com/ On 17 April 2013 18:29, Katalin [via Zend Framework Community] < ml-node+s634137n

[fw-general] Re: zf2 tests can't load ./vendor modules

2013-04-17 Thread Katalin
Forgot to mention i tried that way. Fatal error: Uncaught exception 'Zend\ModuleManager\Exception\RuntimeException' with message 'Module (DoctrineModule) could not be initialized.' in Z:\fz\vendor\zendframework\zendframework\library\Zend\ModuleManager\ModuleManager.php:140 Stack trace: #0 Z:\fz\ve

[fw-general] Re: zf2 tests can't load ./vendor modules

2013-04-17 Thread Marco Pivetta
You may want to check http://stackoverflow.com/questions/14768621/zend-framework-2-tutorial-module-application-could-not-be-initialized Also: what is the exact exception? Marco Pivetta http://twitter.com/Ocramius http://ocramius.github.com/ On 17 April 2013 18:09, Katalin [via Zend Framework

[fw-general] zf2 tests can't load ./vendor modules

2013-04-17 Thread Katalin
Hi I did some tests, created the module Blog, did some more tests and it all passed. I had to add doctrine to the module Blog and now i need more tests. My config.php for BlogTests seems to be okey - all directories exists, even "vendor" but the autoloader seems it doesn't load the module DoctrineO

[fw-general] Re: Cannot update to the current Zend Framework version 2.1.6

2013-04-17 Thread Marco Pivetta
Latest stable version is 2.1.4. The readme in master was probably re-adapted in preparation for the 2.1.5 release, which should happen shortly. Marco Pivetta http://twitter.com/Ocramius http://ocramius.github.com/ On 17 April 2013 18:01, automatix [via Zend Framework Community] < ml-node+s6341

[fw-general] Re: Cannot update to the current Zend Framework version 2.1.6

2013-04-17 Thread automatix
I've read the current README.md (https://github.com/zendframework/zf2/commit/10c123231d1bef0d291628e04160093d6ab1313e): there "*Zend Framework 2.1.5*" has been replcaed by *Zend Framework 2.1.6dev* . How can know in the future, what is the last (stable) version? -- View this message in context:

[fw-general] Re: Cannot update to the current Zend Framework version 2.1.6

2013-04-17 Thread Marco Pivetta
2.1.4 _IS_ the latest version... Marco Pivetta http://twitter.com/Ocramius http://ocramius.github.com/ On 17 April 2013 17:41, automatix [via Zend Framework Community] < ml-node+s634137n4659740...@n4.nabble.com> wrote: > Hello guys! > > Trying to update the ZF in a project, I cannot come over

[fw-general] Cannot update to the current Zend Framework version 2.1.6

2013-04-17 Thread automatix
Hello guys! Trying to update the ZF in a project, I cannot come over v2.1.4. user@machine:/path/to/unisportr-zf# php composer.phar self-update You are using the latest composer version. user@machine:/path/to/unisportr-zf# php composer.phar update Loading composer repositories with

[fw-general] Re: Alter HTML just before displaying.

2013-04-17 Thread Razorblade
Hello, you can do that with a controller plugin at postDispatch. // plugin boilerplate.. public function postDispatch(Zend_Controller_Request_Abstract $request) { $response = $this->getResponse(); $body = $response->getBody(); // a