mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
couple of bugfixes identified while importing from VB
This commit is contained in:
parent
7670598658
commit
f25bcc5067
5 changed files with 15 additions and 11 deletions
|
@ -75,7 +75,7 @@ class PostAnalyzer
|
|||
begin
|
||||
uri = URI.parse(u)
|
||||
host = uri.host
|
||||
@linked_hosts[host] ||= 1
|
||||
@linked_hosts[host] ||= 1 unless host.nil?
|
||||
rescue URI::InvalidURIError
|
||||
# An invalid URI does not count as a raw link.
|
||||
next
|
||||
|
@ -90,10 +90,10 @@ class PostAnalyzer
|
|||
return [] unless @raw.present?
|
||||
return @raw_links if @raw_links.present?
|
||||
|
||||
# Don't include @mentions in the link count
|
||||
@raw_links = []
|
||||
|
||||
cooked_document.search("a").each do |l|
|
||||
# Don't include @mentions in the link count
|
||||
next if l.attributes['href'].nil? || link_is_a_mention?(l)
|
||||
url = l.attributes['href'].to_s
|
||||
@raw_links << url
|
||||
|
|
|
@ -192,7 +192,7 @@ module PrettyText
|
|||
else
|
||||
l["rel"] = "nofollow"
|
||||
end
|
||||
rescue URI::InvalidURIError
|
||||
rescue URI::InvalidURIError, URI::InvalidComponentError
|
||||
# add a nofollow anyway
|
||||
l["rel"] = "nofollow"
|
||||
end
|
||||
|
|
|
@ -55,7 +55,7 @@ class TopicCreator
|
|||
|
||||
category = find_category
|
||||
|
||||
@guardian.ensure_can_create!(Topic,category)
|
||||
@guardian.ensure_can_create!(Topic, category)
|
||||
|
||||
topic_params[:category_id] = category.id if category.present?
|
||||
|
||||
|
|
4
vendor/assets/javascripts/better_markdown.js
vendored
4
vendor/assets/javascripts/better_markdown.js
vendored
|
@ -437,11 +437,15 @@
|
|||
};
|
||||
|
||||
function escapeHTML( text ) {
|
||||
if (text && text.length > 0) {
|
||||
return text.replace( /&/g, "&" )
|
||||
.replace( /</g, "<" )
|
||||
.replace( />/g, ">" )
|
||||
.replace( /"/g, """ )
|
||||
.replace( /'/g, "'" );
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
function render_tree( jsonml ) {
|
||||
|
|
Loading…
Reference in a new issue