[fw-general] Debug Plugin

2008-08-11 Thread Greg Freeman
Has anyone made some kind of debug plugin to show the queries that have executed for a page with the profiler etc and styled it into a toolbar? (similar to symfony I guess). -- View this message in context: http://www.nabble.com/Debug-Plugin-tp18938417p18938417.html Sent from the Zend Framework

Re: [fw-general] Overriding Zend_Loader::loadClass()

2008-08-11 Thread Michał Zieliński
Jack, could you please paste the formatted code on the http://paste2.org/ or elsewhere. It would be easier to look at. Summarizing... To get better performance (at the time) of ZF you need to remove all require_once from lib classes and write your own autoloader based on SPL? Right? (of course u

[fw-general] Looking for a great story about ZF and Dojo. . .

2008-08-11 Thread Wil Sinclair
Hi all, you might have noticed that we've been pretty busy working on the 1.6 release of late. It looks like we're getting pretty close now, so I have a simple request from the community. Zend is looking for a great story around a site or app powered by Zend Framework and Dojo that is using some of

RE: [fw-general] Zend_Cache question

2008-08-11 Thread Steven Brown
Hi Jack, >From what I know the cache is cleaned automatically, you have no way to retrieve something that is cleaned to reset it later. This means you will have to handle this process yourself. I would suggest storing the result in a separate file so that if your request fails you can load

[fw-general] zend_feed with curl

2008-08-11 Thread Dimitri van Hees
hello list, is there a possibility to combine zend_feed with curl? the problem i encounter is that some of the external feeds i try to fetch are offline a lot of the time. for that reason, i'd like to use curl (with an option to timeout properly) to retrieve the feed contents. i'd see Zend_Fe

Re: [fw-general] How to integrate a Dojo date picker to Zend_Form?

2008-08-11 Thread Sudheer
Matthew Weier O'Phinney wrote: -- Sudheer <[EMAIL PROTECTED]> wrote (on Sunday, 10 August 2008, 10:26 PM +0530): Has anybody written a tutor on how to integrate a Dojo date picker to Zend_Form? I followed the online Zend_Dojo_Form manual, but could not understand it enough to have a work

[fw-general] Zend Framework 1.6 Release Candidate 2 now available!

2008-08-11 Thread Alexander Veremyev
We couldn't be happier to announce that Zend Framework 1.6 Release Candidate 2 is now available from the Zend Framework download site! http://framework.zend.com/download An overview of new features: * Dojo Integration - JSON-RPC Server - dojo.data Envelopes - Dojo View Helper - D

[fw-general] Lucene Crawler Not Adding to Index

2008-08-11 Thread kwylez
I am working from the crawler example code found here: http://www.google.com/url?sa=t&ct=res&cd=1&url=http%3A%2F%2Fwww.zend.com%2Ftopics%2FImprove-your-PHP-Applications-Search-Capabilities-with-Lucene.pdf&ei=y2qgSIiJHpHovAWBn9z-BQ&usg=AFQjCNHBU8vre59KVlgn0fV2O3h6B6bKMw&sig2=QTi5S9NULQDB4t30admvFQ

[fw-general] Zend_Cache question

2008-08-11 Thread Jack Sleight
Hi, First of all, I don't really know how Zend_Cache works internally, so I'm making one (possibly incorrect) assumption, that expired items are not removed from the cache until they are requested via $cache->load(); Now, is the following possible, and if so how? * You have a cache set up

[fw-general] extending Zend_Db_Table_Row (or Zend_Db_Table)

2008-08-11 Thread Dieter Devlieghere
Hi, I have a class that extends Zend_Db_Table which is the DAL class for a "rule" table in my DB. I would like to make multiple Zend_Db_Table_Row implementations ("rules") and adapt my Zend_Db_Table implementation so that whenever my rules get loaded, they are loaded as different implement

Re: [fw-general] contextSwitch & AjaxContent

2008-08-11 Thread Matthew Weier O'Phinney
-- agatone <[EMAIL PROTECTED]> wrote (on Monday, 11 August 2008, 01:30 AM -0700): > So nobody knows anything ? never used it ? I've been busy with release issues; I'll try to look at this in the next day or so. > agatone wrote: > > > > Hi, > > > > I'm trying to use contextSwitch (or AjaxSwitch

[fw-general] Mail Queue

2008-08-11 Thread Daniel Rossi
Hi there im currently trying to find a mail queuing solution to mail to an external SMTP server. Ive have used in the past the PEAR Mail queuing system but was wondering if something was done in PHP5 / Zend. I came across this, it says its in the incubator but i cannot find anything to chec

Re: [fw-general] zend registry problem

2008-08-11 Thread Ahmed Abdel-Aliem
Thanks a lot :) i am using Zend_Session to do the job, i dunno how i forgot this :D thanks a lot for those who helped i really appreciate it. On Fri, Aug 8, 2008 at 1:13 PM, Carlos Medina <[EMAIL PROTECTED]>wrote: > Ahmed Abdel-Aliem schrieb: > > Dear All, > > > > i have a problem setting a valu

[fw-general] url helper problem

2008-08-11 Thread Ahmed Abdel-Aliem
hi, i am trying to build a link with some parameters, i use the following code : Description

Re: [fw-general] How to integrate a Dojo date picker to Zend_Form?

2008-08-11 Thread Sudheer
Matthew Weier O'Phinney wrote: -- Sudheer <[EMAIL PROTECTED]> wrote (on Sunday, 10 August 2008, 10:26 PM +0530): Has anybody written a tutor on how to integrate a Dojo date picker to Zend_Form? I followed the online Zend_Dojo_Form manual, but could not understand it enough to have a work

Re: [fw-general] Unable to translate correct Barcode error message

2008-08-11 Thread Thomas Weidner
This is a bug in the code. The messagekeys should be unique like in all other classes. A simple solution would be to rename the 'invalid' to 'invalidupca' and 'invalidean13'. Just open a issue in jira so the related developer can fix is. Greetings Thomas Weidner, I18N Team Leader, Zend Framew

[fw-general] Unable to translate correct Barcode error message

2008-08-11 Thread Václav Vaník
Hi, I think I found a bug in Zend_Validate_Barcode_UpcA and Zend_Validate_Barcode_Ean13. These validators have same constant value for error messages: class Zend_Validate_Barcode_UpcA .. protected $_messageTemplates = array( self::INVALID=> "'%value%' is an invalid UPC-A bar

Re: [fw-general] Overriding Zend_Loader::loadClass()

2008-08-11 Thread Jack Sleight
Here is the script I've written to remove the require_once and loadClass calls from ZF. This does not fix the HelperBroker issue, that change will need applying manually. -- Jack current(), PATHINFO_EXTENSION) === 'php'); } } $directory = 'zend-framework/library/'; $iterator = new Recursiv

Re: [fw-general] contextSwitch & AjaxContent

2008-08-11 Thread agatone
So nobody knows anything ? never used it ? agatone wrote: > > Hi, > > I'm trying to use contextSwitch (or AjaxSwitch) as i want for some action > to be accessible in JSON format. > > The code i have in my init() of a controller is: > $context = $this->_helper->getHelper('ContextSwitch'); >

Re: [fw-general] Overriding Zend_Loader::loadClass()

2008-08-11 Thread Jack Sleight
Matthew Weier O'Phinney wrote: We've already identified the HelperBroker as being in need of refactoring to use Zend_Loader_PluginLoader. However, that class, too, relies partially on the include_path when the paths provided are not absolute paths. Have you had a chance to test any components tha