Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
[refs #74159] Override document byline: created by.
Browse files Browse the repository at this point in the history
Replace 'by' with 'created by' author to have a more clear information.
  • Loading branch information
GhitaB committed Jul 11, 2016
1 parent 9913699 commit 1abaeb4
Showing 1 changed file with 87 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
<!-- This override is done only to replace "by" with "created by" in span.documentAuthor -->
<div class="documentByLine"
id="plone-document-byline"
i18n:domain="plone"
tal:condition="view/show">
<span id="lock-icon"
tal:define="lock_icon view/locked_icon"
tal:condition="python:lock_icon">
<img tal:replace="structure lock_icon" />
</span>

<tal:creator tal:define="creator_short_form view/creator;"
tal:condition="creator_short_form">
<tal:name tal:define="creator_long_form string:?author=${creator_short_form};
creator_is_openid python:'/' in creator_short_form;
creator_id python:(creator_short_form, creator_long_form)[creator_is_openid];">
<span class="documentAuthor">
<tal:i18n i18n:translate="label_by_author">
created by
<a href="#"
tal:attributes="href string:${context/@@plone_portal_state/navigation_root_url}/author/${creator_id}"
tal:content="view/authorname"
tal:omit-tag="python:view.author() is None"
i18n:name="author">Roland Barthes</a>
</tal:i18n>
</span>
</tal:name>
</tal:creator>

<tal:dates define="published view/pub_date;
modified context/ModificationDate">
<span class="documentPublished"
tal:condition="published">
<span i18n:translate="box_published">
published
</span>
<span tal:replace="python:view.toLocalizedTime(published,long_format=1)">
August 16, 2001 at 23:35:59
</span><tal:sep condition="modified">,</tal:sep>
</span>

<span class="documentModified"
tal:condition="modified">
<span i18n:translate="box_last_modified">
last modified
</span>
<span tal:replace="python:view.toLocalizedTime(modified,long_format=1)">
August 16, 2001 at 23:35:59
</span>
</span>
</tal:dates>

<tal:expired tal:condition="view/isExpired">
<span class="state-expired"
i18n:translate="time_expired">expired</span>
</tal:expired>

<span class="contentHistory" id="content-history"
tal:condition="view/show_history">
<a href="#"
tal:attributes="href string:${here/absolute_url}/@@historyview"
i18n:translate="label_history">History</a>
</span>

<div class="documentContributors"
tal:define="contributors context/Contributors"
tal:condition="contributors"
i18n:translate="text_contributors">
Contributors:
<span i18n:name="name"
tal:omit-tag=""
tal:content="python: ', '.join(contributors)">
Mary
</span>
</div>

<tal:rights tal:define="rights context/Rights"
tal:condition="rights">
<div tal:replace="rights">
Copyleft NiceCorp Inc.
</div>
</tal:rights>

</div>

0 comments on commit 1abaeb4

Please sign in to comment.