Re: When I commit to my branch, it goes to trunk

2006-11-29 Thread Bruno Aranda
Maybe you only had switched the root dir or a few dirs of the whole structure, and when you commit outside these you commit to the trunk (you could check with 'svn info' for that dir'). I normally do as Matthias though, checking out in a clean place and working there... Cheers, Bruno On

Re: GoLinkRenderer calls writeURIAttribute to render name and id, why?

2006-11-29 Thread Scott O'Bryan
Right. Well it's the other cases I'm worried about. I would rather not have the decision in the Trinidad code whether to encode the URL or not. We should always be encoding unless we're certain they are bookmarks. Otherwise, presumably, the app server or portal will handle it accordingly.

Re: GoLinkRenderer calls writeURIAttribute to render name and id, why?

2006-11-29 Thread Adam Winer
Guys, this is ALWAYS a # URL. It's the name attr of a link, and can't possibly be anything more. There are zero portal implications. -- Adam On 11/29/06, Scott O'Bryan [EMAIL PROTECTED] wrote: Right. Well it's the other cases I'm worried about. I would rather not have the decision in the

Re: GoLinkRenderer calls writeURIAttribute to render name and id, why?

2006-11-29 Thread Scott O'Bryan
Thanks Adam. That's what I was looking for. :) Scott Adam Winer wrote: Guys, this is ALWAYS a # URL. It's the name attr of a link, and can't possibly be anything more. There are zero portal implications. -- Adam On 11/29/06, Scott O'Bryan [EMAIL PROTECTED] wrote: Right. Well it's

Re: GoLinkRenderer calls writeURIAttribute to render name and id, why?

2006-11-29 Thread Qiang Fan
Adam: Your comment also applies to the following GoLinkRenderer code, right? @Override protected void renderId( FacesContext context, UIComponent component) throws IOException { if (shouldRenderId(context, component)) { String clientId = getClientId(context, component);