Re: [nyphp-talk] gzip compressed sites

2007-02-02 Thread Marcin Szkudlarek
Thanks Michael, I'll check that out later. Meanwhile I found a web page which seems to do pretty much the same: http://www.port80software.com/products/httpzip/compresscheck On 02/02/07, Michael Sims <[EMAIL PROTECTED]> wrote: On February 2, 2007, Marcin Szkudlarek wrote: > 1. Is

[nyphp-talk] gzip compressed sites

2007-02-02 Thread Marcin Szkudlarek
1. Is there a way to check in the browser if the page i'm currently viewing was compressed? 2. Is there a way I can check out the size of the original web page and the compressed one (which is actually send over the network) ? Marcin ___ New York PHP C

Re: [nyphp-talk] CAKE Ain't Soup!

2007-01-08 Thread Marcin Szkudlarek
I think that for every framework you need some time to learn it. After that time you're able to get the benefits of using it. I spent few days learning cake (no problems with installation). Usually when I didn't understand how particular part works I just looked into the code.. it's the way I rec

Re: [nyphp-talk] cake url question

2006-11-16 Thread Marcin Szkudlarek
- Jon On Nov 2, 2006, at 3:33 AM, Marcin Szkudlarek wrote: Jon, The problem I found with this solution is that when I create a link pointing to specified brand cake automatically adds name of the controller to the url. Say for example I create link: $html->link("bmw", "/bmw/&quo

Re: [nyphp-talk] cake url question

2006-11-02 Thread Marcin Szkudlarek
is that all the possible values of car_brand must behard-coded into the route.-Nate> Date: Wed, 1 Nov 2006 11:27:21 +> From: "Marcin Szkudlarek" < [EMAIL PROTECTED]>> Subject: [nyphp-talk] cake url question> To: talk@lists.nyphp.org> Message-ID:>   < [EMA

Re: [nyphp-talk] cake url question

2006-11-02 Thread Marcin Szkudlarek
// (dynamic) available in 1.2  } else {     $cars = $this->Car->findAll();   }  $this->set('cars',$cars);  $this->render('view');}If you *need* to have those URLs instead you can just move the Route up one level. - JonOn Nov 1, 2006, at 6:27 AM, Marcin Szkudlarek wrote:

[nyphp-talk] cake url question

2006-11-01 Thread Marcin Szkudlarek
I would like to map multiple url to one controller method like this:example.com/bmwexample.com/toyota example.com/nissan..should invoke method (for example "view") in my controller with parameter "bmw", "toyota" etc.Probably I should configure it in routes.php but I don't have idea how. Regards,Mar