Update of /var/cvs/applications/editwizard/templates/jsp
In directory james.mmbase.org:/tmp/cvs-serv31190/jsp

Modified Files:
      Tag: MMBase-1_8
        list.jsp 
Log Message:
support alternate way to enter day values (with a text box instead of dropdown)


See also: http://cvs.mmbase.org/viewcvs/applications/editwizard/templates/jsp


Index: list.jsp
===================================================================
RCS file: /var/cvs/applications/editwizard/templates/jsp/list.jsp,v
retrieving revision 1.64.2.7
retrieving revision 1.64.2.8
diff -u -b -r1.64.2.7 -r1.64.2.8
--- list.jsp    20 Jun 2007 17:03:38 -0000      1.64.2.7
+++ list.jsp    13 Feb 2008 13:15:07 -0000      1.64.2.8
@@ -5,7 +5,7 @@
      * list.jsp
      *
      * @since    MMBase-1.6
-     * @version  $Id: list.jsp,v 1.64.2.7 2007/06/20 17:03:38 michiel Exp $
+     * @version  $Id: list.jsp,v 1.64.2.8 2008/02/13 13:15:07 pierre Exp $
      * @author   Kars Veling
      * @author   Michiel Meeuwissen
      * @author   Pierre van Rooden
@@ -93,6 +93,7 @@
 
 
 boolean deletable = false;
+boolean linkable = false;
 boolean unlinkable = false;
 boolean creatable = false;
 String deletedescription = "";
@@ -106,6 +107,7 @@
     Wizard wiz = null;
     wiz = new Wizard(request.getContextPath(), ewconfig.uriResolver, 
listConfig.wizard, null, cloud);
     deletable = (Utils.selectSingleNode(wiz.getSchema(), "/*/[EMAIL 
PROTECTED]'delete']")!=null);
+    linkable = (Utils.selectSingleNode(wiz.getSchema(), "/*/[EMAIL 
PROTECTED]'link']")!=null);
     unlinkable = (Utils.selectSingleNode(wiz.getSchema(), "/*/[EMAIL 
PROTECTED]'unlink']")!=null);
     creatable = (Utils.selectSingleNode(wiz.getSchema(), "/*/[EMAIL 
PROTECTED]'create']")!=null);
 
@@ -344,6 +346,7 @@
 params.put("sessionid",  ewconfig.sessionId);
 params.put("deletable",  deletable+"");
 params.put("unlinkable",  unlinkable +"");
+params.put("linkable",  linkable +"");
 params.put("creatable",  creatable+"");
 params.put("cloud",  cloud);
 params.put("popupid",  popupId);
_______________________________________________
Cvs mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to