Re: total html separation in views

2009-02-06 Thread TheIdeaMan
I'd have to agree with Tobiasz. I don't know how I missed this conversation, but I wished I'd seen it five months ago. I just found Tobiasz site and was overjoyed as I was on the cusp of building my own similar solution. Reasons for using this over other strait PHP would be: security, separation

Re: HABTM relationship and meta-data in link-table

2007-06-28 Thread TheIdeaMan
djiize, What version of CakePHP are you using? I haven't been able to get the 'with' parametera on a hABTM relationship working. Thanks for any info you have on this. On Jun 20, 5:38 pm, djiize <[EMAIL PROTECTED]> wrote: > Take this cautiously, it's just an experiment. > > I just found an inter

Re: Old release downloads and subversion history...

2007-03-06 Thread TheIdeaMan
//svn.cakephp.org/repo/trunk/cake/1.1.x.x/ > > > > You should find minimal changes migrating to 1.1.13 (the latest 1.1.x > > code). Look through the old release announcements from PhpNut - he > > will mention in those anything that changed that would break previous > > co

Re: Old release downloads and subversion history...

2007-02-21 Thread TheIdeaMan
r promised, but there may be something I'm missing. Thanks for your help, Grant, TheIdeaMan On 2/20/07, Grant Cox <[EMAIL PROTECTED]> wrote: > > You can check out every revision through Subversion, via > https://svn.cakephp.org/repo/trunk/cake/1.1.x.x/ > > You should find

Old release downloads and subversion history...

2007-02-20 Thread TheIdeaMan
h.net/projects/3176 Thanks, TheIdeaMan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send

Re: internal redirect?

2006-05-15 Thread TheIdeaMan
$this->layout = 'ajax'; echo $this->requestAction($url, array('return')); exit; } else { parent::redirect($url, $status); } } On 5/15/06, TheIdeaMan <[EMAIL PROTECTED]> wrote: > Add th

Re: internal redirect?

2006-05-15 Thread TheIdeaMan
Add this to your app_controller: function redirect($url, $status = null) { if ($this->RequestHandler->isAjax()) { $this->layout = 'ajax'; $this->requestAction($url); exit; } else { parent::redirect($url, $stat

Re: internal redirect?

2006-05-12 Thread TheIdeaMan
I've run into the same problem. The closest thing I've found is the requestAction() function of the Controller object (I'm using 1.0). Trouble is, requestAction() doesn't seem to load the JavaScript which is problematic if you're doing AJAX. Ideally, the Controller::redirect() method would handle