Re: [Components] YAML Component: Requirements

2009-03-24 Thread Derick Rethans
On Mon, 23 Mar 2009, Thomas Nunninger wrote: > we (my brother Josef and I) had a look at the YAML specification and wrote > the > requirements draft that you find attached to this mail. Looks good, but as discussed on IRC, I would add the following points: - part of the requirements should be

Re: [Components] ezcConfiguration and multiple configuration files having the same name

2009-03-24 Thread Derick Rethans
On Mon, 23 Mar 2009, Thomas, Maxime wrote: > I've got an issue with the ezcConfiguration component, but maybe it's > just a documentation problem. > > My folders are organized like this: > >/ > --->config > -->standard.ini > -->... > --->fr > -->config > ->standard.ini >

Re: [Components] Benchmarking mvc frameworks

2009-03-24 Thread Derick Rethans
On Sat, 7 Mar 2009, Benjamin Eberlei wrote: > On Thu, 05 Mar 2009 22:59:10 +0100, Gaetano Giunta wrote: > > An interesting blog post (an update in fact) about relative speed of > > different frameworks in building a simple mvc app: > > > > http://paul-m-jones.com/?p=421 > > > > eZComponents are

Re: [Components] Oracle and Persistent Objects

2009-03-24 Thread Derick Rethans
On Mon, 9 Mar 2009, Peter Hopfgartner wrote: > Tobias Schlitt wrote: > > > > On 03/04/2009 04:06 PM Peter Hopfgartner wrote: > > > > > >> When trying to $session->load(), the whole thing blows up in > >> ezc/PersistentObject/internal/state_transformer.php, line 57. Trying to > >> diagnose wha

Re: [Components] GRAPH - Import data to use in graphs

2009-03-24 Thread Derick Rethans
On Wed, 11 Mar 2009, Raul Mateos wrote: > I was wondering is there is way to import some data, as an .csv value, > instead of using arrayDataSet > > That is, change: > > $graph->data['data'] = new ezcGraphArrayDataSet( array( > 'Unix' => 346, > 'VMS' => 8, > 'Linux' => 374, > 'Windows' => 3

Re: [Components] Need Help - Uncaught exception - using the HelloMvc Example

2009-03-24 Thread Derick Rethans
On Thu, 12 Mar 2009, mailbox_O2_pl wrote: > I'm a beginner on ezComponents and I want to try out the MVCTools > > starting the HelloMvc Example on my local machine occours the > following error: > > Fatal error: Uncaught exception 'ezcMvcInfiniteLoopException' with > message '25 redirects hav

Re: [Components] Benchmarking mvc frameworks

2009-03-24 Thread Benjamin Eberlei
i don't say latency is not an issue, but mvc applications make it really easy to add caching at a later point without hazzle and that makes up lots of speed if needed. also i made the observation, that although mvc frameworks hit php performance pretty hard, its not always observable for the e

Re: [Components] ezcConfiguration and multiple configuration files having the same name

2009-03-24 Thread Thomas, Maxime
In my index.php : $cfg = ezcConfigurationManager::getInstance(); $cfg->init( "ezcConfigurationIniReader", "config" ); $settings = $cfg->getSettingsInGroup( "standard", "MainSettings"); And then further in the code : $cfg = ezcConfigurationManager::getInstance(); $cfg->init( "ezcConfiguration

Re: [Components] GRAPH - Import data to use in graphs

2009-03-24 Thread Raul Mateos
Thanks Derick, I just made a workaround using some PHP, maybe is useful for others: ... #Set the file to import, data.csv, with data, value format $data=file("data.csv", FILE_IGNORE_NEW_LINES); foreach ($data as $line) { #splits each string line using the "," separator $array_values=explod

Re: [Components] ezcConfiguration and multiple configuration files having the same name

2009-03-24 Thread Derick Rethans
On Tue, 24 Mar 2009, Thomas, Maxime wrote: > In my index.php : > > $cfg = ezcConfigurationManager::getInstance(); > $cfg->init( "ezcConfigurationIniReader", "config" ); > $settings = $cfg->getSettingsInGroup( "standard", "MainSettings"); > > > And then further in the code : > > $cfg = ezcConf

Re: [Components] YAML Component: Requirements

2009-03-24 Thread Thomas Nunninger
Hi, Am Dienstag, 24. März 2009 09:47:05 schrieb Derick Rethans: > On Mon, 23 Mar 2009, Thomas Nunninger wrote: > > we (my brother Josef and I) had a look at the YAML specification and > > wrote the requirements draft that you find attached to this mail. > > Looks good, but as discussed on IRC, I w

Re: [Components] [solved] Need Help - Uncaught exception - using the HelloMvc Example

2009-03-24 Thread mailbox_O2_pl
Derick Rethans schrieb: On Thu, 12 Mar 2009, mailbox_O2_pl wrote: I'm a beginner on ezComponents and I want to try out the MVCTools starting the HelloMvc Example on my local machine occours the following error: Fatal error: Uncaught exception 'ezcMvcInfiniteLoopException' wit