2011-10-29 16:19:11 +04:00
|
|
|
#-- encoding: UTF-8
|
2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2012-01-03 23:36:40 +04:00
|
|
|
# Copyright (C) 2010-2012 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# 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-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2012-02-24 13:18:06 +04:00
|
|
|
require_dependency 'redmine/scm/adapters/filesystem_adapter'
|
2008-06-08 19:40:24 +04:00
|
|
|
|
|
|
|
class Repository::Filesystem < Repository
|
|
|
|
attr_protected :root_url
|
|
|
|
validates_presence_of :url
|
|
|
|
|
2011-03-01 08:14:03 +03:00
|
|
|
ATTRIBUTE_KEY_NAMES = {
|
|
|
|
"url" => "Root directory",
|
|
|
|
}
|
|
|
|
def self.human_attribute_name(attribute_key_name)
|
|
|
|
ATTRIBUTE_KEY_NAMES[attribute_key_name] || super
|
|
|
|
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 entries(path=nil, identifier=nil)
|
|
|
|
scm.entries(path, identifier)
|
|
|
|
end
|
|
|
|
|
|
|
|
def fetch_changesets
|
|
|
|
nil
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-06-08 19:40:24 +04:00
|
|
|
end
|