Sha256: e5d753150b845e2d41f48bee2bf59f348725a7a86a52535d6c4132c1fa9a016b
Contents?: true
Size: 1.43 KB
Versions: 28
Compression:
Stored size: 1.43 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 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
28 entries across 28 versions & 1 rubygems