aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cgitize
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-03-27 23:17:14 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-03-29 00:45:48 +0300
commit5a792fee1335ea60ca6930dddb6080bcf869213d (patch)
treefa084df3b07301fd72c8c210fbf9b23e90df0f53 /cgitize
parentrename the project to "cgitize" (diff)
downloadcgitize-5a792fee1335ea60ca6930dddb6080bcf869213d.tar.gz
cgitize-5a792fee1335ea60ca6930dddb6080bcf869213d.zip
further renaming work
Diffstat (limited to 'cgitize')
-rw-r--r--cgitize/cgit.py4
-rw-r--r--cgitize/main.py10
-rw-r--r--cgitize/repo.py4
-rw-r--r--cgitize/utils.py4
4 files changed, 11 insertions, 11 deletions
diff --git a/cgitize/cgit.py b/cgitize/cgit.py
index 778b1c9..6e287e9 100644
--- a/cgitize/cgit.py
+++ b/cgitize/cgit.py
@@ -1,6 +1,6 @@
# Copyright (c) 2018 Egor Tensin <Egor.Tensin@gmail.com>
-# This file is part of the "cgit repos" project.
-# For details, see https://github.com/egor-tensin/cgit-repos.
+# This file is part of the "cgitize" project.
+# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
from enum import Enum
diff --git a/cgitize/main.py b/cgitize/main.py
index 650c079..920b769 100644
--- a/cgitize/main.py
+++ b/cgitize/main.py
@@ -1,6 +1,6 @@
# Copyright (c) 2018 Egor Tensin <Egor.Tensin@gmail.com>
-# This file is part of the "cgit repos" project.
-# For details, see https://github.com/egor-tensin/cgit-repos.
+# This file is part of the "cgitize" project.
+# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
from argparse import ArgumentParser
@@ -16,9 +16,9 @@ from cgitize.repo import BitbucketRepo, GithubRepo, Repo
import cgitize.utils as utils
-DEFAULT_OUTPUT_DIR = '/var/tmp/cgit-repos/output'
-DEFAULT_CONFIG_PATH = '/etc/cgit-repos/cgit-repos.conf'
-DEFAULT_MY_REPOS_PATH = '/etc/cgit-repos/my_repos.py'
+DEFAULT_OUTPUT_DIR = '/var/tmp/cgitize/output'
+DEFAULT_CONFIG_PATH = '/etc/cgitize/cgitize.conf'
+DEFAULT_MY_REPOS_PATH = '/etc/cgitize/my_repos.py'
@contextmanager
diff --git a/cgitize/repo.py b/cgitize/repo.py
index 4b3072c..02e283b 100644
--- a/cgitize/repo.py
+++ b/cgitize/repo.py
@@ -1,6 +1,6 @@
# Copyright (c) 2018 Egor Tensin <Egor.Tensin@gmail.com>
-# This file is part of the "cgit repos" project.
-# For details, see https://github.com/egor-tensin/cgit-repos.
+# This file is part of the "cgitize" project.
+# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
import abc
diff --git a/cgitize/utils.py b/cgitize/utils.py
index 84337e8..5ff8475 100644
--- a/cgitize/utils.py
+++ b/cgitize/utils.py
@@ -1,6 +1,6 @@
# Copyright (c) 2018 Egor Tensin <Egor.Tensin@gmail.com>
-# This file is part of the "cgit repos" project.
-# For details, see https://github.com/egor-tensin/cgit-repos.
+# This file is part of the "cgitize" project.
+# For details, see https://github.com/egor-tensin/cgitize.
# Distributed under the MIT License.
import contextlib