Changesets can be listed by changeset number.
The Git repository is here.
Changeset 454
Add auto-linking to bug report and comment parsing.
- Comitted by: rool
- Date: Friday September 06 07:14:17 2013 (over 11 years ago)
Affected files:
rool/rails/collaboa/trunk/app/helpers/application_helper.rb:
prev. | current | |
return if text.nil? | ||
text.gsub!("<", "<") | ||
text.gsub!(">", ">") | ||
26 | | |
26 | text = auto_link( text ) { |visible| truncate(visible, 50) } | |
27 | text = RedCloth.new(text).to_html | |
return text | ||
end | ||