Patch #258
openTextilize document snippet on overview and activity page
0%
Description
Small patch for adding formattet Text in overwies.
See Ticket here: http://rubyforge.org/tracker/index.php?func=detail&aid=17583&group_id=1850&atid=7160
Files
Related issues
Updated by Panta Rhei almost 17 years ago
Sorry, the first file contains too much. ;)
Updated by Michael Pirogov almost 17 years ago
Patch for full textilization:
Index: documents/_document.rhtml =================================================================
--- documents/_document.rhtml (revision 1104)
++ documents/_document.rhtml (working copy)@ -1,3 +1,5
@
<p><%= link_to h(document.title), :controller =>
'documents', :action => 'show', :id => document ><br
/>
< unless document.description.blank?
><=h(truncate(document.description, 250)) ><br
/>< end >
<br/>
+< unless document.description.blank? ><=
textilize(sanitize(truncate(document.description, 250)))) ><br
/>< end >
<em><= format_time(document.created_on)
%></em></p>
Index: projects/activity.rhtml
===============================================================
==
--- projects/activity.rhtml (revision 1104)
++ projects/activity.rhtml (working copy)@ -5,7 +5,7
@
<ul>
<% @events_by_day[day].sort {|x,y| y.event_datetime <=>
x.event_datetime }.each do |e| >
<li><p><= format_time(e.event_datetime,
false) > <= link_to truncate(e.event_title, 100), e.event_url
><br />
- < unless e.event_description.blank? ><em><=
truncate(e.event_description, 500) ></em><br /><
end >
< unless e.event_description.blank? ><em><=
textilize(sanitize(truncate(e.event_description, 500)))
></em><br />< end >
<span class="author"><= e.event_author
if e.respond_to?(:event_author)
></span></p></li>
< end %>
</ul>
Updated by Panta Rhei almost 17 years ago
new patch including Michael's changes.
this patch changes the description on activities page.
instead of linking the complete comment the author is now
linked. format: link([author]) [time] [revision]
so you have all important informations at a glance.
so much clearer, for me at least.
should only effect repository changes.
this patch supersedes all previous attached and posted patches.
Updated by Felix Schäfer over 14 years ago
- Subject changed from Patch for ticket #17583 to Textilize document snippet on overview and activity page
The snippets are formatted on the document overview, not yet on the activity view though.
Updated by Mischa The Evil over 7 years ago
- Related to Defect #26321: Activity view should not show raw text added