aw crap. sorry i broke this. my bad.
-------- Original Message --------
Subject: [Wicket-autocvs] wicket/src/java/wicket MarkupContainer.java,1.31,1.32
Date: Mon, 28 Mar 2005 18:09:52 +0000
From: Juergen Donnerstag <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Update of /cvsroot/wicket/wicket/src/java/wicket In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12095/src/java/wicket
Modified Files:
MarkupContainer.java Log Message:
fixed the Border problem (re-introduced a piece of code which Jon obviously removed)
Index: MarkupContainer.java
===================================================================
RCS file: /cvsroot/wicket/wicket/src/java/wicket/MarkupContainer.java,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** MarkupContainer.java 27 Mar 2005 14:48:59 -0000 1.31
--- MarkupContainer.java 28 Mar 2005 18:09:49 -0000 1.32
***************
*** 917,920 ****
--- 917,936 ----
}
+ // 3rd try: Components like Border and Panel might implement
+ // the ComponentResolver interface as well.
+ MarkupContainer container = this;
+ while (container != null)
+ {
+ if (container instanceof IComponentResolver)
+ {
+ if (((IComponentResolver)container).resolve(this, markupStream, tag))
+ {
+ return;
+ }
+ }
+ + container = container.findParent(MarkupContainer.class);
+ }
+ // No one was able to handle the component id
markupStream.throwMarkupException("Unable to find component with id '" + id
------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Wicket-autocvs mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/wicket-autocvs
------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Wicket-develop mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-develop
