##// END OF EJS Templates
fix typo "RedMine" at app/models/wiki_content.rb...
Toshi MARUYAMA -
r9182:f0f7158d87c9
parent child
Show More
@@ -1,122 +1,122
1 # RedMine - project management software
2 # Copyright (C) 2006-2011 Jean-Philippe Lang
1 # Redmine - project management software
2 # Copyright (C) 2006-2012 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require 'zlib'
19 19
20 20 class WikiContent < ActiveRecord::Base
21 21 set_locking_column :version
22 22 belongs_to :page, :class_name => 'WikiPage', :foreign_key => 'page_id'
23 23 belongs_to :author, :class_name => 'User', :foreign_key => 'author_id'
24 24 validates_presence_of :text
25 25 validates_length_of :comments, :maximum => 255, :allow_nil => true
26 26
27 27 acts_as_versioned
28 28
29 29 def visible?(user=User.current)
30 30 page.visible?(user)
31 31 end
32 32
33 33 def project
34 34 page.project
35 35 end
36 36
37 37 def attachments
38 38 page.nil? ? [] : page.attachments
39 39 end
40 40
41 41 # Returns the mail adresses of users that should be notified
42 42 def recipients
43 43 notified = project.notified_users
44 44 notified.reject! {|user| !visible?(user)}
45 45 notified.collect(&:mail)
46 46 end
47 47
48 48 # Return true if the content is the current page content
49 49 def current_version?
50 50 true
51 51 end
52 52
53 53 class Version
54 54 belongs_to :page, :class_name => '::WikiPage', :foreign_key => 'page_id'
55 55 belongs_to :author, :class_name => '::User', :foreign_key => 'author_id'
56 56 attr_protected :data
57 57
58 58 acts_as_event :title => Proc.new {|o| "#{l(:label_wiki_edit)}: #{o.page.title} (##{o.version})"},
59 59 :description => :comments,
60 60 :datetime => :updated_on,
61 61 :type => 'wiki-page',
62 62 :url => Proc.new {|o| {:controller => 'wiki', :action => 'show', :project_id => o.page.wiki.project, :id => o.page.title, :version => o.version}}
63 63
64 64 acts_as_activity_provider :type => 'wiki_edits',
65 65 :timestamp => "#{WikiContent.versioned_table_name}.updated_on",
66 66 :author_key => "#{WikiContent.versioned_table_name}.author_id",
67 67 :permission => :view_wiki_edits,
68 68 :find_options => {:select => "#{WikiContent.versioned_table_name}.updated_on, #{WikiContent.versioned_table_name}.comments, " +
69 69 "#{WikiContent.versioned_table_name}.#{WikiContent.version_column}, #{WikiPage.table_name}.title, " +
70 70 "#{WikiContent.versioned_table_name}.page_id, #{WikiContent.versioned_table_name}.author_id, " +
71 71 "#{WikiContent.versioned_table_name}.id",
72 72 :joins => "LEFT JOIN #{WikiPage.table_name} ON #{WikiPage.table_name}.id = #{WikiContent.versioned_table_name}.page_id " +
73 73 "LEFT JOIN #{Wiki.table_name} ON #{Wiki.table_name}.id = #{WikiPage.table_name}.wiki_id " +
74 74 "LEFT JOIN #{Project.table_name} ON #{Project.table_name}.id = #{Wiki.table_name}.project_id"}
75 75
76 76 def text=(plain)
77 77 case Setting.wiki_compression
78 78 when 'gzip'
79 79 begin
80 80 self.data = Zlib::Deflate.deflate(plain, Zlib::BEST_COMPRESSION)
81 81 self.compression = 'gzip'
82 82 rescue
83 83 self.data = plain
84 84 self.compression = ''
85 85 end
86 86 else
87 87 self.data = plain
88 88 self.compression = ''
89 89 end
90 90 plain
91 91 end
92 92
93 93 def text
94 94 @text ||= case compression
95 95 when 'gzip'
96 96 str = Zlib::Inflate.inflate(data)
97 97 str.force_encoding("UTF-8") if str.respond_to?(:force_encoding)
98 98 str
99 99 else
100 100 # uncompressed data
101 101 data
102 102 end
103 103 end
104 104
105 105 def project
106 106 page.project
107 107 end
108 108
109 109 # Return true if the content is the current page content
110 110 def current_version?
111 111 page.content.version == self.version
112 112 end
113 113
114 114 # Returns the previous version or nil
115 115 def previous
116 116 @previous ||= WikiContent::Version.find(:first,
117 117 :order => 'version DESC',
118 118 :include => :author,
119 119 :conditions => ["wiki_content_id = ? AND version < ?", wiki_content_id, version])
120 120 end
121 121 end
122 122 end
General Comments 0
You need to be logged in to leave comments. Login now