-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new 'MultilevelSingSquashfsDataProvider'.
Same as SingSquashfsDataProvider but with browse_path support.
- Loading branch information
Showing
2 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
BrainPortal/app/models/multilevel_sing_squashfs_data_provider.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
|
||
# | ||
# CBRAIN Project | ||
# | ||
# Copyright (C) 2008-2025 | ||
# The Royal Institution for the Advancement of Learning | ||
# McGill University | ||
# | ||
# 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 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# 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, see <http://www.gnu.org/licenses/>. | ||
# | ||
|
||
# This class implements the same kind of provider | ||
# as SingSquashfsDataProvider, but with browse_path support. | ||
class MultilevelSingSquashfsDataProvider < SingSquashfsDataProvider | ||
|
||
Revision_info=CbrainFileRevision[__FILE__] #:nodoc: | ||
|
||
def has_browse_path_capabilities? | ||
true | ||
end | ||
|
||
# This returns the category of the data provider | ||
def self.pretty_category_name #:nodoc: | ||
"Multi Level" | ||
end | ||
|
||
def provider_full_path(userfile) | ||
# It's amazing what object-oriented programming can do sometimes. | ||
#Pathname.new(self.containerized_path) + userfile.name # old code in parent class | ||
Pathname.new(self.containerized_path) + userfile.browse_name # just add the intermediate folders | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters