46 lines
2 KiB
EmacsLisp
46 lines
2 KiB
EmacsLisp
;;; forge-gogs.el --- Gogs support -*- lexical-binding:t -*-
|
|
|
|
;; Copyright (C) 2018-2026 Jonas Bernoulli
|
|
|
|
;; Author: Jonas Bernoulli <emacs.forge@jonas.bernoulli.dev>
|
|
;; Maintainer: Jonas Bernoulli <emacs.forge@jonas.bernoulli.dev>
|
|
|
|
;; SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
;; This file 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 file 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 file. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
;;; Code:
|
|
|
|
(require 'forge)
|
|
|
|
;;; Class
|
|
|
|
(defclass forge-gogs-repository (forge-unusedapi-repository)
|
|
((issues-url-format :initform "https://%h/%o/%n/issues")
|
|
(issue-url-format :initform "https://%h/%o/%n/issues/%i")
|
|
(issue-post-url-format :initform "https://%h/%o/%n/issues/%i#issuecomment-%I")
|
|
(pullreqs-url-format :initform "https://%h/%o/%n/pulls")
|
|
(pullreq-url-format :initform "https://%h/%o/%n/pulls/%i")
|
|
(pullreq-post-url-format :initform "https://%h/%o/%n/pulls/%i#issuecomment-%I")
|
|
(commit-url-format :initform "https://%h/%o/%n/commit/%r")
|
|
(branch-url-format :initform "https://%h/%o/%n/commits/%r")
|
|
(remote-url-format :initform "https://%h/%o/%n")
|
|
(blob-url-format :initform "https://%h/%o/%n/src/%r/%f")
|
|
(create-issue-url-format :initform "https://%h/%o/%n/issues/new")
|
|
(create-pullreq-url-format :initform "https://%h/%o/%n/pulls") ; sic
|
|
(pullreq-refspec :initform "+refs/pull/*/head:refs/pullreqs/*")))
|
|
|
|
;;; _
|
|
(provide 'forge-gogs)
|
|
;;; forge-gogs.el ends here
|