2011-05-12 11:41:08 +04:00
|
|
|
# Redmine - project management software
|
2013-01-12 13:29:31 +04:00
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
2008-06-08 19:40:24 +04:00
|
|
|
#
|
|
|
|
# FileSystem adapter
|
|
|
|
# File written by Paul Rivier, at Demotera.
|
|
|
|
#
|
|
|
|
# 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 version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-05-12 11:41:08 +04:00
|
|
|
#
|
2008-06-08 19:40:24 +04:00
|
|
|
# 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.
|
2011-05-12 11:41:08 +04:00
|
|
|
#
|
2008-06-08 19:40:24 +04:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
require 'redmine/scm/adapters/filesystem_adapter'
|
|
|
|
|
|
|
|
class Repository::Filesystem < Repository
|
|
|
|
attr_protected :root_url
|
|
|
|
validates_presence_of :url
|
|
|
|
|
2011-12-18 17:20:19 +04:00
|
|
|
def self.human_attribute_name(attribute_key_name, *args)
|
2012-02-24 18:59:06 +04:00
|
|
|
attr_name = attribute_key_name.to_s
|
2011-04-23 11:38:32 +04:00
|
|
|
if attr_name == "url"
|
|
|
|
attr_name = "root_directory"
|
|
|
|
end
|
2011-12-18 17:20:19 +04:00
|
|
|
super(attr_name, *args)
|
2011-03-01 08:14:03 +03:00
|
|
|
end
|
|
|
|
|
2011-02-14 11:45:34 +03:00
|
|
|
def self.scm_adapter_class
|
2008-06-08 19:40:24 +04:00
|
|
|
Redmine::Scm::Adapters::FilesystemAdapter
|
|
|
|
end
|
2011-02-14 11:45:34 +03:00
|
|
|
|
2008-06-08 19:40:24 +04:00
|
|
|
def self.scm_name
|
|
|
|
'Filesystem'
|
|
|
|
end
|
2011-02-14 11:45:34 +03:00
|
|
|
|
2011-03-16 03:49:50 +03:00
|
|
|
def supports_all_revisions?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2008-06-08 19:40:24 +04:00
|
|
|
def fetch_changesets
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|