Patch #258
Textilize document snippet on overview and activity page
Status: | New | Start date: | ||
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | Text formatting | |||
Target version: | - |
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
Related issues
History
#1
Updated by Panta Rhei over 14 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.
#2
Updated by Michael Pirogov over 14 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>
#3
Updated by Panta Rhei over 14 years ago
Sorry, the first file contains too much. ;)
#4
Updated by Felix Schäfer about 12 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.
#5
Updated by Etienne Massip about 11 years ago
- Category set to Text formatting
#6
Updated by Mischa The Evil almost 5 years ago
- Related to Defect #26321: Activity view should not show raw text added