From c0dd9c51af51bf6911c42deb7efe777269153b5e Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Wed, 15 Dec 2021 11:50:55 +0100 Subject: [PATCH] shuffle paths, libs, templates --- lumbung-calendar-prototype/.gitignore | 2 - lumbung-feed-aggregator/.gitignore | 2 - lumbung-feed-aggregator/feeds_list.txt | 11 - lumbung-hashtag-bot/.gitignore | 3 - lumbung-video-prototype/video-feed.html | 251 ------------------ .../event_feed.py => lumbunglib/calendar.py | 0 .../rss_aggregator.py => lumbunglib/feed.py | 0 .../hashtag.py | 0 .../templates/calendar.md | 0 .../templates/feed.md | 0 .../templates/hashtag.md | 0 .../templates/video.md | 0 .../video-feed.py => lumbunglib/video.py | 0 13 files changed, 269 deletions(-) delete mode 100644 lumbung-calendar-prototype/.gitignore delete mode 100644 lumbung-feed-aggregator/.gitignore delete mode 100644 lumbung-feed-aggregator/feeds_list.txt delete mode 100644 lumbung-hashtag-bot/.gitignore delete mode 100644 lumbung-video-prototype/video-feed.html rename lumbung-calendar-prototype/event_feed.py => lumbunglib/calendar.py (100%) rename lumbung-feed-aggregator/rss_aggregator.py => lumbunglib/feed.py (100%) rename lumbung-hashtag-bot/publish_hashtags.py => lumbunglib/hashtag.py (100%) rename lumbung-calendar-prototype/event_template.md => lumbunglib/templates/calendar.md (100%) rename lumbung-feed-aggregator/post_template.md => lumbunglib/templates/feed.md (100%) rename lumbung-hashtag-bot/post_template.md => lumbunglib/templates/hashtag.md (100%) rename lumbung-video-prototype/index_template.md => lumbunglib/templates/video.md (100%) rename lumbung-video-prototype/video-feed.py => lumbunglib/video.py (100%) diff --git a/lumbung-calendar-prototype/.gitignore b/lumbung-calendar-prototype/.gitignore deleted file mode 100644 index 54d69e5..0000000 --- a/lumbung-calendar-prototype/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -event_feed_config.py -__pycache__ diff --git a/lumbung-feed-aggregator/.gitignore b/lumbung-feed-aggregator/.gitignore deleted file mode 100644 index ecf1da3..0000000 --- a/lumbung-feed-aggregator/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -network/ -etags/ diff --git a/lumbung-feed-aggregator/feeds_list.txt b/lumbung-feed-aggregator/feeds_list.txt deleted file mode 100644 index 7334acb..0000000 --- a/lumbung-feed-aggregator/feeds_list.txt +++ /dev/null @@ -1,11 +0,0 @@ -https://www.masartemasaccion.org/feed/ -https://fafswag.wordpress.com/feed/ -https://wajukuuarts.wordpress.com/feed/ -https://inland.org/feed/ -https://jatiwangiartfactory.tumblr.com/rss/ -https://brittoartstrust.org/feed/ -https://artivismo.org/feed/ -http://www.festivalsegou.org/spip.php?page=backend&lang=fr -https://gudskul.art/feed/ -https://projectartworks.org/feed/ -https://ruangrupa.id/feed/ \ No newline at end of file diff --git a/lumbung-hashtag-bot/.gitignore b/lumbung-hashtag-bot/.gitignore deleted file mode 100644 index 8afa646..0000000 --- a/lumbung-hashtag-bot/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -config_hashtag_bot.py -*.secret -__pycache__/* diff --git a/lumbung-video-prototype/video-feed.html b/lumbung-video-prototype/video-feed.html deleted file mode 100644 index 5ce0551..0000000 --- a/lumbung-video-prototype/video-feed.html +++ /dev/null @@ -1,251 +0,0 @@ - - - - - - - lumbung.space video archive prototype - - - - - - - - - - - - - - - - - - - - - - - -
- {% for video in videos %} -
-
- - -
- {% if video.is_live %} - LIVE - {% else %} - {{ video.duration | duration }} - {% endif %} -
-
-
-
- -
- -
- {% endfor %} -
- - - - diff --git a/lumbung-calendar-prototype/event_feed.py b/lumbunglib/calendar.py similarity index 100% rename from lumbung-calendar-prototype/event_feed.py rename to lumbunglib/calendar.py diff --git a/lumbung-feed-aggregator/rss_aggregator.py b/lumbunglib/feed.py similarity index 100% rename from lumbung-feed-aggregator/rss_aggregator.py rename to lumbunglib/feed.py diff --git a/lumbung-hashtag-bot/publish_hashtags.py b/lumbunglib/hashtag.py similarity index 100% rename from lumbung-hashtag-bot/publish_hashtags.py rename to lumbunglib/hashtag.py diff --git a/lumbung-calendar-prototype/event_template.md b/lumbunglib/templates/calendar.md similarity index 100% rename from lumbung-calendar-prototype/event_template.md rename to lumbunglib/templates/calendar.md diff --git a/lumbung-feed-aggregator/post_template.md b/lumbunglib/templates/feed.md similarity index 100% rename from lumbung-feed-aggregator/post_template.md rename to lumbunglib/templates/feed.md diff --git a/lumbung-hashtag-bot/post_template.md b/lumbunglib/templates/hashtag.md similarity index 100% rename from lumbung-hashtag-bot/post_template.md rename to lumbunglib/templates/hashtag.md diff --git a/lumbung-video-prototype/index_template.md b/lumbunglib/templates/video.md similarity index 100% rename from lumbung-video-prototype/index_template.md rename to lumbunglib/templates/video.md diff --git a/lumbung-video-prototype/video-feed.py b/lumbunglib/video.py similarity index 100% rename from lumbung-video-prototype/video-feed.py rename to lumbunglib/video.py