Re: [fw-general] implementation of Zend_Pdf_Action_JavaScript

2011-03-11 Thread Guillaume ORIOL
Though my first intention was less ambitious, I understand the need to add this feature as part of a subcomponent (that could be named Zend_Pdf_Form). As this is something I am interested in, I just wrote a very first draft of this proposal. I will complete it next week. See

[fw-general] implementation of Zend_Pdf_Action_JavaScript

2011-03-10 Thread Guillaume ORIOL
on the client browser). I wrote an implementation of the empty class Zend_Pdf_Action_JavaScript that I would like to contribute to this community. Therefore, I just sent a signed CLA for it and I would like to know the next step. -- Guillaume ORIOL Software engineer Technema

[fw-general] wrong 'type' attribute in SimpleTextarea

2011-03-08 Thread Guillaume ORIOL
($value) . /textarea\n; return $html; } Regards -- Guillaume ORIOL Software engineer Technema

Re: [fw-general] Re: adding a REST route chained with another route

2011-03-04 Thread Guillaume ORIOL
Le 02/03/11 21:39, nebiros a écrit : Hey, I was reading a devzone post: http://devzone.zend.com/article/12381 and somebody post a comment about how to prepend something to the default routes, in your case the account, in my case the region, so I wrote this in my application.ini file:

Re: [fw-general] Re: adding a REST route chained with another route

2011-02-15 Thread Guillaume ORIOL
Le 12/02/11 12:24, Wil Moore III a écrit : The first thing you will want to check when attempting to match a rest route is whether or not you are trying the correct URI. For example: This Uri will likely not match via the rest route: app.domain.com/account/module/controller/action but based

Re: [fw-general] Re: adding a REST route chained with another route

2011-02-10 Thread Guillaume ORIOL
Le 10/02/11 11:00, Wil Moore III a écrit : Since routes are matched in reverse order you will want your least priority routes to be defined first. In other words, move your default route to the top. - -- Wil Moore III Why is Bottom-posting better than Top-posting:

[fw-general] different behaviour for different route version

2011-02-10 Thread Guillaume ORIOL
tests a V2 route with a specific parameter and then a V1 route, the parameter has been consumed from pathinfo and is no longer available for subsequent routes. Could somebody give me some explanation of it? -- Guillaume ORIOL Software engineer Technema

[fw-general] adding a REST route chained with another route

2011-02-09 Thread Guillaume ORIOL
', array('account' = 'demo'), array('account' = '([a-z0-9]+)') ); $router-addRoute('default', $accountRoute-chain($restRoute)); What is the solution? -- Guillaume ORIOL Software engineer Technema

Re: [fw-general] use of new parameter in Zend_Rest_Route

2010-10-07 Thread Guillaume ORIOL
: as Dojo is widely used, the user is able to create many resources without refreshing the HTML. And some default values could be changed in the meantime. Regards -- Guillaume ORIOL

[fw-general] use of new parameter in Zend_Rest_Route

2010-10-04 Thread Guillaume ORIOL
. Thanks in advance -- Guillaume ORIOL Software engineer Technema

Re: [fw-general] use of new parameter in Zend_Rest_Route

2010-10-04 Thread Guillaume ORIOL
the resource initial state. -- Guillaume ORIOL

[fw-general] default value not taken into account when validating a form

2010-08-10 Thread Guillaume ORIOL
', 'consignment'); ... // Content of the $_POST: // array( //'foo' = 1, //'bar' = 2 // ) // NO 'nature' value is posted by the HTML form if ($request-isPost()) { if ($form-isValid($_POST)) { // never reached as isValid() fails on 'nature' } } Any explanation? -- Guillaume

Re: [fw-general] default value not taken into account when validating a form

2010-08-10 Thread Guillaume ORIOL
element's value filled in? Are you calling setDefault() before or after adding the element to the form? -- Hector Virgen Sent on my Droid X On Aug 10, 2010 3:17 PM, Guillaume ORIOL go.li...@technema.fr mailto:go.li...@technema.fr wrote: Hi, I simply don't understand why I can set a default value

Re: [fw-general] default value not taken into account when validating a form

2010-08-10 Thread Guillaume ORIOL
, Guillaume ORIOL go.li...@technema.fr mailto:go.li...@technema.fr wrote: No, this is not a hidden field. I already tried your suggestion with setValue() but it doesn't help. I was able to trace my problem down to the Zend_Form::isValid() method. For each element, this code block is executed

Re: [fw-general] Release of the ZF + Doctrine 1 Integration

2010-05-26 Thread Guillaume ORIOL
Great work! BTW, did anybody succeed in integrating Zend + Doctrine 2? Regards -- Guillaume Le 24/05/10 19:03, Diego Potapczuk a écrit : Very good! I will take a look ::: Diego Potapczuk On Mon, May 24, 2010 at 1:19 PM, Ralph Schindler ralph.schind...@zend.com

Re: [fw-general] Release of the ZF + Doctrine 1 Integration

2010-05-26 Thread Guillaume ORIOL
on my Github: http://github.com/loicfrering/losolib/blob/master/library/LoSo/. Regards. On Wed, May 26, 2010 at 12:27 PM, Guillaume ORIOL go.li...@technema.fr mailto:go.li...@technema.fr wrote: Great work! BTW, did anybody succeed in integrating Zend + Doctrine 2? Regards

Re: [fw-general] unable to setup REST route in application.ini

2010-04-30 Thread Guillaume ORIOL
with another contributor on fixes, but they are proving hard to reconcile with the current API. Keep an eye on the lists for further progress. -- Matthew Weier O'Phinney Le 29/04/10 16:50, Guillaume ORIOL a écrit : Hi, I am facing an issue with a REST route that I try to setup in application.ini

[fw-general] FlashMessenger and i18n

2010-04-30 Thread Guillaume ORIOL
Hi, Is there any plan to make the FlashMessenger action helper compatible with Zend_Translate? Best regards -- Guillaume ORIOL Software engineer Technema

Re: [fw-general] FlashMessenger and i18n

2010-04-30 Thread Guillaume ORIOL
your messages after pulling them out of the flash messenger. -- Hector On Fri, Apr 30, 2010 at 8:53 AM, Guillaume ORIOL go.li...@technema.fr mailto:go.li...@technema.fr wrote: Hi, Is there any plan to make the FlashMessenger action helper compatible with Zend_Translate? Best

Re: [fw-general] FlashMessenger and i18n

2010-04-30 Thread Guillaume ORIOL
action controllers use the plugin loader and a LIFO stack for helper paths, you can transparently add support by introducing your own flash messenger. -- Hector On Fri, Apr 30, 2010 at 9:26 AM, Guillaume ORIOL go.li...@technema.fr mailto:go.li...@technema.fr wrote: I know it but I was looking

[fw-general] unable to setup REST route in application.ini

2010-04-29 Thread Guillaume ORIOL
a request like this: http://www.domain.com/rest/stocks/ is received, the 'default' route is matched and not the 'rest' one. any idea ? -- Guillaume ORIOL Software engineer Technema

[fw-general] REST standard regarding filtering and sorting collections

2010-04-23 Thread Guillaume ORIOL
) suggests: /Products?filterBy=PricefilterOp=greaterThanfilterValue=20 Thanks for your feedback. -- Guillaume ORIOL Software engineer Technema

Re: [fw-general] Zend_Paginator::toJson() incompatible with JsonRestStore

2010-04-22 Thread Guillaume ORIOL
Here is the filed issue: http://zendframework.com/issues/browse/ZF-9731 Le 21/04/10 22:34, Matthew Weier O'Phinney a écrit : -- Guillaume ORIOLgo.li...@technema.fr wrote (on Wednesday, 21 April 2010, 10:22 PM +0200): You are right, but the example you take is not the Json I get from

[fw-general] Zend_Paginator::toJson() incompatible with JsonRestStore

2010-04-21 Thread Guillaume ORIOL
? -- Guillaume ORIOL Software engineer Technema

[fw-general] should we separate the front-end controller from the REST one

2010-04-21 Thread Guillaume ORIOL
would not be a pure REST anymore. What would be your advice in such a situation? -- Guillaume ORIOL Software engineer Technema

[fw-general] compressing blank lines in Zend_Service_LiveDocx

2010-04-06 Thread Guillaume ORIOL
explain what I need with this address example: ORGANIZATIONCR ADDRESS 1CR ADDRESS 2CR ADDRESS 3CR POSTAL CODE, CITYCR When an address line is empty, how can I tell LiveDocx no to print the entire line, including the CR? Best regards -- Guillaume ORIOL Software engineer Technema

[fw-general] formatting data for merging into LiveDocx

2010-04-06 Thread Guillaume ORIOL
regards -- Guillaume ORIOL Software engineer Technema

Re: [fw-general] formatting data for merging into LiveDocx

2010-04-06 Thread Guillaume ORIOL
the decimal separator to a comma. Thanks in advance -- Guillaume ORIOL Software engineer Technema Hello Guillaume In such cases, I would suggest using a table (without or without cell borders). You would use one row per sub-array in $data. For a very similar example to what you are trying to achieve

[fw-general] best way to extend Zend_Pdf_Page

2010-04-06 Thread Guillaume ORIOL
and Zend_Pdf_Page to My_Pdf and My_Pdf_Page. But, if I load a PDF document from existing file with My_Pdf::load(), all the pages will still be created as instances of Zend_Pdf_Page and not My_Pdf_Page. What would you suggest then? Best regards -- Guillaume ORIOL Software engineer Technema

Re: [fw-general] recurse on cascade delete

2010-03-29 Thread Guillaume ORIOL
in the database, or else change to some other storage engine. Regards, Bill Karwin On Mar 29, 2010, at 3:54 AM, Guillaume ORIOL wrote: Hi, I was working on an application that uses cascade delete and discovered a bug that was already known and reported. I was wondering why the corresponding

[fw-general] Zend_Dojo_Data with compound keys

2010-03-16 Thread Guillaume ORIOL
in a string fashion. My question is: when dealing with tables that hold compound keys, what is the appropriate way to build dojo.data objects? -- Guillaume ORIOL Software engineer Technema

[fw-general] proper way to instantiate a display group without $form-addDisplayGroup

2010-03-08 Thread Guillaume ORIOL
display group (the correct options to pass to it). Could somebody help me? -- Guillaume ORIOL Software engineer Technema

Re: [fw-general] any plan to change the dojo ComboBox behaviour?

2010-02-11 Thread Guillaume ORIOL
dijit and corresponding ZF form element. -- Guillaume ORIOL gor...@technema.fr Technema TECHNEMA TÈl : 01 60 94 70 30 Fax : 01 60 03 12 40 Mob : 06 81 43 04 06

[fw-general] any plan to change the dojo ComboBox behaviour?

2010-02-10 Thread Guillaume ORIOL
can we display a form to edit the saved value. Matthew Weier O'Phinney was pointing that setting the value to a value not in the list simply will not work. And Cameron suggested a workaround for it. Any plan to change the ComboBox behaviour? -- Guillaume ORIOL Software engineer Technema

[fw-general] any plan to change the dojo ComboBox behaviour?

2010-02-10 Thread Guillaume ORIOL
can we display a form to edit the saved value. Matthew Weier O'Phinney was pointing that setting the value to a value not in the list simply will not work. And Cameron suggested a workaround for it. Any plan to change the ComboBox behaviour? -- Guillaume ORIOL Software engineer Technema

[fw-general] query tracker in Zend_Db for some tables

2010-01-22 Thread Guillaume ORIOL
PRIMARY KEY, tablename CHAR(64), query VARCHAR(...) ); I was thinking of using db profiling mechanism to do it. What would you suggest? -- Guillaume ORIOL

Re: [fw-general] query tracker in Zend_Db for some tables

2010-01-22 Thread Guillaume ORIOL
, Jan 22, 2010 at 7:29 AM, Guillaume ORIOL gor...@technema.fr wrote: Hi, I would like to implement a query tracker in Zend_Db for some tables. The idea is to store in db an history of all SQL queries that were executed on these tables. Here is the kind of table schema I would like

[fw-general] a Dojo tab container inherits forbidden attributes from the form

2010-01-06 Thread Guillaume ORIOL
Hi, The mailing list was not very active on monday... May be I will be more lucky today with the following question: Message original Sujet: a Dojo tab container inherits forbidden attributes from the form Date : Mon, 04 Jan 2010 13:22:27 +0100 De :Guillaume ORIOL gor

[fw-general] a Dojo tab container inherits forbidden attributes from the form

2010-01-04 Thread Guillaume ORIOL
=foo-elementbutton name=fooid=footype=buttonButton Label/button/dd /div /form -- Guillaume ORIOL

[fw-general] Zend_Dojo_Form_Element_Editor returning Array using some browsers

2010-01-04 Thread Guillaume ORIOL
find a solution? Best regards -- Guillaume ORIOL

Re: [fw-general] Zend_Dojo_Form_Element_Editor returning Array using some browsers

2010-01-04 Thread Guillaume ORIOL
I would prefer keeping the Dojo one. But if nobody from Zend is able to find a solution with it, I'll give up and use the one you're talking about. I had the same problem with Chrome... ended up just replacing it with ckeditor. On Tue, Jan 5, 2010 at 12:31 AM, Guillaume ORIOL gor

Re: [fw-general] Zend_Dojo_Form_Element_Editor returning Array using some browsers

2010-01-04 Thread Guillaume ORIOL
Just opened http://zendframework.com/issues/browse/ZF-8707 Regards -- Guillaume ORIOL When I use a Zend_Dojo_Form_Element_Editor in a form, the returned value is an array with some browsers. For instance, $form-getValues() will return the following when I use Safari (4.0.4 Mac

Re: [fw-general] URL issue with multiple customers sharing the same application

2009-12-28 Thread Guillaume ORIOL
structure you are using to access your page, what you are passing to the url helper and what the helper is returning? Seems to work fine for me with the route definition you provided. Guillaume ORIOL wrote: Working on an application that is the same for multiple customers, I had to face

Re: [fw-general] URL issue with multiple customers sharing the same application

2009-12-24 Thread Guillaume ORIOL
subdomain part but what about passwords? I just ask as I am thinking about the best approach to take. Thanks for any advice. Dan 2009/12/21 Guillaume ORIOL gor...@technema.fr mailto:gor...@technema.fr Yes, I have exactly one database per customer and one more for supervision purpose

Re: [fw-general] URL issue with multiple customers sharing the same application

2009-12-22 Thread Guillaume ORIOL
! On 21 Dec 2009, at 16:50, Guillaume ORIOL gor...@technema.fr wrote: I do agree with Jake. It is not a big deal to manage 50 database if you have a good back-office to do it. On Mon, Dec 21, 2009 at 11:10 AM, Daniel Latter dan.lat...@gmail.com wrote: OK thanks

[fw-general] isValid not executed on multicheckbox when the element is not required and value is not set

2009-12-22 Thread Guillaume ORIOL
is not required (as they are ignored if choice 2 is checked), when no option is checked, the validator is not executed at all. Does anybody have a solution for it? Thanks -- Guillaume ORIOL

[fw-general] URL issue with multiple customers sharing the same application

2009-12-21 Thread Guillaume ORIOL
' ) ); -- Guillaume ORIOL

Re: [fw-general] URL issue with multiple customers sharing the same application

2009-12-21 Thread Guillaume ORIOL
a quesiton for you: when you say you have several databases, what do you mean? do you mean one per customer/application? Thanks Dan 2009/12/21 Guillaume ORIOL gor...@technema.fr Working on an application that is the same for multiple customers, I had to face a design option. I

Re: [fw-general] URL issue with multiple customers sharing the same application

2009-12-21 Thread Guillaume ORIOL
separate databases instead of one single database? Dan 2009/12/21 Guillaume ORIOL gor...@technema.fr mailto:gor...@technema.fr Yes, I have exactly one database per customer and one more for supervision purpose (where access to customer databases are defined). Le 21/12/09 16:08

Re: [fw-general] one of two view helpers cannot be found

2009-12-18 Thread Guillaume ORIOL
a écrit : I think it's because the paths are relative to the public directory. Try APPLICATION_PATH /modules/default/views/helpers and APPLICATION_PATH /views/helpers. Also, I believe the second line would just overwrite the first. -- Mon On Thu, Dec 17, 2009 at 4:08 AM, Guillaume ORIOL gor

[fw-general] one of two view helpers cannot be found

2009-12-16 Thread Guillaume ORIOL
Hi, I encountered an error which relates to view helpers. The message says Uncaught exception 'Zend_Loader_PluginLoader_Exception' with message 'Plugin by name 'CustomFooter' was not found in the registry. I don't understand why I get the error on one of the two helpers and not on the other. In

Re: [fw-general] one of two view helpers cannot be found

2009-12-16 Thread Guillaume ORIOL
do this both helpers should be found no probs. Hope this helps. Dan 2009/12/16 Guillaume ORIOL gor...@technema.fr mailto:gor...@technema.fr Hi, I encountered an error which relates to view helpers. The message says Uncaught exception 'Zend_Loader_PluginLoader_Exception

[fw-general] why is every module bootstrap executed during initialization?

2009-12-16 Thread Guillaume ORIOL
-- Guillaume ORIOL

Re: [fw-general] why is every module bootstrap executed during initialization?

2009-12-16 Thread Guillaume ORIOL
Thank you Matthew but I don't understand your last remark. Let's say I have two modules, each of which has its own plugin registered at bootstrap: class Default_Bootstrap extends Zend_Application_Module_Bootstrap { public function _initPlugin() { $plugin = new Plugin_Foo();

[fw-general] best practice to build a menu dynamically depending on ACL with assertions

2009-08-24 Thread Guillaume Oriol
if the resource isAllowed(). But the login URL doesn't include the parameter the assertion expects and every permission containing an assertion fails. What would you suggest to solve this use case? - Guillaume ORIOL Sofware architect Technema -- View this message in context: http

[fw-general] filter and validator conflict

2009-06-05 Thread Guillaume Oriol
it. May be I could write a Zend_Filter_Encrypt variant? But what I want to store is a SHA1 digest. And, if I do so, the filter produces a 20 hexadecimal characters that doesn't validate. How can I escape from this dead end? - Guillaume ORIOL Sofware architect Technema -- View this message

[fw-general] how to isolate $_GET or $_POST params from the rest of request

2009-05-22 Thread Guillaume Oriol
the ?) of a GET request. Why can't I find a method in that class to get them? (Such a method would probably be a thin enveloppe arout $_GET.) - Guillaume ORIOL Sofware architect Technema -- View this message in context: http://www.nabble.com/how-to-isolate-%24_GET-or-%24_POST-params-from

Re: [fw-general] how to isolate $_GET or $_POST params from the rest of request

2009-05-22 Thread Guillaume Oriol
for your help. Brenton Alker-3 wrote: Guillaume Oriol wrote: Hi, The Zend_Controller_Request_Http class merges all request parameters (those from the path and those from the query part) into one unique set. I guess this was done on purpose because of the parameters written in the path

[fw-general] expected behavior of getValues() on subform

2009-04-23 Thread Guillaume Oriol
; 'submit', ) With subforms, $form-gt;getValues() returns something like: array ( 'submit' =gt; 'submit', '' =gt; array ( 'name' =gt; 'aaa', 'description' =gt; 'bbb', ) ) - Guillaume ORIOL Sofware architect Technema -- View this message in context: http://www.nabble.com/expected

Re: [fw-general] size limit raised on javascriptCaptureStart()

2009-04-22 Thread Guillaume Oriol
)) * \r (ASCII 13 (0x0D)) * \0 (ASCII 0 (0x00)) * \x0B (ASCII 11 (0x0B)) I will post a message to php-internals regarding the issue on preg_replace. Matthew Weier O'Phinney-3 wrote: -- Guillaume Oriol gor...@technema.fr wrote (on Monday, 20 April 2009, 09:13 AM -0700): Hi, I

Re: [fw-general] size limit raised on javascriptCaptureStart()

2009-04-22 Thread Guillaume Oriol
', $a); /pre would return the string but: pre $a = str_repeat('a', 49998); $a = preg_replace('/^\s*(.*?)\s*$/s', '$1', $a); would return NULL. /pre If I remove the question mark, preg_replace operates properly, whatever size the string is. Guillaume Oriol wrote: Thank you Matthew for your answer

[fw-general] size limit raised on javascriptCaptureStart()

2009-04-20 Thread Guillaume Oriol
); and everything was fine. Therefore, I have two questions: - is there a know limitation on preg_replace() - why did you use a preg_replace function to trim the string ? - Guillaume ORIOL Sofware architect Technema -- View this message in context: http://www.nabble.com/size-limit-raised

[fw-general] No Dojo grid view helper

2008-12-09 Thread Guillaume Oriol
AFAIK, there is no View Helper for dojox.grid.Grid. Is there such a class incubating at this time? If not what would be the starting point to create it? Create My_Dojo_View_Helper_Grid and extends what class (Dijit)? What existing class could I use as a model? Thanks - Guillaume ORIOL

Re: [fw-general] No Dojo grid view helper

2008-12-09 Thread Guillaume Oriol
Thank you for the advice. When do you expect to release the 1.8 version? Matthew Weier O'Phinney-3 wrote: -- Guillaume Oriol [EMAIL PROTECTED] wrote (on Tuesday, 09 December 2008, 06:27 AM -0800): AFAIK, there is no View Helper for dojox.grid.Grid. Is there such a class incubating

Re: [fw-general] unable to disable Dojo

2008-12-08 Thread Guillaume Oriol
Thank you Matthew. Once again you've found the answer AND the solution. -- Best regards Matthew Weier O'Phinney-3 wrote: -- Guillaume Oriol [EMAIL PROTECTED] wrote (on Thursday, 04 December 2008, 11:40 PM -0800): Thank you Matthew for your answer but I don't use Zend_Dojo_Form in my form

[fw-general] unable to disable Dojo

2008-12-04 Thread Guillaume Oriol
; What's wrong? - Guillaume ORIOL Sofware architect Technema -- View this message in context: http://www.nabble.com/unable-to-disable-Dojo-tp20830062p20830062.html Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] unable to disable Dojo

2008-12-04 Thread Guillaume Oriol
Thank you Matthew for your answer but I don't use Zend_Dojo_Form in my form, neither any Dijit. My form extends Zend_Form. Why would ZF enable Dojo in such a case? Matthew Weier O'Phinney-3 wrote: -- Guillaume Oriol [EMAIL PROTECTED] wrote (on Thursday, 04 December 2008, 01:38 AM -0800

Re: [fw-general] class name instead of table name in reference map (Zend_Db)

2008-10-08 Thread Guillaume Oriol
Thank you Bill for this detailed answer. I'll implement the solution you suggest. Bill Karwin wrote: Guillaume Oriol wrote: I wonder why the developpers of Zend_Db component choose the class name instead of column name in the reference map of a Zend_Db_Table object? I

[fw-general] best way to mix a form and a grid

2008-10-07 Thread Guillaume Oriol
of each column but some columns may lack of input field (here, column 2). The problem is: the form and the grid do really intricate each other in terms of HTML. The FORM is OUTSIDE the table and INSIDE it at the same time. What is the best way to do it? - Guillaume ORIOL Sofware architect

[fw-general] class name instead of table name in reference map (Zend_Db)

2008-10-07 Thread Guillaume Oriol
table name, not the table class name. As the $_referenceMap only contains the table class name, I am obliged to instantiate the class just to get its table name! Is there a better way to do so? - Guillaume ORIOL Sofware architect Technema -- View this message in context: http://www.nabble.com

Re: [fw-general] Dojo always enabled

2008-10-02 Thread Guillaume Oriol
Thank you Matthew, Your answer solved my problem. - Guillaume ORIOL Sofware architect Technema -- View this message in context: http://www.nabble.com/Dojo-always-enabled-tp19762103p19779597.html Sent from the Zend Framework mailing list archive at Nabble.com.

[fw-general] Dojo always enabled

2008-10-01 Thread Guillaume Oriol
: style type=text/css !-- @import /fourgon.net/public/js/dijit/themes/tundra/tundra.css; -- /style script type=text/javascript src=/fourgon.net/public/js/dojo/dojo.js/script ... I don't understand why Dojo seem to be enabled by default? - Guillaume ORIOL Sofware architect Technema -- View

Re: [fw-general] encoding in HTTP headers

2008-09-25 Thread Guillaume Oriol
was wrong because my PHP sources are ISO-8859-1 encoded. Matthew Weier O'Phinney-3 wrote: -- Guillaume Oriol [EMAIL PROTECTED] wrote (on Wednesday, 24 September 2008, 04:05 AM -0700): I wonder why my view sets an HTTP header of Content-Type: text/html; charset=iso-8859-1 despite

[fw-general] encoding in HTTP headers

2008-09-24 Thread Guillaume Oriol
which produces, as expected, in my rendered page: meta content=text/html; charset=UTF-8 http-equiv=Content-Type/ Where is my error? - Guillaume ORIOL Sofware architect Technema -- View this message in context: http://www.nabble.com/encoding-in-HTTP-headers-tp19646506p19646506.html Sent from

[fw-general] what is the best practice for handling errors in application and in a plugin?

2008-09-22 Thread Guillaume Oriol
or is there a hidden technical problem? And, as the way to handle errors is different depending on the place they occur, what is the best practice for application errors? To use in every case a forward to a specific action in the error controller? - Guillaume ORIOL Sofware architect Technema -- View

[fw-general] error template not rendered when exception is raised

2008-09-22 Thread Guillaume ORIOL
error message instead of my custom error page (views/scripts/error/error.phtml) Where am I wrong? -- Guillaume ORIOL [EMAIL PROTECTED]