]> git.decadent.org.uk Git - maypole.git/commitdiff
applied patch for public buttons.
authorMarcus Ramberg <mramberg@cpan.org>
Wed, 8 Dec 2004 11:01:19 +0000 (11:01 +0000)
committerMarcus Ramberg <mramberg@cpan.org>
Wed, 8 Dec 2004 11:01:19 +0000 (11:01 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@304 48953598-375a-da11-a14b-00016c27c3ee

Changes
templates/factory/macros

diff --git a/Changes b/Changes
index 75c2a52171ab3741e72aa7df254b442bdf6601fc..4c52c6be4cd2a98fd1731d80abe57dbf8457c3ef 100644 (file)
--- a/Changes
+++ b/Changes
@@ -11,6 +11,10 @@ Revision history for Perl extension Maypole
     - support compound primary keys in CDBI fetch_objects.
     - add support for compound primary keys in factory templates
       (Dagfinn Ilmari MannsÃ¥ker)
+    - Check if has_a actually points to a Maypole::Model (Dave Howorth)
+    - Only show buttons for public actions.
+      (Dagfinn Ilmari MannsÃ¥ker)
+
 
 2.04  Tue Oct 27 14:00:00 2004
     - fixed Apache::MVC version (Randal Schwartz)
index 4a90e1771f4f1ae9e2c60cb20a2ee009dfaca165..95dc9730e4a4b31f632f164a84c8a0d0a7d1ab8f 100644 (file)
@@ -81,9 +81,11 @@ This is a generic button, which performs an action on an object.
 
 #%]
 [% MACRO button(obj, action) BLOCK; %]
+[% IF obj.is_public(action) %]
 <form class="actionform" action="[% base %]/[% obj.table %]/[% action %]/[% obj.id.join('/') %]" method="post">
 <div class="field"><input class="actionbutton" type="submit" value="[% action %]" /></div></form>
 [% END %]
+[% END %]
 [%#
 
 =head2 view_related