From ab7c2a9a660ec902b244ed63f4fd5ef5fa7a5072 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 15 Jun 2021 16:08:12 +0100 Subject: [PATCH] Module groups --- acceptreject.py | 1 + announce.py | 1 + auth.py | 1 + availability.py | 1 + blocking.py | 1 + blog.py | 1 + bookmarks.py | 1 + briar.py | 1 + cache.py | 1 + categories.py | 1 + city.py | 1 + context.py | 1 + delete.py | 1 + desktop_client.py | 1 + donate.py | 1 + epicyon.py | 1 + feeds.py | 1 + follow.py | 1 + followingCalendar.py | 1 + git.py | 1 + happening.py | 1 + httpsig.py | 1 + inbox.py | 1 + jami.py | 1 + like.py | 1 + linked_data_sig.py | 1 + manualapprove.py | 1 + mastoapiv1.py | 1 + matrix.py | 1 + media.py | 1 + metadata.py | 1 + migrate.py | 1 + newsdaemon.py | 1 + newswire.py | 1 + outbox.py | 1 + person.py | 1 + pgp.py | 1 + posts.py | 1 + question.py | 1 + schedule.py | 1 + session.py | 1 + shares.py | 1 + ssb.py | 1 + tests.py | 25 +++++++++++++++++++++++++ tox.py | 1 + webapp_about.py | 1 + webapp_accesskeys.py | 1 + webapp_calendar.py | 1 + webapp_column_left.py | 1 + webapp_column_right.py | 1 + webapp_confirm.py | 1 + webapp_create_post.py | 1 + webapp_frontscreen.py | 1 + webapp_hashtagswarm.py | 1 + webapp_headerbuttons.py | 1 + webapp_login.py | 1 + webapp_media.py | 1 + webapp_moderation.py | 1 + webapp_person_options.py | 1 + webapp_post.py | 1 + webapp_profile.py | 1 + webapp_question.py | 1 + webapp_search.py | 1 + webapp_suspended.py | 1 + webapp_timeline.py | 1 + webapp_tos.py | 1 + webapp_utils.py | 1 + webapp_welcome.py | 1 + webapp_welcome_final.py | 1 + webapp_welcome_profile.py | 1 + webfinger.py | 1 + xmpp.py | 1 + 72 files changed, 96 insertions(+) diff --git a/acceptreject.py b/acceptreject.py index d3f4c50cd..9ce38ca9f 100644 --- a/acceptreject.py +++ b/acceptreject.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" import os from utils import hasUsersPath diff --git a/announce.py b/announce.py index dccfb20ea..098cb8820 100644 --- a/announce.py +++ b/announce.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" from utils import removeIdEnding from utils import hasUsersPath diff --git a/auth.py b/auth.py index c6828ccc1..87b94e5e2 100644 --- a/auth.py +++ b/auth.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Security" import base64 import hashlib diff --git a/availability.py b/availability.py index 7b8196448..441b01264 100644 --- a/availability.py +++ b/availability.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Core" import os from webfinger import webfingerHandle diff --git a/blocking.py b/blocking.py index d2361a584..206682efc 100644 --- a/blocking.py +++ b/blocking.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" import os import json diff --git a/blog.py b/blog.py index d331bca15..0822aa64a 100644 --- a/blog.py +++ b/blog.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" import os from datetime import datetime diff --git a/bookmarks.py b/bookmarks.py index f4e292c3a..04a68052b 100644 --- a/bookmarks.py +++ b/bookmarks.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Timeline" import os from pprint import pprint diff --git a/briar.py b/briar.py index 63a3123b1..6e3f1e1d0 100644 --- a/briar.py +++ b/briar.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Profile Metadata" def getBriarAddress(actorJson: {}) -> str: diff --git a/cache.py b/cache.py index 19cda4084..e00156703 100644 --- a/cache.py +++ b/cache.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" import os import datetime diff --git a/categories.py b/categories.py index a99241b73..40a31c51f 100644 --- a/categories.py +++ b/categories.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "RSS Feeds" import os import datetime diff --git a/city.py b/city.py index 6e228ec47..8edf14e1b 100644 --- a/city.py +++ b/city.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Spoofing" import os import datetime diff --git a/context.py b/context.py index 11d9b727d..9afa78d79 100644 --- a/context.py +++ b/context.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Security" validContexts = ( diff --git a/delete.py b/delete.py index 7f9380a4d..0566015d6 100644 --- a/delete.py +++ b/delete.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" import os from datetime import datetime diff --git a/desktop_client.py b/desktop_client.py index caa39516d..05fcf9229 100644 --- a/desktop_client.py +++ b/desktop_client.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Client" import os import html diff --git a/donate.py b/donate.py index 0ccdebf99..f0942e502 100644 --- a/donate.py +++ b/donate.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Profile Metadata" def _getDonationTypes() -> str: diff --git a/epicyon.py b/epicyon.py index f69eb9360..df6814341 100644 --- a/epicyon.py +++ b/epicyon.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Commandline Interface" import os import shutil diff --git a/feeds.py b/feeds.py index a1671d5cd..5a5eba61a 100644 --- a/feeds.py +++ b/feeds.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "RSS Feeds" def rss2TagHeader(hashtag: str, httpPrefix: str, domainFull: str) -> str: diff --git a/follow.py b/follow.py index 9cc72617c..acabd00fc 100644 --- a/follow.py +++ b/follow.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" from pprint import pprint import os diff --git a/followingCalendar.py b/followingCalendar.py index 64e795090..650687e14 100644 --- a/followingCalendar.py +++ b/followingCalendar.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Calendar" import os diff --git a/git.py b/git.py index c7dee20df..86da50508 100644 --- a/git.py +++ b/git.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" import os import html diff --git a/happening.py b/happening.py index 225495e98..1a94873fb 100644 --- a/happening.py +++ b/happening.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Calendar" import os from uuid import UUID diff --git a/httpsig.py b/httpsig.py index f11e07203..03cdc93fd 100644 --- a/httpsig.py +++ b/httpsig.py @@ -6,6 +6,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Security" # see https://tools.ietf.org/html/draft-cavage-http-signatures-06 # diff --git a/inbox.py b/inbox.py index 82061bc45..f73a9eae1 100644 --- a/inbox.py +++ b/inbox.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Timeline" import json import os diff --git a/jami.py b/jami.py index ee89d68c2..d0a20008b 100644 --- a/jami.py +++ b/jami.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Profile Metadata" def getJamiAddress(actorJson: {}) -> str: diff --git a/like.py b/like.py index 5c7f3d9df..646913043 100644 --- a/like.py +++ b/like.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" from utils import hasUsersPath from utils import getFullDomain diff --git a/linked_data_sig.py b/linked_data_sig.py index 5a1c5dbdd..b1acbc7da 100644 --- a/linked_data_sig.py +++ b/linked_data_sig.py @@ -7,6 +7,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Security" import base64 import hashlib diff --git a/manualapprove.py b/manualapprove.py index 9d2944d8d..d89f23a79 100644 --- a/manualapprove.py +++ b/manualapprove.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" import os from follow import followedAccountAccepts diff --git a/mastoapiv1.py b/mastoapiv1.py index 8a1b03a8b..0a0e48ac0 100644 --- a/mastoapiv1.py +++ b/mastoapiv1.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Metadata" import os from utils import loadJson diff --git a/matrix.py b/matrix.py index 958b36618..0d493b0dc 100644 --- a/matrix.py +++ b/matrix.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Profile Metadata" def getMatrixAddress(actorJson: {}) -> str: diff --git a/media.py b/media.py index 14dd997d3..8b83d4f0d 100644 --- a/media.py +++ b/media.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Timeline" import os import datetime diff --git a/metadata.py b/metadata.py index 7add87590..4f55f1cc7 100644 --- a/metadata.py +++ b/metadata.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Metadata" import os from utils import isAccountDir diff --git a/migrate.py b/migrate.py index 73d7f07a8..4cca4b0e8 100644 --- a/migrate.py +++ b/migrate.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Core" import os from utils import getNicknameFromActor diff --git a/newsdaemon.py b/newsdaemon.py index 93afeca3f..bc8e4f5f0 100644 --- a/newsdaemon.py +++ b/newsdaemon.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "RSS Feeds" # Example hashtag logic: # diff --git a/newswire.py b/newswire.py index fdbc075f8..24297bc05 100644 --- a/newswire.py +++ b/newswire.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "RSS Feeds" import os import json diff --git a/outbox.py b/outbox.py index 8f5562d62..84d3a873c 100644 --- a/outbox.py +++ b/outbox.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Timeline" import os from shutil import copyfile diff --git a/person.py b/person.py index 69f639d70..ce842e500 100644 --- a/person.py +++ b/person.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" import time import os diff --git a/pgp.py b/pgp.py index 722adb707..d7fac2a2b 100644 --- a/pgp.py +++ b/pgp.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Profile Metadata" import os import subprocess diff --git a/posts.py b/posts.py index 726357b59..6c26b3d04 100644 --- a/posts.py +++ b/posts.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" import json import html diff --git a/question.py b/question.py index 4655e9bc8..7b7328f44 100644 --- a/question.py +++ b/question.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" import os from utils import locatePost diff --git a/schedule.py b/schedule.py index 25cdc2868..de9a0b244 100644 --- a/schedule.py +++ b/schedule.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Calendar" import os import time diff --git a/session.py b/session.py index c2c02a128..9844dc066 100644 --- a/session.py +++ b/session.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Core" import os import requests diff --git a/shares.py b/shares.py index 7e21ae8d8..467209750 100644 --- a/shares.py +++ b/shares.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Timeline" import os import time diff --git a/ssb.py b/ssb.py index 0996a1438..2c2a3af7a 100644 --- a/ssb.py +++ b/ssb.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Profile Metadata" def getSSBAddress(actorJson: {}) -> str: diff --git a/tests.py b/tests.py index 91043e0af..02793351c 100644 --- a/tests.py +++ b/tests.py @@ -2877,6 +2877,7 @@ def testFunctions(): function = {} functionProperties = {} modules = {} + modGroups = {} for subdir, dirs, files in os.walk('.'): for sourceFile in files: @@ -2894,6 +2895,17 @@ def testFunctions(): lines = f.readlines() modules[modName]['lines'] = lines for line in lines: + if '__module_group__' in line: + if '=' in line: + groupName = line.split('=')[1].strip() + groupName = groupName.replace('"', '') + groupName = groupName.replace("'", '') + modules[modName]['group'] = groupName + if not modGroups.get(groupName): + modGroups[groupName] = [modName] + else: + if modName not in modGroups[groupName]: + modGroups[groupName].append(modName) if not line.strip().startswith('def '): continue methodName = line.split('def ', 1)[1].split('(')[0] @@ -3134,6 +3146,19 @@ def testFunctions(): continue for modCall in modProperties['calls']: callGraphStr += ' "' + modName + '" -> "' + modCall + '";\n' + # module groups/clusters + clusterCtr = 1 + for groupName, groupModules in modGroups.items(): + callGraphStr += '\n' + callGraphStr += \ + ' subgraph cluster_' + str(clusterCtr) + ' {\n' + callGraphStr += ' node [style=filled];\n' + for modName in groupModules: + callGraphStr += ' ' + modName + ';\n' + callGraphStr += ' label = "' + groupName + '";\n' + callGraphStr += ' color = blue;\n' + callGraphStr += ' }\n' + clusterCtr += 1 callGraphStr += '\n}\n' with open('epicyon_modules.dot', 'w+') as fp: fp.write(callGraphStr) diff --git a/tox.py b/tox.py index 502e64ec2..ecb058673 100644 --- a/tox.py +++ b/tox.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Profile Metadata" def getToxAddress(actorJson: {}) -> str: diff --git a/webapp_about.py b/webapp_about.py index 3a617232a..233d052f7 100644 --- a/webapp_about.py +++ b/webapp_about.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from shutil import copyfile diff --git a/webapp_accesskeys.py b/webapp_accesskeys.py index 7a88b4e60..9813a5d46 100644 --- a/webapp_accesskeys.py +++ b/webapp_accesskeys.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from utils import isAccountDir diff --git a/webapp_calendar.py b/webapp_calendar.py index 09a9c3ad6..486f8c061 100644 --- a/webapp_calendar.py +++ b/webapp_calendar.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Calendar" import os from datetime import datetime diff --git a/webapp_column_left.py b/webapp_column_left.py index 298fb87e7..5428650f0 100644 --- a/webapp_column_left.py +++ b/webapp_column_left.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from utils import getConfigParam diff --git a/webapp_column_right.py b/webapp_column_right.py index a430fece8..0d194c1b0 100644 --- a/webapp_column_right.py +++ b/webapp_column_right.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from datetime import datetime diff --git a/webapp_confirm.py b/webapp_confirm.py index 346d94893..9d9847dfb 100644 --- a/webapp_confirm.py +++ b/webapp_confirm.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from shutil import copyfile diff --git a/webapp_create_post.py b/webapp_create_post.py index 19f2e0e05..39dcd2da6 100644 --- a/webapp_create_post.py +++ b/webapp_create_post.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from utils import isPublicPostFromUrl diff --git a/webapp_frontscreen.py b/webapp_frontscreen.py index 01ab2b3bd..e8dd68233 100644 --- a/webapp_frontscreen.py +++ b/webapp_frontscreen.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from utils import isSystemAccount diff --git a/webapp_hashtagswarm.py b/webapp_hashtagswarm.py index d26374eb5..1fbe2713e 100644 --- a/webapp_hashtagswarm.py +++ b/webapp_hashtagswarm.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from shutil import copyfile diff --git a/webapp_headerbuttons.py b/webapp_headerbuttons.py index 139691607..61c239c1c 100644 --- a/webapp_headerbuttons.py +++ b/webapp_headerbuttons.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os diff --git a/webapp_login.py b/webapp_login.py index c549d75f4..c339c4ebf 100644 --- a/webapp_login.py +++ b/webapp_login.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os import time diff --git a/webapp_media.py b/webapp_media.py index 576c3c9fd..fe6217041 100644 --- a/webapp_media.py +++ b/webapp_media.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os diff --git a/webapp_moderation.py b/webapp_moderation.py index 07d64bbdd..4e79f9f4d 100644 --- a/webapp_moderation.py +++ b/webapp_moderation.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from utils import getFullDomain diff --git a/webapp_person_options.py b/webapp_person_options.py index 5bd87de76..026182d8f 100644 --- a/webapp_person_options.py +++ b/webapp_person_options.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from shutil import copyfile diff --git a/webapp_post.py b/webapp_post.py index 67670826e..61139fb8c 100644 --- a/webapp_post.py +++ b/webapp_post.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os import time diff --git a/webapp_profile.py b/webapp_profile.py index 17dd6930e..550bb753a 100644 --- a/webapp_profile.py +++ b/webapp_profile.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from pprint import pprint diff --git a/webapp_question.py b/webapp_question.py index bf09c69e5..ba04dae62 100644 --- a/webapp_question.py +++ b/webapp_question.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from question import isQuestion diff --git a/webapp_search.py b/webapp_search.py index 33e9b6de5..e6beb6c18 100644 --- a/webapp_search.py +++ b/webapp_search.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from shutil import copyfile diff --git a/webapp_suspended.py b/webapp_suspended.py index 074cff7ca..4f9d60953 100644 --- a/webapp_suspended.py +++ b/webapp_suspended.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from utils import getConfigParam diff --git a/webapp_timeline.py b/webapp_timeline.py index 50ec00fbc..8f4cb9d8e 100644 --- a/webapp_timeline.py +++ b/webapp_timeline.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Timeline" import os import time diff --git a/webapp_tos.py b/webapp_tos.py index 24d8badb0..3fe7c7f3d 100644 --- a/webapp_tos.py +++ b/webapp_tos.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from shutil import copyfile diff --git a/webapp_utils.py b/webapp_utils.py index 10c006106..4f077bd90 100644 --- a/webapp_utils.py +++ b/webapp_utils.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from collections import OrderedDict diff --git a/webapp_welcome.py b/webapp_welcome.py index 60d69612b..78e1cf441 100644 --- a/webapp_welcome.py +++ b/webapp_welcome.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from shutil import copyfile diff --git a/webapp_welcome_final.py b/webapp_welcome_final.py index b1635cd29..e3586aa72 100644 --- a/webapp_welcome_final.py +++ b/webapp_welcome_final.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from shutil import copyfile diff --git a/webapp_welcome_profile.py b/webapp_welcome_profile.py index e3d164d9f..d734587c8 100644 --- a/webapp_welcome_profile.py +++ b/webapp_welcome_profile.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Web Interface" import os from shutil import copyfile diff --git a/webfinger.py b/webfinger.py index 1f4bacdf2..6235eb429 100644 --- a/webfinger.py +++ b/webfinger.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "ActivityPub" import os import urllib.parse diff --git a/xmpp.py b/xmpp.py index 1fd0a6b22..707767a79 100644 --- a/xmpp.py +++ b/xmpp.py @@ -5,6 +5,7 @@ __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" +__module_group__ = "Profile Metadata" def getXmppAddress(actorJson: {}) -> str: