Sha256: 3f9ca9fe40d5ddb013f76771f88af3da89f8e7e38a1c985f7eeaca40f5091a38
Contents?: true
Size: 1.52 KB
Versions: 21
Compression:
Stored size: 1.52 KB
Contents
# encoding: utf-8 #-- # Copyright (C) 2012 Gitorious AS # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero 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 Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. #++ module Dolt module View module Urls def submodule_url(repository, ref, object) SubmoduleUrl.for(object) end def tree_url(repository, ref, path = "") repo_url(repository, "/tree/#{ref}:#{path}") end def blob_url(repository, ref, path) repo_url(repository, "/blob/#{ref}:#{path}") end def blame_url(repository, ref, path) repo_url(repository, "/blame/#{ref}:#{path}") end def history_url(repository, ref, path) repo_url(repository, "/history/#{ref}:#{path}") end def raw_url(repository, ref, path) repo_url(repository, "/raw/#{ref}:#{path}") end def tree_history_url(repository, ref, path) repo_url(repository, "/tree_history/#{ref}:#{path}") end end end end
Version data entries
21 entries across 21 versions & 1 rubygems