;;; forge-forgejo.el --- Forgejo support -*- lexical-binding:t -*- ;; Copyright (C) 2018-2026 Jonas Bernoulli ;; Author: Jonas Bernoulli ;; Maintainer: Jonas Bernoulli ;; 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 . ;;; Code: (require 'forge) ;;; Class (defclass forge-forgejo-repository (forge-unusedapi-repository) ((issues-url-format :initform "https://%h/%o/%n/issues") (issue-url-format :initform "https://%h/%o/%n/issues/%i") ;; The anchor for the issue itself is .../%i#issue-%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/branch/%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-forgejo) ;;; forge-forgejo.el ends here