2011-10-29 14:19:11 +02:00
|
|
|
#-- encoding: UTF-8
|
2011-05-29 13:11:52 -07:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07:00
|
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07: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 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2008-06-08 15:40:24 +00:00
|
|
|
require 'redmine/scm/adapters/filesystem_adapter'
|
|
|
|
|
|
|
|
class Repository::Filesystem < Repository
|
|
|
|
attr_protected :root_url
|
|
|
|
validates_presence_of :url
|
|
|
|
|
2011-03-01 05:14:03 +00: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 08:45:34 +00:00
|
|
|
def self.scm_adapter_class
|
2008-06-08 15:40:24 +00:00
|
|
|
Redmine::Scm::Adapters::FilesystemAdapter
|
|
|
|
end
|
2011-02-14 08:45:34 +00:00
|
|
|
|
2008-06-08 15:40:24 +00:00
|
|
|
def self.scm_name
|
|
|
|
'Filesystem'
|
|
|
|
end
|
2011-02-14 08:45:34 +00:00
|
|
|
|
2011-03-16 00:49:50 +00:00
|
|
|
def supports_all_revisions?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2008-06-08 15:40:24 +00:00
|
|
|
def entries(path=nil, identifier=nil)
|
|
|
|
scm.entries(path, identifier)
|
|
|
|
end
|
|
|
|
|
|
|
|
def fetch_changesets
|
|
|
|
nil
|
|
|
|
end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2008-06-08 15:40:24 +00:00
|
|
|
end
|