Update of
/var/cvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib/containers
In directory james.mmbase.org:/tmp/cvs-serv14995
Modified Files:
ListNodesContainerTag.java
Log Message:
made some attributes fall back to NULL if empty
See also:
http://cvs.mmbase.org/viewcvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib/containers
Index: ListNodesContainerTag.java
===================================================================
RCS file:
/var/cvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib/containers/ListNodesContainerTag.java,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -b -r1.25 -r1.26
--- ListNodesContainerTag.java 27 Jun 2008 09:07:10 -0000 1.25
+++ ListNodesContainerTag.java 17 Jul 2008 13:52:22 -0000 1.26
@@ -23,7 +23,7 @@
*
* @author Michiel Meeuwissen
* @since MMBase-1.7
- * @version $Id: ListNodesContainerTag.java,v 1.25 2008/06/27 09:07:10 michiel
Exp $
+ * @version $Id: ListNodesContainerTag.java,v 1.26 2008/07/17 13:52:22 michiel
Exp $
*/
public class ListNodesContainerTag extends NodeReferrerTag implements
NodeQueryContainer {
// nodereferrer because RelatedNodesContainer extension
@@ -44,29 +44,29 @@
* @since MMBase-1.8.0
*/
public void setCachepolicy(String t) throws JspTagException {
- cachePolicy = getAttribute(t);
+ cachePolicy = getAttribute(t, true);
}
public void setType(String t) throws JspTagException {
- nodeManager = getAttribute(t);
+ nodeManager = getAttribute(t, true);
}
public void setPath(String t) throws JspTagException {
- path = getAttribute(t);
+ path = getAttribute(t, true);
}
public void setSearchdirs(String s) throws JspTagException {
- searchDirs = getAttribute(s);
+ searchDirs = getAttribute(s, true);
}
public void setElement(String e) throws JspTagException {
- element = getAttribute(e);
+ element = getAttribute(e, true);
}
/**
* @since MMBase-1.7.1
*/
public void setNodes(String n) throws JspTagException {
- nodes = getAttribute(n);
+ nodes = getAttribute(n, true);
}
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs