Re: [fw-general] Module Sharing and framework.zend.com

2009-07-09 Thread Vince42
Hi, Matthew Weier O'Phinney schrieb: > So, hint, hint -- if somebody or a group of you would like to work on > such an application, we may be able to host it on the ZF site, and give > credit to the authors. We would, of course, like to provide some input > as to the specifications, but otherwise.

Re: [fw-general] How to enable dojo in 1.8!!

2009-07-09 Thread jigen7
wat other important config settings do i need to add in the bootstrap for dojo to work??thanks -- View this message in context: http://www.nabble.com/How-to-enable-dojo-in-1.8%21%21-tp24421373p2448.html Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] Would an XML Sitemap Generator Module for ZF make sense?

2009-07-09 Thread Martijn Korse
Manuel Kiessling wrote: > > [...] I expect to have presentable code by the > end of next week. > > As mentioned before, the interesting question then will be: is this > really a "tool", or is it generic enough to have it implemented as > part of a framework like ZF. Either way, we are rea

Re: [fw-general] Module Sharing and framework.zend.com

2009-07-09 Thread Matthew Weier O'Phinney
-- Mary Nicole Hicks wrote (on Thursday, 09 July 2009, 08:56 PM -0700): > I have found that Zend Framework is brilliant, but there are some parts of a > website that are just boring to implement. Take login and registration forms > for example. I am sure that 80% are very similar. > > I think tha

Re: [fw-general] How to enable dojo in 1.8!!

2009-07-09 Thread Matthew Weier O'Phinney
-- jigen7 wrote (on Thursday, 09 July 2009, 08:49 PM -0700): > im really really confuse about the bootstrap, iim following this tutorial on > how to enable dojo with zend as i want to learn dojo, > http://zendgeek.blogspot.com/2009/07/creating-nice-dojo-form-in-zend.html > but the 1st step is to e

[fw-general] Module Sharing and framework.zend.com

2009-07-09 Thread Mary Nicole Hicks
I have found that Zend Framework is brilliant, but there are some parts of a website that are just boring to implement. Take login and registration forms for example. I am sure that 80% are very similar. I think that the Zend framework team needs to add a registry of 3rd party ZF modules to their

[fw-general] How to enable dojo in 1.8!!

2009-07-09 Thread jigen7
im really really confuse about the bootstrap, iim following this tutorial on how to enable dojo with zend as i want to learn dojo, http://zendgeek.blogspot.com/2009/07/creating-nice-dojo-form-in-zend.html but the 1st step is to enable the dojo in bootstrap which has this code //$view = new Zend_

[fw-general] Zend_Form_Element_Submit class attribute

2009-07-09 Thread Kostyantyn Shakhov
How to add a 'class' attribute to Zend_Form_Element_Submit element? It doesn’t recognize it whatever way I tried: $this->addElement( 'Submit', 'btn_search', array( 'label' => 'Search', 'decorators' => $this->buttonDecorato

[fw-general] ZF1.8.4 and Dojo filteringselect

2009-07-09 Thread Holon35
Since V1.8.4 off ZF all my dojo dialog are down. This is a piece of one of my Form : $frechevenementcommunaute = new Zend_Dojo_Form_Element_FilteringSelect('ann_communaute'); $frechevenementcommunaute->setDecorators(array('DijitElement',array('Label', array('escape'=>false)), array('HtmlTag', a

Re: [fw-general] Zend Framework Custom Builds

2009-07-09 Thread Саша Стаменковић
Not if you are a fan ;) Regards, Saša Stamenković On Thu, Jul 9, 2009 at 5:49 PM, Mario Guenterberg wrote: > On Thu, Jul 09, 2009 at 05:38:15PM +0200, Саша Стаменковић wrote: > > The case is: > > > > You want to implement simple twitter (Zend_Service_Twitter) script or > > contact form (Zend_F

Re: [fw-general] Zend Framework Custom Builds

2009-07-09 Thread Mario Guenterberg
On Thu, Jul 09, 2009 at 05:38:15PM +0200, Саша Стаменковић wrote: > The case is: > > You want to implement simple twitter (Zend_Service_Twitter) script or > contact form (Zend_Form), so you want target component with dependencies > (e.g. autoload, Zend_Http for twitter...) and your script will be

Re: [fw-general] Zend Framework book or real world example based on v1.8?

2009-07-09 Thread dmitrybelyakov
Joseph Crawford wrote: > > don't buy ZF In Action especially if you are looking at 1.8, it does > not cover any of the new features. It is based on 1.0 - 1.4 and i > believe they hit 1.6 in the end. > > I wasted my money on that book and was not happy about it. > Yup, that's true both t

Re: [fw-general] Zend Framework book or real world example based on v1.8?

2009-07-09 Thread Joseph Crawford
don't buy ZF In Action especially if you are looking at 1.8, it does not cover any of the new features. It is based on 1.0 - 1.4 and i believe they hit 1.6 in the end. I wasted my money on that book and was not happy about it. Thanks, Joseph Crawford On Jul 9, 2009, at 3:12 PM, dmitrybelya

Re: [fw-general] Zend Framework book or real world example based on v1.8?

2009-07-09 Thread dmitrybelyakov
swilhelm wrote: > > Looking for a book or example that incorporates: modules, auth & acl > controlling module-based behavior, cli or rest read/write access to some > of the data (again with auth & acl control), zend test, and doctrine > integration. > Hi Steve, Don't now about the Doctrine s

Re: [fw-general] Captcha image not appearing

2009-07-09 Thread Tim Fountain
2009/7/9 kusum > > i am not getting the captcha image but getting an error > Strict Standards: Creating default object from empty value in > C:\wamp\www\new\application\modules\default\controllers\UserController.php > on line 150 > and line 150 states :- > $this->session->registerCaptcha = $captc

Re: [fw-general] Zend Framework + Doctrine Module Autoloader issue

2009-07-09 Thread Jon Lebensold
Another way is simply to create an entry in your bootstrap: protected function _initDoctrine() { $this->bootstrap("autoload"); $dbConfig = $this->options['db']; defined('CONFIG_PATH') || define('CONFIG_PATH', APPLICATION_PATH . '/configs'); def

Re: [fw-general] Zend Framework + Doctrine Module Autoloader issue

2009-07-09 Thread Matthew Ratzloff
At my company I ended up creating a Doctrine integration class with a couple of special methods: class My_Doctrine { /** * Recursively (and lazily) load all models from a directory or * array of directories. * * @param string|array $directory Models directory or directories

[fw-general] Zend Framework book or real world example based on v1.8?

2009-07-09 Thread swilhelm
I have been using ZF 1.7 for my last couple of projects. I am looking for a book or a good real world example of v1.8. Looking for a book or example that incorporates: modules, auth & acl controlling module-based behavior, cli or rest read/write access to some of the data (again with auth & acl c

Re: [fw-general] Zend Framework + Doctrine Module Autoloader issue

2009-07-09 Thread swilhelm
I would really like to see an example of Doctrine integrated as a module as well. - Steve W. dbroderick wrote: > > I am using ZF 1.8.4 and Doctrine 1.1.2 with a module directory setup of > > > +---application > | +---configs > | \---modules > | +---default > | | +---contro

[fw-general] Captcha image not appearing

2009-07-09 Thread kusum
i am using this code to add captcha to my page if (!isset($this->session->passedRegisterCaptcha) || !$this->session->passedRegisterCaptcha) { //if we have set captcha in the session for this request - use it, else generate new one if (isset($this->session->register

Re: [fw-general] Zend Framework Custom Builds

2009-07-09 Thread kamil
Christopher Östlund pisze: The minimal version of ZF is just 4.5MB, is that really too big? On Thu, Jul 9, 2009 at 3:52 PM, umpirsky > wrote: Hi. Is there a custom build download page for zf, which can build zf component with dependencies? For e.g.

Re: [fw-general] Zend Framework Custom Builds

2009-07-09 Thread Саша Стаменковић
Yes, I know, but I must build package manually :) Regards, Saša Stamenković On Thu, Jul 9, 2009 at 4:11 PM, kamil wrote: > Christopher Östlund pisze: > > The minimal version of ZF is just 4.5MB, is that really too big? > > On Thu, Jul 9, 2009 at 3:52 PM, umpirsky wrote: > >> >> Hi. >> >> Is

Re: [fw-general] Zend Framework Custom Builds

2009-07-09 Thread Саша Стаменковић
There is no diference in size between full and minimal package for me, boh are 17.97MB (library/Zend). Looks like the only diference between this 2 is full package contains tests, externals and demos, right? There was packagizer, but it is removed now http://devzone.zend.com/article/4034-Zend-Fram

Re: [fw-general] Zend Framework Custom Builds

2009-07-09 Thread Саша Стаменковић
The case is: You want to implement simple twitter (Zend_Service_Twitter) script or contact form (Zend_Form), so you want target component with dependencies (e.g. autoload, Zend_Http for twitter...) and your script will be installed on clients server, and he will ask : "Why your contact form have 2

[fw-general] Problem using Zend_Test and Controller Plugins

2009-07-09 Thread Nomolos Sharpe
Greetings, Firstly I apologize for double posting, as I am not sure which list is the correct one to post to. I am having trouble using Zend_Test. I am using ZF trunk as at July 8 (Yesterday) 09:31 (GMT-5) My Application works as intended when ran from the browser, I am now trying to implement Z

Re: [fw-general] Problems with the Soap class

2009-07-09 Thread Jaume Presas
Ok, this seems to work. I still doesn't understand why according to the ZF documentation you can use the Zend_Soap class when its php file is not even in the library, missing in combat. But as long as it works with Zend_Soap_Client... Thanks Bart. Jaume

Re: [fw-general] Problem with Zend Form

2009-07-09 Thread Eugene Morgan
You have to call $request->isValid($formData) in order for getValue() to work with the posted data. On Thu, Jul 9, 2009 at 7:40 AM, magrytos1 wrote: > > Hi. I have a problem with my form. In my simple ZF project i have 2 actions: > request and critere. Each one have a form class. In form request i

Re: [fw-general] Zend Framework Custom Builds

2009-07-09 Thread Pádraic Brady
It's not huge, but there are cases where size matters - mostly because the public perceive a huge application download as a sign of something bloated and probably hard to use. Imagine releasing a cool new HTML Cleaner Library - with a 5MB download of which only 268KB is the cleaner library itsel

Re: [fw-general] Zend_Validate_Regex issue

2009-07-09 Thread Bart McLeod
Hi Thomas, Thanks for the reply. What is validated is the output of an HTML form. So everything comes in as a string. The format of the string is intentionally crap, something like "dkfj;sdrfhpthqew;rjhn;kfhe" to mimic the behavior of some very irritating spambots. The reason I use a very s

Re: [fw-general] Zend Framework Custom Builds

2009-07-09 Thread Саша Стаменковић
Thats what is written on the website, but try to download and you'll see that there is 22MB, or am I doing sth wrong? Regards, Saša Stamenković 2009/7/9 Christopher Östlund > The minimal version of ZF is just 4.5MB, is that really too big? > > > On Thu, Jul 9, 2009 at 3:52 PM, umpirsky wrote:

Re: [fw-general] Bootstrap class resource methods

2009-07-09 Thread holografix .
That's it. foo object was working. Simply could not be accessed by getInvokearg(); Cheers holo 2009/7/9 Саша Стаменковић > Great, > I noticed that sometimes, I don't need to return resource, for example > > protected function _initAutoloader() { > $autoloader = Zend_Loader_Autoloader::getIns

Re: [fw-general] Zend Framework Custom Builds

2009-07-09 Thread Christopher Östlund
The minimal version of ZF is just 4.5MB, is that really too big? On Thu, Jul 9, 2009 at 3:52 PM, umpirsky wrote: > > Hi. > > Is there a custom build download page for zf, which can build zf component > with dependencies? For e.g. if I want to use just Zend_Service_Twitter or > Zend_Form, I don't

[fw-general] Zend Framework Custom Builds

2009-07-09 Thread umpirsky
Hi. Is there a custom build download page for zf, which can build zf component with dependencies? For e.g. if I want to use just Zend_Service_Twitter or Zend_Form, I don't need entire framework to be included into my project. Regards, Sasa Stamenkovic. -- View this message in context: http://w

Re: [fw-general] Bootstrap class resource methods

2009-07-09 Thread Саша Стаменковић
Great, I noticed that sometimes, I don't need to return resource, for example protected function _initAutoloader() { $autoloader = Zend_Loader_Autoloader::getInstance(); $autoloader->registerNamespace('Umpirsky_'); } autoload still works, but maybe then I cannot grab it with getInvokeArg... Rega

Re: [fw-general] Bootstrap class resource methods

2009-07-09 Thread holografix .
Hi Caшa Thank you very much. It was a stupid error in my code. It missed a return $foo in the _initFoo() method. Sorry for this. cheers holo 2009/7/9 Саша Стаменковић > Hi. > Try $this->*getInvokeArg*('bootstrap')->getResource('foo'); > > Check > > http://www.nabble.com/How-to-get-an-applicatio

Re: [fw-general] Bootstrap class resource methods

2009-07-09 Thread Саша Стаменковић
Hi. Try $this->*getInvokeArg*('bootstrap')->getResource('foo'); Check http://www.nabble.com/How-to-get-an-application-resource-inside-a-controller-action-td23728917.html#a23729095 Regards, Saša Stamenković On Thu, Jul 9, 2009 at 3:26 PM, holografix . wrote: > Hi > > I have some resource metho

[fw-general] Bootstrap class resource methods

2009-07-09 Thread holografix .
Hi I have some resource methods in Bootstrap class class Bootstrap extends Zend_Application_Bootstrap_Bootstrap { public function _initView() { .. } public function _initFoo() { ... } } How can I access this resources in an action controlle

Re: [fw-general] Zend_Validate_Regex issue

2009-07-09 Thread Thomas Weidner
The regex validator has also a INVALID message which you did not set. Which type has the value you want to validate ? Try a var_dump of the value. Greetings Thomas Weidner, I18N Team Leader, Zend Framework http://www.thomasweidner.com - Original Message - From: "Bart McLeod" To: "fw-g

[fw-general] Problem with Zend Form

2009-07-09 Thread magrytos1
Hi. I have a problem with my form. In my simple ZF project i have 2 actions: request and critere. Each one have a form class. In form request i have one select and one submit button. After selecting a request, the submit button send us to Form critere. The problem is, that when i'm in form critere

Re: [fw-general] Problems with the Soap class

2009-07-09 Thread Bart McLeod
You should be using either Zend_Soap_Client or Zend_Soap_Server for which you will find the files in Zend/Soap directory :-) -Bart Jaume Presas schreef: Hello there. I'm having problems using the Zend_Soap class. Better said: not using it, since I can't even load it. The weird thing is that i

[fw-general] Problems with the Soap class

2009-07-09 Thread Jaume Presas
Hello there. I'm having problems using the Zend_Soap class. Better said: not using it, since I can't even load it. The weird thing is that it's because the file Soap.php is not in the Zend folder, it's simply missing. I downloaded the most recent version (1.8) of the ZF and it's not there. Ca

[fw-general] Zend_Validate_Regex issue

2009-07-09 Thread Bart McLeod
Hi all, I searched the mailing list and the issue tracker, but I can't find an issue for this. However, I would like to double check with you all, before creating a new issue. Maybe I am just coding wrong or there already exists an issue that you can point me to. Here's the problem: I add a