├── .coveragerc ├── .dockerignore ├── .github └── workflows │ └── main.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── doformat.sh ├── fedora-messaging.toml ├── mote ├── __init__.py ├── config.py ├── consume.py ├── main.py ├── modules │ ├── __init__.py │ ├── call.py │ ├── converters.py │ ├── find.py │ ├── late.py │ └── redis.py ├── static │ ├── css3 │ │ ├── bootstrap-blackbox.min.css │ │ ├── bootstrap.min.css │ │ ├── custom_fonts.css │ │ ├── fontawesome-all.min.css │ │ ├── fragment.css │ │ └── fullcalendar.css │ ├── font │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-Medium.otf │ │ ├── Montserrat-Regular.ttf │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── imgs │ │ ├── 404_not_found.svg │ │ ├── Fedora_logo.png │ │ ├── Fedora_logo_dark.png │ │ ├── favi.png │ │ ├── logo.svg │ │ └── logoteal.png │ └── jscn │ │ ├── bootstrap.bundle.min.js │ │ ├── calview.js │ │ ├── darkmode.min.js │ │ ├── easy.qrcode.min.js │ │ ├── fragment.js │ │ ├── fullcalendar.js │ │ ├── jquery.min.js │ │ └── socket.io.js ├── tasks.py ├── templates │ ├── aboutpage.html.j2 │ ├── base.html.j2 │ ├── e404page.html.j2 │ ├── event_summary.html.j2 │ ├── mainpage.html.j2 │ └── statfile.html.j2 └── worker.py ├── poetry.lock ├── pyproject.toml ├── renovate.json ├── tests ├── conftest.py ├── datagrepper_sample.json ├── meetbot │ ├── fedora-meeting │ │ └── 2020-06-10 │ │ │ ├── fedora_iot_working_group_meeting.2020-06-10-14.10.html │ │ │ ├── fedora_iot_working_group_meeting.2020-06-10-14.10.log.html │ │ │ ├── fedora_iot_working_group_meeting.2020-06-10-14.10.log.txt │ │ │ ├── fedora_iot_working_group_meeting.2020-06-10-14.10.txt │ │ │ ├── magazine.2020-06-10-12.02.html │ │ │ ├── magazine.2020-06-10-12.02.log.html │ │ │ ├── magazine.2020-06-10-12.02.log.txt │ │ │ ├── magazine.2020-06-10-12.02.txt │ │ │ └── magazine_editorial_board.2020-06-10-12.02.log.txt │ └── teams │ │ ├── test.tgz │ │ └── zotbot_test │ │ └── zodbot_test.2016-01-28-23.15.html ├── test_find.py ├── test_fragedpt.py ├── test_late.py ├── test_main.py ├── test_meeting_logs.py └── utility.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/README.md -------------------------------------------------------------------------------- /doformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/doformat.sh -------------------------------------------------------------------------------- /fedora-messaging.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/fedora-messaging.toml -------------------------------------------------------------------------------- /mote/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/__init__.py -------------------------------------------------------------------------------- /mote/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/config.py -------------------------------------------------------------------------------- /mote/consume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/consume.py -------------------------------------------------------------------------------- /mote/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/main.py -------------------------------------------------------------------------------- /mote/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/modules/__init__.py -------------------------------------------------------------------------------- /mote/modules/call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/modules/call.py -------------------------------------------------------------------------------- /mote/modules/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/modules/converters.py -------------------------------------------------------------------------------- /mote/modules/find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/modules/find.py -------------------------------------------------------------------------------- /mote/modules/late.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/modules/late.py -------------------------------------------------------------------------------- /mote/modules/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/modules/redis.py -------------------------------------------------------------------------------- /mote/static/css3/bootstrap-blackbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/css3/bootstrap-blackbox.min.css -------------------------------------------------------------------------------- /mote/static/css3/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/css3/bootstrap.min.css -------------------------------------------------------------------------------- /mote/static/css3/custom_fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/css3/custom_fonts.css -------------------------------------------------------------------------------- /mote/static/css3/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/css3/fontawesome-all.min.css -------------------------------------------------------------------------------- /mote/static/css3/fragment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/css3/fragment.css -------------------------------------------------------------------------------- /mote/static/css3/fullcalendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/css3/fullcalendar.css -------------------------------------------------------------------------------- /mote/static/font/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /mote/static/font/Montserrat-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/Montserrat-Medium.otf -------------------------------------------------------------------------------- /mote/static/font/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /mote/static/font/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /mote/static/font/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /mote/static/font/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /mote/static/font/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /mote/static/font/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/fa-regular-400.ttf -------------------------------------------------------------------------------- /mote/static/font/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/fa-regular-400.woff -------------------------------------------------------------------------------- /mote/static/font/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/fa-regular-400.woff2 -------------------------------------------------------------------------------- /mote/static/font/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/fa-solid-900.ttf -------------------------------------------------------------------------------- /mote/static/font/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/fa-solid-900.woff -------------------------------------------------------------------------------- /mote/static/font/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/font/fa-solid-900.woff2 -------------------------------------------------------------------------------- /mote/static/imgs/404_not_found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/imgs/404_not_found.svg -------------------------------------------------------------------------------- /mote/static/imgs/Fedora_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/imgs/Fedora_logo.png -------------------------------------------------------------------------------- /mote/static/imgs/Fedora_logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/imgs/Fedora_logo_dark.png -------------------------------------------------------------------------------- /mote/static/imgs/favi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/imgs/favi.png -------------------------------------------------------------------------------- /mote/static/imgs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/imgs/logo.svg -------------------------------------------------------------------------------- /mote/static/imgs/logoteal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/imgs/logoteal.png -------------------------------------------------------------------------------- /mote/static/jscn/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/jscn/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /mote/static/jscn/calview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/jscn/calview.js -------------------------------------------------------------------------------- /mote/static/jscn/darkmode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/jscn/darkmode.min.js -------------------------------------------------------------------------------- /mote/static/jscn/easy.qrcode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/jscn/easy.qrcode.min.js -------------------------------------------------------------------------------- /mote/static/jscn/fragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/jscn/fragment.js -------------------------------------------------------------------------------- /mote/static/jscn/fullcalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/jscn/fullcalendar.js -------------------------------------------------------------------------------- /mote/static/jscn/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/jscn/jquery.min.js -------------------------------------------------------------------------------- /mote/static/jscn/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/static/jscn/socket.io.js -------------------------------------------------------------------------------- /mote/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/tasks.py -------------------------------------------------------------------------------- /mote/templates/aboutpage.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/templates/aboutpage.html.j2 -------------------------------------------------------------------------------- /mote/templates/base.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/templates/base.html.j2 -------------------------------------------------------------------------------- /mote/templates/e404page.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/templates/e404page.html.j2 -------------------------------------------------------------------------------- /mote/templates/event_summary.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/templates/event_summary.html.j2 -------------------------------------------------------------------------------- /mote/templates/mainpage.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/templates/mainpage.html.j2 -------------------------------------------------------------------------------- /mote/templates/statfile.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/templates/statfile.html.j2 -------------------------------------------------------------------------------- /mote/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/mote/worker.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/pyproject.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/renovate.json -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/datagrepper_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/datagrepper_sample.json -------------------------------------------------------------------------------- /tests/meetbot/fedora-meeting/2020-06-10/fedora_iot_working_group_meeting.2020-06-10-14.10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/meetbot/fedora-meeting/2020-06-10/fedora_iot_working_group_meeting.2020-06-10-14.10.html -------------------------------------------------------------------------------- /tests/meetbot/fedora-meeting/2020-06-10/fedora_iot_working_group_meeting.2020-06-10-14.10.log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/meetbot/fedora-meeting/2020-06-10/fedora_iot_working_group_meeting.2020-06-10-14.10.log.html -------------------------------------------------------------------------------- /tests/meetbot/fedora-meeting/2020-06-10/fedora_iot_working_group_meeting.2020-06-10-14.10.log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/meetbot/fedora-meeting/2020-06-10/fedora_iot_working_group_meeting.2020-06-10-14.10.log.txt -------------------------------------------------------------------------------- /tests/meetbot/fedora-meeting/2020-06-10/fedora_iot_working_group_meeting.2020-06-10-14.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/meetbot/fedora-meeting/2020-06-10/fedora_iot_working_group_meeting.2020-06-10-14.10.txt -------------------------------------------------------------------------------- /tests/meetbot/fedora-meeting/2020-06-10/magazine.2020-06-10-12.02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/meetbot/fedora-meeting/2020-06-10/magazine.2020-06-10-12.02.html -------------------------------------------------------------------------------- /tests/meetbot/fedora-meeting/2020-06-10/magazine.2020-06-10-12.02.log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/meetbot/fedora-meeting/2020-06-10/magazine.2020-06-10-12.02.log.html -------------------------------------------------------------------------------- /tests/meetbot/fedora-meeting/2020-06-10/magazine.2020-06-10-12.02.log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/meetbot/fedora-meeting/2020-06-10/magazine.2020-06-10-12.02.log.txt -------------------------------------------------------------------------------- /tests/meetbot/fedora-meeting/2020-06-10/magazine.2020-06-10-12.02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/meetbot/fedora-meeting/2020-06-10/magazine.2020-06-10-12.02.txt -------------------------------------------------------------------------------- /tests/meetbot/fedora-meeting/2020-06-10/magazine_editorial_board.2020-06-10-12.02.log.txt: -------------------------------------------------------------------------------- 1 | 12:02:26 #startmeeting Magazine editorial board -------------------------------------------------------------------------------- /tests/meetbot/teams/test.tgz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/meetbot/teams/zotbot_test/zodbot_test.2016-01-28-23.15.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/test_find.py -------------------------------------------------------------------------------- /tests/test_fragedpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/test_fragedpt.py -------------------------------------------------------------------------------- /tests/test_late.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/test_late.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_meeting_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/test_meeting_logs.py -------------------------------------------------------------------------------- /tests/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tests/utility.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedora-infra/mote/HEAD/tox.ini --------------------------------------------------------------------------------