paulsp 2002/09/02 11:33:08
Modified: xdocs changes.xml
webapp/WEB-INF/templates/vm/controllers/html
row-customize.vm multicolumn-customize.vm
column-customize.vm card-customize.vm
docs/site changes.html
Log:
Remove the save button from the controller customization screen when
the user does not have customize permission.
Revision Changes Path
1.69 +5 -1 jakarta-jetspeed/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/jakarta-jetspeed/xdocs/changes.xml,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- changes.xml 1 Sep 2002 19:41:00 -0000 1.68
+++ changes.xml 2 Sep 2002 18:33:08 -0000 1.69
@@ -23,6 +23,10 @@
</li>
-->
<li>
+ Fix - 2002/09/02 - Remove the save button from the controller customization
+ screen when the user does not have customize permission. (PS)
+</li>
+<li>
Update - 2002/09/01 - Updated the folloing jars: (PS)
<ul>
<li>Log4j to v1.2.6</li>
1.9 +3 -0
jakarta-jetspeed/webapp/WEB-INF/templates/vm/controllers/html/row-customize.vm
Index: row-customize.vm
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed/webapp/WEB-INF/templates/vm/controllers/html/row-customize.vm,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- row-customize.vm 23 Jul 2002 00:03:56 -0000 1.8
+++ row-customize.vm 2 Sep 2002 18:33:08 -0000 1.9
@@ -1,3 +1,4 @@
+## $Id$
<!-- WEB-INF\templates\vm\controllers\html\row-customize.vm -->
<br>
<center>
@@ -113,9 +114,11 @@
#if ($!action) <input type="hidden" name="$jlink.ActionKey"
value="$action" > #end
<table cellspacing="2">
<tr>
+#if ($controller.Portlets.allowCustomize($data))
<td>
<input type="submit" name="eventSubmit_doApply"
value="$l10n.CUSTOMIZER_APPLY">
</td>
+#end
<td>
<input type="submit" name="eventSubmit_doCancel"
value="$l10n.CUSTOMIZER_CANCEL">
</td>
1.14 +3 -0
jakarta-jetspeed/webapp/WEB-INF/templates/vm/controllers/html/multicolumn-customize.vm
Index: multicolumn-customize.vm
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed/webapp/WEB-INF/templates/vm/controllers/html/multicolumn-customize.vm,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- multicolumn-customize.vm 5 Aug 2002 11:41:04 -0000 1.13
+++ multicolumn-customize.vm 2 Sep 2002 18:33:08 -0000 1.14
@@ -1,3 +1,4 @@
+## $Id$
<!-- WEB-INF\templates\vm\controllers\html\multicolumn-customize.vm -->
<br>
<table border="0" cellpadding="2" cellspacing="0" width="100%">
@@ -138,9 +139,11 @@
<center>
<table cellspacing="2">
<tr>
+#if ($controller.Portlets.allowCustomize($data))
<td>
<input type="submit" name="eventSubmit_doSave"
value="$l10n.CUSTOMIZER_SAVEAPPLY" >
</td>
+#end
<td>
<input type="submit" name="eventSubmit_doCancel"
value="$l10n.CUSTOMIZER_CANCEL">
</td>
1.10 +3 -0
jakarta-jetspeed/webapp/WEB-INF/templates/vm/controllers/html/column-customize.vm
Index: column-customize.vm
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed/webapp/WEB-INF/templates/vm/controllers/html/column-customize.vm,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- column-customize.vm 23 Jul 2002 00:03:56 -0000 1.9
+++ column-customize.vm 2 Sep 2002 18:33:08 -0000 1.10
@@ -1,3 +1,4 @@
+## $Id$
<!-- WEB-INF\templates\vm\controllers\html\column-customize.vm -->
<br>
<center>
@@ -113,9 +114,11 @@
#if ($!action) <input type="hidden" name="$jslink.ActionKey"
value="$action" > #end
<table cellspacing="2">
<tr>
+#if ($controller.Portlets.allowCustomize($data))
<td>
<input type="submit" name="eventSubmit_doApply"
value="$l10n.CUSTOMIZER_APPLY">
</td>
+#end
<td>
<input type="submit" name="eventSubmit_doCancel"
value="$l10n.CUSTOMIZER_CANCEL">
</td>
1.12 +3 -0
jakarta-jetspeed/webapp/WEB-INF/templates/vm/controllers/html/card-customize.vm
Index: card-customize.vm
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed/webapp/WEB-INF/templates/vm/controllers/html/card-customize.vm,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- card-customize.vm 23 Jul 2002 00:03:56 -0000 1.11
+++ card-customize.vm 2 Sep 2002 18:33:08 -0000 1.12
@@ -1,3 +1,4 @@
+## $Id$
<!-- WEB-INF\templates\vm\controllers\html\card-customize.vm -->
<br>
<center>
@@ -112,9 +113,11 @@
#if ($!action) <input type="hidden" name="$jslink.ActionKey"
value="$action" > #end
<table cellspacing="2">
<tr>
+#if ($controller.Portlets.allowCustomize($data))
<td>
<input type="submit" name="eventSubmit_doApply"
value="$l10n.CUSTOMIZER_APPLY">
</td>
+#end
<td>
<input type="submit" name="eventSubmit_doCancel"
value="$l10n.CUSTOMIZER_CANCEL">
</td>
1.51 +4 -0 jakarta-jetspeed/docs/site/changes.html
Index: changes.html
===================================================================
RCS file: /home/cvs/jakarta-jetspeed/docs/site/changes.html,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- changes.html 1 Sep 2002 19:41:00 -0000 1.50
+++ changes.html 2 Sep 2002 18:33:08 -0000 1.51
@@ -129,6 +129,10 @@
</li>
-->
<li>
+ Fix - 2002/09/02 - Remove the save button from the controller customization
+ screen when the user does not have customize permission. (PS)
+</li>
+<li>
Update - 2002/09/01 - Updated the folloing jars: (PS)
<ul>
<li>Log4j to v1.2.6</li>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>