Use defaultUser.png instead of defaultUser.gif

Indeed, defaultUser.gif is in a deprecated skins folder (Products/CMFPlone/
skins/plone_deprecated/defaultUser.gif) and not defaultUser.png
(Products/CMFPlone/skins/plone_images/defaultUser.png).
Test is also updated.
This commit is contained in:
Benoît Suttor 2013-11-13 15:53:12 +01:00
parent 410b8c998a
commit c3ce01edd0
4 changed files with 7 additions and 4 deletions

View File

@ -4,6 +4,9 @@ Changelog
2.3.0 (unreleased)
------------------
- Put defaultUser.png instead of old defaultUser.gif
[bsuttor]
- Remove bbb directory. bbb was never really implemented.
[timo]

View File

@ -42,14 +42,14 @@
<div class="commentImage" tal:condition="showCommenterImage">
<a href="" tal:condition="has_author_link"
tal:attributes="href author_home_url">
<img src="defaultUser.gif"
<img src="defaultUser.png"
alt=""
class="defaultuserimg"
height="32"
tal:attributes="src portrait_url;
alt reply/author_name" />
</a>
<img src="defaultUser.gif"
<img src="defaultUser.png"
alt=""
class="defaultuserimg"
height="32"

View File

@ -411,7 +411,7 @@ class CommentsViewlet(ViewletBase):
if username is None:
# return the default user image if no username is given
return 'defaultUser.gif'
return 'defaultUser.png'
else:
portal_membership = getToolByName(self.context,
'portal_membership',

View File

@ -479,7 +479,7 @@ class TestCommentsViewlet(unittest.TestCase):
def test_get_commenter_portrait_is_none(self):
self.assertEqual(
self.viewlet.get_commenter_portrait(),
'defaultUser.gif'
'defaultUser.png'
)
def test_get_commenter_portrait_without_userimage(self):