Skip to content

Commit

Permalink
default to s3 to make deployment possibly break less
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmuhl committed Oct 2, 2008
1 parent 79465a8 commit 0b75d6f
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions app/models/page_attachment.rb
@@ -1,27 +1,27 @@
class PageAttachment < ActiveRecord::Base
acts_as_list :scope => :page_id
has_attachment :storage => :file_system,
:thumbnails => defined?(PAGE_ATTACHMENT_SIZES) && PAGE_ATTACHMENT_SIZES || {:icon => '50x50>'},
:max_size => 10.megabytes
validates_as_attachment

belongs_to :created_by, :class_name => 'User',
:foreign_key => 'created_by'
belongs_to :updated_by, :class_name => 'User',
:foreign_key => 'updated_by'

belongs_to :page

def short_filename(wanted_length = 15, suffix = ' ...')
(self.filename.length > wanted_length) ? (self.filename[0,(wanted_length - suffix.length)] + suffix) : self.filename
end

def short_title(wanted_length = 15, suffix = ' ...')
(self.title.length > wanted_length) ? (self.title[0,(wanted_length - suffix.length)] + suffix) : self.title
end

def short_description(wanted_length = 15, suffix = ' ...')
(self.description.length > wanted_length) ? (self.description[0,(wanted_length - suffix.length)] + suffix) : self.description
end

end
class PageAttachment < ActiveRecord::Base
acts_as_list :scope => :page_id
has_attachment :storage => :s3,
:thumbnails => defined?(PAGE_ATTACHMENT_SIZES) && PAGE_ATTACHMENT_SIZES || {:icon => '72x72>'},
:max_size => 10.megabytes
validates_as_attachment

belongs_to :created_by, :class_name => 'User',
:foreign_key => 'created_by'
belongs_to :updated_by, :class_name => 'User',
:foreign_key => 'updated_by'

belongs_to :page

def short_filename(wanted_length = 15, suffix = ' ...')
(self.filename.length > wanted_length) ? (self.filename[0,(wanted_length - suffix.length)] + suffix) : self.filename
end

def short_title(wanted_length = 15, suffix = ' ...')
(self.title.length > wanted_length) ? (self.title[0,(wanted_length - suffix.length)] + suffix) : self.title
end

def short_description(wanted_length = 15, suffix = ' ...')
(self.description.length > wanted_length) ? (self.description[0,(wanted_length - suffix.length)] + suffix) : self.description
end

end

0 comments on commit 0b75d6f

Please sign in to comment.