Always show existing comments, even if commenting is disabled.
svn path=/plone.app.discussion/trunk/; revision=46785
This commit is contained in:
parent
61e231b336
commit
75cde25b6f
@ -4,6 +4,9 @@ Changelog
|
||||
1.0RC1 (unreleased)
|
||||
-------------------
|
||||
|
||||
- Always show existing comments, even if commenting is disabled.
|
||||
[timo]
|
||||
|
||||
- Fix CSS for commenter images with a width of more than 2.5em. This fixes
|
||||
http://dev.plone.org/plone/ticket/11391.
|
||||
[timo]
|
||||
|
@ -1,15 +1,15 @@
|
||||
<tal:block tal:define="isDiscussionAllowed view/is_discussion_allowed"
|
||||
tal:condition="isDiscussionAllowed"
|
||||
<tal:block tal:define="userHasReplyPermission view/can_reply;
|
||||
isDiscussionAllowed view/is_discussion_allowed;
|
||||
isAnonymousDiscussionAllowed view/anonymous_discussion_allowed;
|
||||
isAnon view/is_anonymous;
|
||||
canReview view/can_review;
|
||||
replies python:view.get_replies(canReview);
|
||||
has_replies python:view.has_replies(canReview);
|
||||
showCommenterImage view/show_commenter_image;
|
||||
errors options/state/getErrors|nothing;
|
||||
wtool context/@@plone_tools/workflow;"
|
||||
tal:condition="python:isDiscussionAllowed or has_replies"
|
||||
i18n:domain="plone">
|
||||
<tal:block define="userHasReplyPermission view/can_reply;
|
||||
isAnonymousDiscussionAllowed view/anonymous_discussion_allowed;
|
||||
isAnon view/is_anonymous;
|
||||
canReview view/can_review;
|
||||
replies python:view.get_replies(canReview);
|
||||
has_replies python:view.has_replies(canReview);
|
||||
showCommenterImage view/show_commenter_image;
|
||||
errors options/state/getErrors|nothing;
|
||||
wtool context/@@plone_tools/workflow;">
|
||||
|
||||
<div class="reply"
|
||||
tal:condition="python:isAnon and not isAnonymousDiscussionAllowed">
|
||||
@ -126,6 +126,13 @@
|
||||
</div>
|
||||
|
||||
</tal:getreplies>
|
||||
|
||||
<div tal:condition="python: has_replies and not isDiscussionAllowed"
|
||||
class="discreet"
|
||||
i18n:translate="label_commenting_disabled">
|
||||
Commenting has been disabled.
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="reply"
|
||||
@ -156,4 +163,3 @@
|
||||
</div>
|
||||
|
||||
</tal:block>
|
||||
</tal:block>
|
||||
|
@ -63,6 +63,11 @@
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.discussion .discreet {
|
||||
color: #666666;
|
||||
font-size: 85%;
|
||||
}
|
||||
|
||||
/* Reply Form
|
||||
-------------------------------------------------------------------------- */
|
||||
|
||||
@ -143,6 +148,10 @@
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
.row #commenting .formControls {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.row #commenting textarea,
|
||||
.row .discussion textarea {
|
||||
font: 100% Monaco, "Courier New", Courier, monospace;
|
||||
|
Loading…
Reference in New Issue
Block a user