Commit b6a7008c authored by Ivan Tyagov's avatar Ivan Tyagov

Do not show links to author if it's an anonymous user.

parent b2f7c2b1
......@@ -56,7 +56,7 @@
portal = context.getPortalObject()\n
\n
author = context.getSourceValue()\n
result = {\'author_url\': \'#\',\n
result = {\'author_url\': None,\n
\'author_signature\': None,\n
\'author_title\': context.Base_translateString(\'Unknown User\')}\n
\n
......@@ -68,6 +68,10 @@ if author is not None:\n
return result\n
</string> </value>
</item>
<item>
<key> <string>_params</string> </key>
<value> <string></string> </value>
</item>
<item>
<key> <string>_proxy_roles</string> </key>
<value>
......
......@@ -36,12 +36,18 @@
<key> <string>_text</string> </key>
<value> <unicode encoding="cdata"><![CDATA[
<tal:block tal:define="author_dict python: here.DiscussionPost_getAuthorDict()">\n
<tal:block tal:define="author_dict python: here.DiscussionPost_getAuthorDict();\n
is_author_link_available python:author_dict[\'author_url\'] is not None;">\n
\n
<a class="listbox-row-discussion-thread-author-link"\n
tal:attributes="href author_dict/author_url"\n
tal:content="author_dict/author_title"/>\n
</tal:block>\n
tal:content="author_dict/author_title"\n
tal:condition="is_author_link_available"/>\n
\n
<span tal:content="author_dict/author_title"\n
tal:condition="not:is_author_link_available"/>\n
\n
</tal:block>
]]></unicode> </value>
</item>
......
......@@ -38,17 +38,22 @@
<tal:block tal:define="last_post here/DiscussionThread_getLastPost;\n
author_dict last_post/DiscussionPost_getAuthorDict;\n
">\n
is_author_link_available python:author_dict[\'author_url\'] is not None;">\n
\n
<a class="listbox-row-discussion-thread-last-post-by-author-link"\n
tal:attributes="href author_dict/author_url"\n
tal:content="author_dict/author_title"/> \n
tal:content="author_dict/author_title"\n
tal:condition="is_author_link_available"/>\n
\n
<span tal:content="author_dict/author_title"\n
tal:condition="not:is_author_link_available"/>\n
\n
<a class="listbox-row-discussion-thread-last-post-link"\n
tal:attributes="href python: \'%s/view?list_start=%s&reset=1#%s\' %(here.absolute_url(), last_post.getId(), last_post.getUid())"> \n
<img src="document_icon.gif" alt="Link To Post"/>\n
</a>\n
\n
</tal:block>\n
</tal:block>
]]></unicode> </value>
</item>
......
......@@ -279,6 +279,14 @@
<string>response_count</string>
<string></string>
</tuple>
<tuple>
<string>author</string>
<string></string>
</tuple>
<tuple>
<string>last_post</string>
<string></string>
</tuple>
<tuple>
<string>title</string>
<string>ListBox_getDiscussionThreadUrl</string>
......
92
\ No newline at end of file
93
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment