moved some donmai-specific stuff out of default config
This commit is contained in:
@@ -8,5 +8,28 @@ module Danbooru
|
||||
def posts_per_page
|
||||
1
|
||||
end
|
||||
|
||||
def is_user_restricted?(user)
|
||||
!user.is_privileged? || user.name == "ppayne"
|
||||
end
|
||||
|
||||
def is_post_restricted?(post)
|
||||
post.has_tag?("loli") || post.has_tag?("shota")
|
||||
end
|
||||
|
||||
def custom_html_header_content
|
||||
%{
|
||||
<script type="text/javascript">
|
||||
//var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
|
||||
//document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
try {
|
||||
//var pageTracker = _gat._getTracker("UA-86094-4");
|
||||
//pageTracker._trackPageview();
|
||||
} catch(err) {}
|
||||
</script>
|
||||
}.html_safe
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user