commit 744a4137938f25f08798deb63d410d2f913a7658
parent db6e8955ddf3fa337c734422d0bbef3dafc5fb1d
Author: Yuval Langer <yuval.langer@gmail.com>
Date: Wed, 12 Jun 2019 16:55:18 +0300
Remove even more all traces of Pelican… ~_~;;.
Diffstat:
5 files changed, 0 insertions(+), 73 deletions(-)
diff --git a/pelican_base_configuration.py b/pelican_base_configuration.py
@@ -1,19 +0,0 @@
-TIMEZONE = "UTC"
-PATH = "content/"
-SITENAME = "Kaka Farm"
-#THEME = "simple"
-
-DISPLAY_PAGES_ON_MENU = True
-DISPLAY_CATEGORIES_ON_MENU = True
-
-TAG_FEED_ATOM = "feeds/tags/%s.atom.xml"
-TAG_FEED_RSS = "feeds/tags/%s.rss.xml"
-
-
-MARKDOWN = {
- "extension_configs": {
- "markdown_checklist.extension": {},
- "markdown.extensions.tables": {},
- },
- "output_format": "html5",
-}
diff --git a/pelican_development_configuration.py b/pelican_development_configuration.py
@@ -1,11 +0,0 @@
-import pathlib
-
-exec(
- open(
- "pelican_base_configuration.py",
- ).read(),
-)
-
-SITEURL = (pathlib.Path(".").absolute() / "output").as_uri()
-FEED_DOMAIN = SITEURL
-RELATIVE_URLS = True
diff --git a/pelican_development_server.py b/pelican_development_server.py
@@ -1,29 +0,0 @@
-#!/usr/bin/env python3
-
-
-from http.server import HTTPServer, SimpleHTTPRequestHandler
-from os import chdir
-from subprocess import PIPE, Popen
-
-
-def main():
- with Popen(
- [
- "pelican",
- "--delete-output-directory",
- "--autoreload",
- "--ignore-cache",
- "--verbose",
- "-s", "pelican_development_configuration.py",
- ],
- stdout=PIPE,
- ):
- chdir("output")
- server = HTTPServer(
- ("127.0.0.1", 8000),
- SimpleHTTPRequestHandler,
- )
- server.serve_forever()
-
-
-main()
diff --git a/pelican_gitlab_configuration.py b/pelican_gitlab_configuration.py
@@ -1,7 +0,0 @@
-exec(
- open(
- "pelican_base_configuration.py",
- ).read(),
-)
-
-SITEURL = "https://yuvallanger.gitlab.io/kaka.farm"
diff --git a/pelican_publication_configuration.py b/pelican_publication_configuration.py
@@ -1,7 +0,0 @@
-exec(
- open(
- "pelican_base_configuration.py",
- ).read(),
-)
-
-SITEURL = "https://kaka.farm/blog"