Patches: Browse | Submit New | Admin

[#17586] Patch for ticket #17583

Date:
2008-01-29 10:15
Priority:
3
Submitted By:
Panta Rhei (pantarhei)
Assigned To:
Nobody (None)
Category:
None
State:
Open
Summary:
Patch for ticket #17583

Detailed 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

Add A Comment: Notepad

Please login


Followup

Message
Date: 2008-01-29 11:46
Sender: Panta Rhei

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.
Date: 2008-01-29 10:31
Sender: Michael Pirogov

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>
Date: 2008-01-29 10:25
Sender: Panta Rhei

Sorry, the first file contains too much. ;)

Attached Files:

Name Description Download
truncate_activity_document.patch Download
truncate_activity_document.patch fixed patch Download
truncate_activity_document.patch supersedes all other patches Download

Changes:

Field Old Value Date By
File Added3278: truncate_activity_document.patch2008-01-29 11:46pantarhei
File Added3276: truncate_activity_document.patch2008-01-29 10:26pantarhei
File Added3274: truncate_activity_document.patch2008-01-29 10:15pantarhei