[fw-general] Creating a portal-like site

2007-03-24 Thread Stephan Stapel
Hi! I am currently considering to create a portal-like application using Zend fw. I did a quick test (http://www.rehno.de) which works quite well: I used a standard-router and a table based layout. In each cell, I rendered a different 'portlet' using views. However, there's one issue that I'm

Re: [fw-general] Creating a portal-like site

2007-03-24 Thread Matthew Ratzloff
Hi Stephan, I'm not sure I understand your question. Form actions would just be URLs like any other in your application. Say a user is at the application index, and logs in. A form action of '/user/login' would send form results to UserController::loginAction(). loginAction() would then parse

Re: [fw-general] Creating a portal-like site

2007-03-24 Thread Stephan Stapel
Hi Matt, Form actions would just be URLs like any other in your application. Say a user is at the application index, and logs in. A form action of '/user/login' would send form results to UserController::loginAction(). that's right but probably wouldn't work here. What I imagined about

Re: [fw-general] Creating a portal-like site

2007-03-24 Thread Matthew Ratzloff
I think I understand the gist of what you're getting at now. a) Use Ajax to asynchronously process things like subscribing and logging in, using a small JSON or XML token that reports either success (with relevant data like success message, first name, user ID, etc.) or failure (with any error