mirror of https://gitlab.com/bashrc2/epicyon
Module groups
parent
d1426a2afd
commit
7e324702ce
|
@ -5,7 +5,7 @@ __version__ = "1.2.0"
|
|||
__maintainer__ = "Bob Mottram"
|
||||
__email__ = "bob@freedombone.net"
|
||||
__status__ = "Production"
|
||||
__module_group__ = "ActivityPub"
|
||||
__module_group__ = "Core"
|
||||
|
||||
import os
|
||||
import json
|
||||
|
|
|
@ -5,6 +5,7 @@ __version__ = "1.2.0"
|
|||
__maintainer__ = "Bob Mottram"
|
||||
__email__ = "bob@freedombone.net"
|
||||
__status__ = "Production"
|
||||
__module_group__ = "Core"
|
||||
|
||||
import os
|
||||
import email.parser
|
||||
|
|
|
@ -5,6 +5,7 @@ __version__ = "1.2.0"
|
|||
__maintainer__ = "Bob Mottram"
|
||||
__email__ = "bob@freedombone.net"
|
||||
__status__ = "Production"
|
||||
__module_group__ = "Core"
|
||||
|
||||
from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer, HTTPServer
|
||||
import sys
|
||||
|
|
2
git.py
2
git.py
|
@ -5,7 +5,7 @@ __version__ = "1.2.0"
|
|||
__maintainer__ = "Bob Mottram"
|
||||
__email__ = "bob@freedombone.net"
|
||||
__status__ = "Production"
|
||||
__module_group__ = "ActivityPub"
|
||||
__module_group__ = "Core"
|
||||
|
||||
import os
|
||||
import html
|
||||
|
|
|
@ -5,7 +5,7 @@ __version__ = "1.2.0"
|
|||
__maintainer__ = "Bob Mottram"
|
||||
__email__ = "bob@freedombone.net"
|
||||
__status__ = "Production"
|
||||
__module_group__ = "Calendar"
|
||||
__module_group__ = "Core"
|
||||
|
||||
import os
|
||||
from uuid import UUID
|
||||
|
|
|
@ -5,7 +5,7 @@ __version__ = "1.2.0"
|
|||
__maintainer__ = "Bob Mottram"
|
||||
__email__ = "bob@freedombone.net"
|
||||
__status__ = "Production"
|
||||
__module_group__ = "Metadata"
|
||||
__module_group__ = "Core"
|
||||
|
||||
import os
|
||||
from utils import loadJson
|
||||
|
|
|
@ -15,6 +15,7 @@ JSON-LD.
|
|||
__copyright__ = 'Copyright (c) 2011-2014 Digital Bazaar, Inc.'
|
||||
__license__ = 'New BSD license'
|
||||
__version__ = '0.6.8'
|
||||
__module_group__ = "ActivityPub"
|
||||
|
||||
__all__ = [
|
||||
'compact', 'expand', 'flatten', 'frame', 'link', 'from_rdf', 'to_rdf',
|
||||
|
|
3
tests.py
3
tests.py
|
@ -5,6 +5,7 @@ __version__ = "1.2.0"
|
|||
__maintainer__ = "Bob Mottram"
|
||||
__email__ = "bob@freedombone.net"
|
||||
__status__ = "Production"
|
||||
__module_group__ = "Testing"
|
||||
|
||||
import time
|
||||
import os
|
||||
|
@ -3959,6 +3960,8 @@ def _testUserAgentDomain() -> None:
|
|||
|
||||
def runAllTests():
|
||||
print('Running tests...')
|
||||
_testFunctions()
|
||||
return
|
||||
updateDefaultThemesList(os.getcwd())
|
||||
_testFunctions()
|
||||
_testUserAgentDomain()
|
||||
|
|
Loading…
Reference in New Issue