50 lines
1.6 KiB
Ruby
50 lines
1.6 KiB
Ruby
# This file is part of the acts_as_journalized plugin for the redMine
|
|
# project management software
|
|
#
|
|
# Copyright (C) 2010 Finn GmbH, http://finn.de
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either journal 2
|
|
# of the License, or (at your option) any later journal.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
# This module holds the formatting methods that each journal has.
|
|
# It provides the hooks to apply different formatting to the details
|
|
# of a specific journal.
|
|
module JournalDeprecated
|
|
unloadable
|
|
# Old timestamps. created_at is what t.timestamps creates in recent Rails journals
|
|
def created_on
|
|
created_at
|
|
end
|
|
|
|
# Old naming
|
|
def journalized
|
|
journaled
|
|
end
|
|
|
|
# Old naming
|
|
def journalized= obj
|
|
journaled = obj
|
|
end
|
|
|
|
|
|
# Shortcut from more issue-specific journals
|
|
def attachments
|
|
journalized.respond_to?(:attachments) ? journalized.attachments : nil
|
|
end
|
|
|
|
# deprecate :created_on => "use #created_at"
|
|
# deprecate :journalized => "use journaled"
|
|
# deprecate :attachments => "implement it yourself"
|
|
end
|