You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Sebastian Hennebrueder <us...@laliluna.de> on 2009/08/19 22:32:47 UTC

Your best practice for - list view + detail view

Hello,
I frequently have the pattern

list or search page to list all for example all books and a detail page book

Before I used the following urls
/book/list
/book/4711

Do you create two pages or a single one?

Which naming convention do you use for the pages?

-- 
Best Regards / Viele Grüße

Sebastian Hennebrueder
-----
Software Developer and Trainer for Hibernate / Java Persistence
http://www.laliluna.de




---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Your best practice for - list view + detail view

Posted by Marcus Veloso <mv...@gmail.com>.
Hi,
/book/  (for search and list)
/book/detail/4711  (crud  without "c")
/book/detail/    (create)

Marcus

Re: Your best practice for - list view + detail view

Posted by "Thiago H. de Paula Figueiredo" <th...@gmail.com>.
Em Wed, 19 Aug 2009 17:32:47 -0300, Sebastian Hennebrueder  
<us...@laliluna.de> escreveu:

> Hello,

Hi!

I usually create two (or three, depending on the case) pages:

/book/list (book.ListBook)
/book/edit/id (book.EditBook)
/book/view/id (book.ViewBook) (if needed)

-- 
Thiago H. de Paula Figueiredo
Independent Java consultant, developer, and instructor
http://www.arsmachina.com.br/thiago

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org