adb38b2a17
Synapse 1.56.0 (2022-04-05)
===========================
Synapse will now refuse to start up if open registration is enabled, in order to help mitigate
abuse across the federation. If you would like
to provide registration to anyone, consider adding [email](8a519f8abc/docs/sample_config.yaml (L1285)
),
[recaptcha](https://matrix-org.github.io/synapse/v1.56/CAPTCHA_SETUP.html)
or [token-based](https://matrix-org.github.io/synapse/v1.56/usage/administration/admin_api/registration_tokens.html) verification
in order to prevent automated registration from bad actors.
This check can be disabled by setting the `enable_registration_without_verification` option in your
homeserver configuration file to `true`. More details are available in the
[upgrade notes](https://matrix-org.github.io/synapse/v1.56/upgrade.html#open-registration-without-verification-is-now-disabled-by-default).
Synapse will additionally now refuse to start when using PostgreSQL with a non-`C` values for `COLLATE` and `CTYPE`, unless
the config flag `allow_unsafe_locale`, found in the database section of the configuration file, is set to `true`. See the
[upgrade notes](https://matrix-org.github.io/synapse/v1.56/upgrade#change-in-behaviour-for-postgresql-databases-with-unsafe-locale)
for details.
Internal Changes
----------------
- Bump the version of `black` for compatibility with the latest `click` release. ([\#12320](https://github.com/matrix-org/synapse/issues/12320))
Synapse 1.56.0rc1 (2022-03-29)
==============================
Features
--------
- Allow modules to store already existing 3PID associations. ([\#12195](https://github.com/matrix-org/synapse/issues/12195))
- Allow registering server administrators using the module API. Contributed by Famedly. ([\#12250](https://github.com/matrix-org/synapse/issues/12250))
Bugfixes
--------
- Fix a long-standing bug which caused the `/_matrix/federation/v1/state` and `/_matrix/federation/v1/state_ids` endpoints to return incorrect or invalid data when called for an event which we have stored as an "outlier". ([\#12087](https://github.com/matrix-org/synapse/issues/12087))
- Fix a long-standing bug where events from ignored users would still be considered for relations. ([\#12227](https://github.com/matrix-org/synapse/issues/12227), [\#12232](https://github.com/matrix-org/synapse/issues/12232), [\#12285](https://github.com/matrix-org/synapse/issues/12285))
- Fix a bug introduced in Synapse 1.53.0 where an unnecessary query could be performed when fetching bundled aggregations for threads. ([\#12228](https://github.com/matrix-org/synapse/issues/12228))
- Fix a bug introduced in Synapse 1.52.0 where admins could not deactivate and GDPR-erase a user if Synapse was configured with limits on avatars. ([\#12261](https://github.com/matrix-org/synapse/issues/12261))
Improved Documentation
----------------------
- Fix the link to the module documentation in the legacy spam checker warning message. ([\#12231](https://github.com/matrix-org/synapse/issues/12231))
- Remove incorrect prefixes in the worker documentation for some endpoints. ([\#12243](https://github.com/matrix-org/synapse/issues/12243))
- Correct `check_username_for_spam` annotations and docs. ([\#12246](https://github.com/matrix-org/synapse/issues/12246))
- Correct Authentik OpenID typo, and add notes on troubleshooting. Contributed by @IronTooch. ([\#12275](https://github.com/matrix-org/synapse/issues/12275))
- HAProxy reverse proxy guide update to stop sending IPv4-mapped address to homeserver. Contributed by @villepeh. ([\#12279](https://github.com/matrix-org/synapse/issues/12279))
Internal Changes
----------------
- Rename `shared_rooms` to `mutual_rooms` ([MSC2666](https://github.com/matrix-org/matrix-doc/pull/2666)), as per proposal changes. ([\#12036](https://github.com/matrix-org/synapse/issues/12036))
- Remove check on `update_user_directory` for shared rooms handler ([MSC2666](https://github.com/matrix-org/matrix-doc/pull/2666)), and update/expand documentation. ([\#12038](https://github.com/matrix-org/synapse/issues/12038))
- Refactor `create_new_client_event` to use a new parameter, `state_event_ids`, which accurately describes the usage with [MSC2716](https://github.com/matrix-org/matrix-doc/pull/2716) instead of abusing `auth_event_ids`. ([\#12083](https://github.com/matrix-org/synapse/issues/12083), [\#12304](https://github.com/matrix-org/synapse/issues/12304))
- Refuse to start if registration is enabled without email, captcha, or token-based verification unless the new config flag `enable_registration_without_verification` is set to `true`. ([\#12091](https://github.com/matrix-org/synapse/issues/12091), [\#12322](https://github.com/matrix-org/synapse/issues/12322))
- Add tests for database transaction callbacks. ([\#12198](https://github.com/matrix-org/synapse/issues/12198))
- Handle cancellation in `DatabasePool.runInteraction`. ([\#12199](https://github.com/matrix-org/synapse/issues/12199))
- Add missing type hints for cache storage. ([\#12216](https://github.com/matrix-org/synapse/issues/12216))
- Add missing type hints for storage. ([\#12248](https://github.com/matrix-org/synapse/issues/12248), [\#12255](https://github.com/matrix-org/synapse/issues/12255))
- Add type hints to tests files. ([\#12224](https://github.com/matrix-org/synapse/issues/12224), [\#12240](https://github.com/matrix-org/synapse/issues/12240), [\#12256](https://github.com/matrix-org/synapse/issues/12256))
- Use type stubs for `psycopg2`. ([\#12269](https://github.com/matrix-org/synapse/issues/12269))
- Improve type annotations for `execute_values`. ([\#12311](https://github.com/matrix-org/synapse/issues/12311))
- Clean-up logic around rebasing URLs for URL image previews. ([\#12219](https://github.com/matrix-org/synapse/issues/12219))
- Use the `ignored_users` table in additional places instead of re-parsing the account data. ([\#12225](https://github.com/matrix-org/synapse/issues/12225))
- Refactor the relations endpoints to add a `RelationsHandler`. ([\#12237](https://github.com/matrix-org/synapse/issues/12237))
- Generate announcement links in the release script. ([\#12242](https://github.com/matrix-org/synapse/issues/12242))
- Improve error message when dependencies check finds a broken installation. ([\#12244](https://github.com/matrix-org/synapse/issues/12244))
- Compress metrics HTTP resource when enabled. Contributed by Nick @ Beeper. ([\#12258](https://github.com/matrix-org/synapse/issues/12258))
- Refuse to start if the PostgreSQL database has a non-`C` locale, unless the config flag `allow_unsafe_db_locale` is set to true. ([\#12262](https://github.com/matrix-org/synapse/issues/12262), [\#12288](https://github.com/matrix-org/synapse/issues/12288))
- Optionally include account validity expiration information to experimental [MSC3720](https://github.com/matrix-org/matrix-doc/pull/3720) account status responses. ([\#12266](https://github.com/matrix-org/synapse/issues/12266))
- Add a new cache `_get_membership_from_event_id` to speed up push rule calculations in large rooms. ([\#12272](https://github.com/matrix-org/synapse/issues/12272))
- Re-enable Complement concurrency in CI. ([\#12283](https://github.com/matrix-org/synapse/issues/12283))
- Remove unused test utilities. ([\#12291](https://github.com/matrix-org/synapse/issues/12291))
- Enhance logging for inbound federation events. ([\#12301](https://github.com/matrix-org/synapse/issues/12301))
- Fix compatibility with the recently-released Jinja 3.1. ([\#12313](https://github.com/matrix-org/synapse/issues/12313))
- Avoid trying to calculate the state at outlier events. ([\#12314](https://github.com/matrix-org/synapse/issues/12314))
Synapse 1.55.2 (2022-03-24)
===========================
This patch version reverts the earlier fixes from Synapse 1.55.1, which could cause problems in certain deployments, and instead adds a cap to the version of Jinja to be installed. Again, this is to fix an incompatibility with version 3.1.0 of the [Jinja](https://pypi.org/project/Jinja2/) library, and again, deployments of Synapse using the `matrixdotorg/synapse` Docker image or Debian packages from packages.matrix.org are not affected.
Internal Changes
----------------
- Pin Jinja to <3.1.0, as Synapse fails to start with Jinja 3.1.0. ([\#12297](https://github.com/matrix-org/synapse/issues/12297))
- Revert changes from 1.55.1 as they caused problems with older versions of Jinja ([\#12296](https://github.com/matrix-org/synapse/issues/12296))
Synapse 1.55.1 (2022-03-24)
===========================
This is a patch release that fixes an incompatibility with version 3.1.0 of the [Jinja](https://pypi.org/project/Jinja2/) library, released on March 24th, 2022. Deployments of Synapse using the `matrixdotorg/synapse` Docker image or Debian packages from packages.matrix.org are not affected.
Internal Changes
----------------
- Remove uses of the long-deprecated `jinja2.Markup` which would prevent Synapse from starting with Jinja 3.1.0 or above installed. ([\#12289](https://github.com/matrix-org/synapse/issues/12289))
Synapse 1.55.0 (2022-03-22)
===========================
This release removes a workaround introduced in Synapse 1.50.0 for Mjolnir compatibility. **This breaks compatibility with Mjolnir 1.3.1 and earlier. ([\#11700](https://github.com/matrix-org/synapse/issues/11700))**; Mjolnir users should upgrade Mjolnir before upgrading Synapse to this version.
This release also moves the location of the `synctl` script; see the [upgrade notes](https://github.com/matrix-org/synapse/blob/develop/docs/upgrade.md#synctl-script-has-been-moved) for more details.
Internal Changes
----------------
- Tweak copy for default Single Sign-On account details template to better adhere to mobile app store guidelines. ([\#12265](https://github.com/matrix-org/synapse/issues/12265), [\#12260](https://github.com/matrix-org/synapse/issues/12260))
Synapse 1.55.0rc1 (2022-03-15)
==============================
Features
--------
- Add third-party rules callbacks `check_can_shutdown_room` and `check_can_deactivate_user`. ([\#12028](https://github.com/matrix-org/synapse/issues/12028))
- Improve performance of logging in for large accounts. ([\#12132](https://github.com/matrix-org/synapse/issues/12132))
- Add experimental env var `SYNAPSE_ASYNC_IO_REACTOR` that causes Synapse to use the asyncio reactor for Twisted. ([\#12135](https://github.com/matrix-org/synapse/issues/12135))
- Support the stable identifiers from [MSC3440](https://github.com/matrix-org/matrix-doc/pull/3440): threads. ([\#12151](https://github.com/matrix-org/synapse/issues/12151))
- Add a new Jinja2 template filter to extract the local part of an email address. ([\#12212](https://github.com/matrix-org/synapse/issues/12212))
Bugfixes
--------
- Use the proper serialization format for bundled thread aggregations. The bug has existed since Synapse v1.48.0. ([\#12090](https://github.com/matrix-org/synapse/issues/12090))
- Fix a long-standing bug when redacting events with relations. ([\#12113](https://github.com/matrix-org/synapse/issues/12113), [\#12121](https://github.com/matrix-org/synapse/issues/12121), [\#12130](https://github.com/matrix-org/synapse/issues/12130), [\#12189](https://github.com/matrix-org/synapse/issues/12189))
- Fix a bug introduced in Synapse 1.7.2 whereby background updates are never run with the default background batch size. ([\#12157](https://github.com/matrix-org/synapse/issues/12157))
- Fix a bug where non-standard information was returned from the `/hierarchy` API. Introduced in Synapse v1.41.0. ([\#12175](https://github.com/matrix-org/synapse/issues/12175))
- Fix a bug introduced in Synapse 1.54.0 that broke background updates on sqlite homeservers while search was disabled. ([\#12215](https://github.com/matrix-org/synapse/issues/12215))
- Fix a long-standing bug when a `filter` argument with `event_fields` which did not include the `unsigned` field could result in a 500 error on `/sync`. ([\#12234](https://github.com/matrix-org/synapse/issues/12234))
Improved Documentation
----------------------
- Fix complexity checking config example in [Resource Constrained Devices](https://matrix-org.github.io/synapse/v1.54/other/running_synapse_on_single_board_computers.html) docs page. ([\#11998](https://github.com/matrix-org/synapse/issues/11998))
- Improve documentation for demo scripts. ([\#12143](https://github.com/matrix-org/synapse/issues/12143))
- Updates to the Room DAG concepts development document. ([\#12179](https://github.com/matrix-org/synapse/issues/12179))
- Document that the `typing`, `to_device`, `account_data`, `receipts`, and `presence` stream writer can only be used on a single worker. ([\#12196](https://github.com/matrix-org/synapse/issues/12196))
- Document that contributors can sign off privately by email. ([\#12204](https://github.com/matrix-org/synapse/issues/12204))
Deprecations and Removals
-------------------------
- **Remove workaround introduced in Synapse 1.50.0 for Mjolnir compatibility. Breaks compatibility with Mjolnir 1.3.1 and earlier. ([\#11700](https://github.com/matrix-org/synapse/issues/11700))**
- **`synctl` has been moved into into `synapse._scripts` and is exposed as an entry point; see [upgrade notes](https://github.com/matrix-org/synapse/blob/develop/docs/upgrade.md#synctl-script-has-been-moved). ([\#12140](https://github.com/matrix-org/synapse/issues/12140))
- Remove backwards compatibilty with pagination tokens from the `/relations` and `/aggregations` endpoints generated from Synapse < v1.52.0. ([\#12138](https://github.com/matrix-org/synapse/issues/12138))
- The groups/communities feature in Synapse has been deprecated. ([\#12200](https://github.com/matrix-org/synapse/issues/12200))
Internal Changes
----------------
- Simplify the `ApplicationService` class' set of public methods related to interest checking. ([\#11915](https://github.com/matrix-org/synapse/issues/11915))
- Add config settings for background update parameters. ([\#11980](https://github.com/matrix-org/synapse/issues/11980))
- Correct type hints for txredis. ([\#12042](https://github.com/matrix-org/synapse/issues/12042))
- Limit the size of `aggregation_key` on annotations. ([\#12101](https://github.com/matrix-org/synapse/issues/12101))
- Add type hints to tests files. ([\#12108](https://github.com/matrix-org/synapse/issues/12108), [\#12146](https://github.com/matrix-org/synapse/issues/12146), [\#12207](https://github.com/matrix-org/synapse/issues/12207), [\#12208](https://github.com/matrix-org/synapse/issues/12208))
- Move scripts to Synapse package and expose as setuptools entry points. ([\#12118](https://github.com/matrix-org/synapse/issues/12118))
- Add support for cancellation to `ReadWriteLock`. ([\#12120](https://github.com/matrix-org/synapse/issues/12120))
- Fix data validation to compare to lists, not sequences. ([\#12128](https://github.com/matrix-org/synapse/issues/12128))
- Fix CI not attaching source distributions and wheels to the GitHub releases. ([\#12131](https://github.com/matrix-org/synapse/issues/12131))
- Remove unused mocks from `test_typing`. ([\#12136](https://github.com/matrix-org/synapse/issues/12136))
- Give `scripts-dev` scripts suffixes for neater CI config. ([\#12137](https://github.com/matrix-org/synapse/issues/12137))
- Move the snapcraft configuration file to `contrib`. ([\#12142](https://github.com/matrix-org/synapse/issues/12142))
- Enable [MSC3030](https://github.com/matrix-org/matrix-doc/pull/3030) Complement tests in CI. ([\#12144](https://github.com/matrix-org/synapse/issues/12144))
- Enable [MSC2716](https://github.com/matrix-org/matrix-doc/pull/2716) Complement tests in CI. ([\#12145](https://github.com/matrix-org/synapse/issues/12145))
- Add test for `ObservableDeferred`'s cancellation behaviour. ([\#12149](https://github.com/matrix-org/synapse/issues/12149))
- Use `ParamSpec` in type hints for `synapse.logging.context`. ([\#12150](https://github.com/matrix-org/synapse/issues/12150))
- Prune unused jobs from `tox` config. ([\#12152](https://github.com/matrix-org/synapse/issues/12152))
- Move CI checks out of tox, to facilitate a move to using poetry. ([\#12153](https://github.com/matrix-org/synapse/issues/12153))
- Avoid generating state groups for local out-of-band leaves. ([\#12154](https://github.com/matrix-org/synapse/issues/12154))
- Avoid trying to calculate the state at outlier events. ([\#12155](https://github.com/matrix-org/synapse/issues/12155), [\#12173](https://github.com/matrix-org/synapse/issues/12173), [\#12202](https://github.com/matrix-org/synapse/issues/12202))
- Fix some type annotations. ([\#12156](https://github.com/matrix-org/synapse/issues/12156))
- Add type hints for `ObservableDeferred` attributes. ([\#12159](https://github.com/matrix-org/synapse/issues/12159))
- Use a prebuilt Action for the `tests-done` CI job. ([\#12161](https://github.com/matrix-org/synapse/issues/12161))
- Reduce number of DB queries made during processing of `/sync`. ([\#12163](https://github.com/matrix-org/synapse/issues/12163))
- Add `delay_cancellation` utility function, which behaves like `stop_cancellation` but waits until the original `Deferred` resolves before raising a `CancelledError`. ([\#12180](https://github.com/matrix-org/synapse/issues/12180))
- Retry HTTP replication failures, this should prevent 502's when restarting stateful workers (main, event persisters, stream writers). Contributed by Nick @ Beeper. ([\#12182](https://github.com/matrix-org/synapse/issues/12182))
- Add cancellation support to `@cached` and `@cachedList` decorators. ([\#12183](https://github.com/matrix-org/synapse/issues/12183))
- Remove unused variables. ([\#12187](https://github.com/matrix-org/synapse/issues/12187))
- Add combined test for HTTP pusher and push rule. Contributed by Nick @ Beeper. ([\#12188](https://github.com/matrix-org/synapse/issues/12188))
- Rename `HomeServer.get_tcp_replication` to `get_replication_command_handler`. ([\#12192](https://github.com/matrix-org/synapse/issues/12192))
- Remove some dead code. ([\#12197](https://github.com/matrix-org/synapse/issues/12197))
- Fix a misleading comment in the function `check_event_for_spam`. ([\#12203](https://github.com/matrix-org/synapse/issues/12203))
- Remove unnecessary `pass` statements. ([\#12206](https://github.com/matrix-org/synapse/issues/12206))
- Update the SSO username picker template to comply with SIWA guidelines. ([\#12210](https://github.com/matrix-org/synapse/issues/12210))
- Improve code documentation for the typing stream over replication. ([\#12211](https://github.com/matrix-org/synapse/issues/12211))
1912 lines
99 KiB
Text
1912 lines
99 KiB
Text
@comment $NetBSD: PLIST,v 1.24 2022/04/17 11:08:33 js Exp $
|
|
bin/export_signing_key
|
|
bin/generate_config
|
|
bin/generate_log_config
|
|
bin/generate_signing_key
|
|
bin/hash_password
|
|
bin/register_new_matrix_user
|
|
bin/synapse_homeserver
|
|
bin/synapse_port_db
|
|
bin/synapse_review_recent_signups
|
|
bin/synapse_worker
|
|
bin/synctl
|
|
bin/update_synapse_database
|
|
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
|
|
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
|
|
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
|
|
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
|
|
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
|
|
${PYSITELIB}/${EGG_INFODIR}/requires.txt
|
|
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
|
|
${PYSITELIB}/synapse/__init__.py
|
|
${PYSITELIB}/synapse/__init__.pyc
|
|
${PYSITELIB}/synapse/__init__.pyo
|
|
${PYSITELIB}/synapse/_scripts/__init__.py
|
|
${PYSITELIB}/synapse/_scripts/__init__.pyc
|
|
${PYSITELIB}/synapse/_scripts/__init__.pyo
|
|
${PYSITELIB}/synapse/_scripts/export_signing_key.py
|
|
${PYSITELIB}/synapse/_scripts/export_signing_key.pyc
|
|
${PYSITELIB}/synapse/_scripts/export_signing_key.pyo
|
|
${PYSITELIB}/synapse/_scripts/generate_config.py
|
|
${PYSITELIB}/synapse/_scripts/generate_config.pyc
|
|
${PYSITELIB}/synapse/_scripts/generate_config.pyo
|
|
${PYSITELIB}/synapse/_scripts/generate_log_config.py
|
|
${PYSITELIB}/synapse/_scripts/generate_log_config.pyc
|
|
${PYSITELIB}/synapse/_scripts/generate_log_config.pyo
|
|
${PYSITELIB}/synapse/_scripts/generate_signing_key.py
|
|
${PYSITELIB}/synapse/_scripts/generate_signing_key.pyc
|
|
${PYSITELIB}/synapse/_scripts/generate_signing_key.pyo
|
|
${PYSITELIB}/synapse/_scripts/hash_password.py
|
|
${PYSITELIB}/synapse/_scripts/hash_password.pyc
|
|
${PYSITELIB}/synapse/_scripts/hash_password.pyo
|
|
${PYSITELIB}/synapse/_scripts/move_remote_media_to_new_store.py
|
|
${PYSITELIB}/synapse/_scripts/move_remote_media_to_new_store.pyc
|
|
${PYSITELIB}/synapse/_scripts/move_remote_media_to_new_store.pyo
|
|
${PYSITELIB}/synapse/_scripts/register_new_matrix_user.py
|
|
${PYSITELIB}/synapse/_scripts/register_new_matrix_user.pyc
|
|
${PYSITELIB}/synapse/_scripts/register_new_matrix_user.pyo
|
|
${PYSITELIB}/synapse/_scripts/review_recent_signups.py
|
|
${PYSITELIB}/synapse/_scripts/review_recent_signups.pyc
|
|
${PYSITELIB}/synapse/_scripts/review_recent_signups.pyo
|
|
${PYSITELIB}/synapse/_scripts/synapse_port_db.py
|
|
${PYSITELIB}/synapse/_scripts/synapse_port_db.pyc
|
|
${PYSITELIB}/synapse/_scripts/synapse_port_db.pyo
|
|
${PYSITELIB}/synapse/_scripts/synctl.py
|
|
${PYSITELIB}/synapse/_scripts/synctl.pyc
|
|
${PYSITELIB}/synapse/_scripts/synctl.pyo
|
|
${PYSITELIB}/synapse/_scripts/update_synapse_database.py
|
|
${PYSITELIB}/synapse/_scripts/update_synapse_database.pyc
|
|
${PYSITELIB}/synapse/_scripts/update_synapse_database.pyo
|
|
${PYSITELIB}/synapse/api/__init__.py
|
|
${PYSITELIB}/synapse/api/__init__.pyc
|
|
${PYSITELIB}/synapse/api/__init__.pyo
|
|
${PYSITELIB}/synapse/api/auth.py
|
|
${PYSITELIB}/synapse/api/auth.pyc
|
|
${PYSITELIB}/synapse/api/auth.pyo
|
|
${PYSITELIB}/synapse/api/auth_blocking.py
|
|
${PYSITELIB}/synapse/api/auth_blocking.pyc
|
|
${PYSITELIB}/synapse/api/auth_blocking.pyo
|
|
${PYSITELIB}/synapse/api/constants.py
|
|
${PYSITELIB}/synapse/api/constants.pyc
|
|
${PYSITELIB}/synapse/api/constants.pyo
|
|
${PYSITELIB}/synapse/api/errors.py
|
|
${PYSITELIB}/synapse/api/errors.pyc
|
|
${PYSITELIB}/synapse/api/errors.pyo
|
|
${PYSITELIB}/synapse/api/filtering.py
|
|
${PYSITELIB}/synapse/api/filtering.pyc
|
|
${PYSITELIB}/synapse/api/filtering.pyo
|
|
${PYSITELIB}/synapse/api/presence.py
|
|
${PYSITELIB}/synapse/api/presence.pyc
|
|
${PYSITELIB}/synapse/api/presence.pyo
|
|
${PYSITELIB}/synapse/api/ratelimiting.py
|
|
${PYSITELIB}/synapse/api/ratelimiting.pyc
|
|
${PYSITELIB}/synapse/api/ratelimiting.pyo
|
|
${PYSITELIB}/synapse/api/room_versions.py
|
|
${PYSITELIB}/synapse/api/room_versions.pyc
|
|
${PYSITELIB}/synapse/api/room_versions.pyo
|
|
${PYSITELIB}/synapse/api/urls.py
|
|
${PYSITELIB}/synapse/api/urls.pyc
|
|
${PYSITELIB}/synapse/api/urls.pyo
|
|
${PYSITELIB}/synapse/app/__init__.py
|
|
${PYSITELIB}/synapse/app/__init__.pyc
|
|
${PYSITELIB}/synapse/app/__init__.pyo
|
|
${PYSITELIB}/synapse/app/_base.py
|
|
${PYSITELIB}/synapse/app/_base.pyc
|
|
${PYSITELIB}/synapse/app/_base.pyo
|
|
${PYSITELIB}/synapse/app/admin_cmd.py
|
|
${PYSITELIB}/synapse/app/admin_cmd.pyc
|
|
${PYSITELIB}/synapse/app/admin_cmd.pyo
|
|
${PYSITELIB}/synapse/app/appservice.py
|
|
${PYSITELIB}/synapse/app/appservice.pyc
|
|
${PYSITELIB}/synapse/app/appservice.pyo
|
|
${PYSITELIB}/synapse/app/client_reader.py
|
|
${PYSITELIB}/synapse/app/client_reader.pyc
|
|
${PYSITELIB}/synapse/app/client_reader.pyo
|
|
${PYSITELIB}/synapse/app/event_creator.py
|
|
${PYSITELIB}/synapse/app/event_creator.pyc
|
|
${PYSITELIB}/synapse/app/event_creator.pyo
|
|
${PYSITELIB}/synapse/app/federation_reader.py
|
|
${PYSITELIB}/synapse/app/federation_reader.pyc
|
|
${PYSITELIB}/synapse/app/federation_reader.pyo
|
|
${PYSITELIB}/synapse/app/federation_sender.py
|
|
${PYSITELIB}/synapse/app/federation_sender.pyc
|
|
${PYSITELIB}/synapse/app/federation_sender.pyo
|
|
${PYSITELIB}/synapse/app/frontend_proxy.py
|
|
${PYSITELIB}/synapse/app/frontend_proxy.pyc
|
|
${PYSITELIB}/synapse/app/frontend_proxy.pyo
|
|
${PYSITELIB}/synapse/app/generic_worker.py
|
|
${PYSITELIB}/synapse/app/generic_worker.pyc
|
|
${PYSITELIB}/synapse/app/generic_worker.pyo
|
|
${PYSITELIB}/synapse/app/homeserver.py
|
|
${PYSITELIB}/synapse/app/homeserver.pyc
|
|
${PYSITELIB}/synapse/app/homeserver.pyo
|
|
${PYSITELIB}/synapse/app/media_repository.py
|
|
${PYSITELIB}/synapse/app/media_repository.pyc
|
|
${PYSITELIB}/synapse/app/media_repository.pyo
|
|
${PYSITELIB}/synapse/app/phone_stats_home.py
|
|
${PYSITELIB}/synapse/app/phone_stats_home.pyc
|
|
${PYSITELIB}/synapse/app/phone_stats_home.pyo
|
|
${PYSITELIB}/synapse/app/pusher.py
|
|
${PYSITELIB}/synapse/app/pusher.pyc
|
|
${PYSITELIB}/synapse/app/pusher.pyo
|
|
${PYSITELIB}/synapse/app/synchrotron.py
|
|
${PYSITELIB}/synapse/app/synchrotron.pyc
|
|
${PYSITELIB}/synapse/app/synchrotron.pyo
|
|
${PYSITELIB}/synapse/app/user_dir.py
|
|
${PYSITELIB}/synapse/app/user_dir.pyc
|
|
${PYSITELIB}/synapse/app/user_dir.pyo
|
|
${PYSITELIB}/synapse/appservice/__init__.py
|
|
${PYSITELIB}/synapse/appservice/__init__.pyc
|
|
${PYSITELIB}/synapse/appservice/__init__.pyo
|
|
${PYSITELIB}/synapse/appservice/api.py
|
|
${PYSITELIB}/synapse/appservice/api.pyc
|
|
${PYSITELIB}/synapse/appservice/api.pyo
|
|
${PYSITELIB}/synapse/appservice/scheduler.py
|
|
${PYSITELIB}/synapse/appservice/scheduler.pyc
|
|
${PYSITELIB}/synapse/appservice/scheduler.pyo
|
|
${PYSITELIB}/synapse/config/__init__.py
|
|
${PYSITELIB}/synapse/config/__init__.pyc
|
|
${PYSITELIB}/synapse/config/__init__.pyo
|
|
${PYSITELIB}/synapse/config/__main__.py
|
|
${PYSITELIB}/synapse/config/__main__.pyc
|
|
${PYSITELIB}/synapse/config/__main__.pyo
|
|
${PYSITELIB}/synapse/config/_base.py
|
|
${PYSITELIB}/synapse/config/_base.pyc
|
|
${PYSITELIB}/synapse/config/_base.pyi
|
|
${PYSITELIB}/synapse/config/_base.pyo
|
|
${PYSITELIB}/synapse/config/_util.py
|
|
${PYSITELIB}/synapse/config/_util.pyc
|
|
${PYSITELIB}/synapse/config/_util.pyo
|
|
${PYSITELIB}/synapse/config/account_validity.py
|
|
${PYSITELIB}/synapse/config/account_validity.pyc
|
|
${PYSITELIB}/synapse/config/account_validity.pyo
|
|
${PYSITELIB}/synapse/config/api.py
|
|
${PYSITELIB}/synapse/config/api.pyc
|
|
${PYSITELIB}/synapse/config/api.pyo
|
|
${PYSITELIB}/synapse/config/appservice.py
|
|
${PYSITELIB}/synapse/config/appservice.pyc
|
|
${PYSITELIB}/synapse/config/appservice.pyo
|
|
${PYSITELIB}/synapse/config/auth.py
|
|
${PYSITELIB}/synapse/config/auth.pyc
|
|
${PYSITELIB}/synapse/config/auth.pyo
|
|
${PYSITELIB}/synapse/config/background_updates.py
|
|
${PYSITELIB}/synapse/config/background_updates.pyc
|
|
${PYSITELIB}/synapse/config/background_updates.pyo
|
|
${PYSITELIB}/synapse/config/cache.py
|
|
${PYSITELIB}/synapse/config/cache.pyc
|
|
${PYSITELIB}/synapse/config/cache.pyo
|
|
${PYSITELIB}/synapse/config/captcha.py
|
|
${PYSITELIB}/synapse/config/captcha.pyc
|
|
${PYSITELIB}/synapse/config/captcha.pyo
|
|
${PYSITELIB}/synapse/config/cas.py
|
|
${PYSITELIB}/synapse/config/cas.pyc
|
|
${PYSITELIB}/synapse/config/cas.pyo
|
|
${PYSITELIB}/synapse/config/consent.py
|
|
${PYSITELIB}/synapse/config/consent.pyc
|
|
${PYSITELIB}/synapse/config/consent.pyo
|
|
${PYSITELIB}/synapse/config/database.py
|
|
${PYSITELIB}/synapse/config/database.pyc
|
|
${PYSITELIB}/synapse/config/database.pyo
|
|
${PYSITELIB}/synapse/config/emailconfig.py
|
|
${PYSITELIB}/synapse/config/emailconfig.pyc
|
|
${PYSITELIB}/synapse/config/emailconfig.pyo
|
|
${PYSITELIB}/synapse/config/experimental.py
|
|
${PYSITELIB}/synapse/config/experimental.pyc
|
|
${PYSITELIB}/synapse/config/experimental.pyo
|
|
${PYSITELIB}/synapse/config/federation.py
|
|
${PYSITELIB}/synapse/config/federation.pyc
|
|
${PYSITELIB}/synapse/config/federation.pyo
|
|
${PYSITELIB}/synapse/config/groups.py
|
|
${PYSITELIB}/synapse/config/groups.pyc
|
|
${PYSITELIB}/synapse/config/groups.pyo
|
|
${PYSITELIB}/synapse/config/homeserver.py
|
|
${PYSITELIB}/synapse/config/homeserver.pyc
|
|
${PYSITELIB}/synapse/config/homeserver.pyo
|
|
${PYSITELIB}/synapse/config/jwt.py
|
|
${PYSITELIB}/synapse/config/jwt.pyc
|
|
${PYSITELIB}/synapse/config/jwt.pyo
|
|
${PYSITELIB}/synapse/config/key.py
|
|
${PYSITELIB}/synapse/config/key.pyc
|
|
${PYSITELIB}/synapse/config/key.pyo
|
|
${PYSITELIB}/synapse/config/logger.py
|
|
${PYSITELIB}/synapse/config/logger.pyc
|
|
${PYSITELIB}/synapse/config/logger.pyo
|
|
${PYSITELIB}/synapse/config/metrics.py
|
|
${PYSITELIB}/synapse/config/metrics.pyc
|
|
${PYSITELIB}/synapse/config/metrics.pyo
|
|
${PYSITELIB}/synapse/config/modules.py
|
|
${PYSITELIB}/synapse/config/modules.pyc
|
|
${PYSITELIB}/synapse/config/modules.pyo
|
|
${PYSITELIB}/synapse/config/oembed.py
|
|
${PYSITELIB}/synapse/config/oembed.pyc
|
|
${PYSITELIB}/synapse/config/oembed.pyo
|
|
${PYSITELIB}/synapse/config/oidc.py
|
|
${PYSITELIB}/synapse/config/oidc.pyc
|
|
${PYSITELIB}/synapse/config/oidc.pyo
|
|
${PYSITELIB}/synapse/config/password_auth_providers.py
|
|
${PYSITELIB}/synapse/config/password_auth_providers.pyc
|
|
${PYSITELIB}/synapse/config/password_auth_providers.pyo
|
|
${PYSITELIB}/synapse/config/push.py
|
|
${PYSITELIB}/synapse/config/push.pyc
|
|
${PYSITELIB}/synapse/config/push.pyo
|
|
${PYSITELIB}/synapse/config/ratelimiting.py
|
|
${PYSITELIB}/synapse/config/ratelimiting.pyc
|
|
${PYSITELIB}/synapse/config/ratelimiting.pyo
|
|
${PYSITELIB}/synapse/config/redis.py
|
|
${PYSITELIB}/synapse/config/redis.pyc
|
|
${PYSITELIB}/synapse/config/redis.pyo
|
|
${PYSITELIB}/synapse/config/registration.py
|
|
${PYSITELIB}/synapse/config/registration.pyc
|
|
${PYSITELIB}/synapse/config/registration.pyo
|
|
${PYSITELIB}/synapse/config/repository.py
|
|
${PYSITELIB}/synapse/config/repository.pyc
|
|
${PYSITELIB}/synapse/config/repository.pyo
|
|
${PYSITELIB}/synapse/config/retention.py
|
|
${PYSITELIB}/synapse/config/retention.pyc
|
|
${PYSITELIB}/synapse/config/retention.pyo
|
|
${PYSITELIB}/synapse/config/room.py
|
|
${PYSITELIB}/synapse/config/room.pyc
|
|
${PYSITELIB}/synapse/config/room.pyo
|
|
${PYSITELIB}/synapse/config/room_directory.py
|
|
${PYSITELIB}/synapse/config/room_directory.pyc
|
|
${PYSITELIB}/synapse/config/room_directory.pyo
|
|
${PYSITELIB}/synapse/config/saml2.py
|
|
${PYSITELIB}/synapse/config/saml2.pyc
|
|
${PYSITELIB}/synapse/config/saml2.pyo
|
|
${PYSITELIB}/synapse/config/server.py
|
|
${PYSITELIB}/synapse/config/server.pyc
|
|
${PYSITELIB}/synapse/config/server.pyo
|
|
${PYSITELIB}/synapse/config/server_notices.py
|
|
${PYSITELIB}/synapse/config/server_notices.pyc
|
|
${PYSITELIB}/synapse/config/server_notices.pyo
|
|
${PYSITELIB}/synapse/config/spam_checker.py
|
|
${PYSITELIB}/synapse/config/spam_checker.pyc
|
|
${PYSITELIB}/synapse/config/spam_checker.pyo
|
|
${PYSITELIB}/synapse/config/sso.py
|
|
${PYSITELIB}/synapse/config/sso.pyc
|
|
${PYSITELIB}/synapse/config/sso.pyo
|
|
${PYSITELIB}/synapse/config/stats.py
|
|
${PYSITELIB}/synapse/config/stats.pyc
|
|
${PYSITELIB}/synapse/config/stats.pyo
|
|
${PYSITELIB}/synapse/config/third_party_event_rules.py
|
|
${PYSITELIB}/synapse/config/third_party_event_rules.pyc
|
|
${PYSITELIB}/synapse/config/third_party_event_rules.pyo
|
|
${PYSITELIB}/synapse/config/tls.py
|
|
${PYSITELIB}/synapse/config/tls.pyc
|
|
${PYSITELIB}/synapse/config/tls.pyo
|
|
${PYSITELIB}/synapse/config/tracer.py
|
|
${PYSITELIB}/synapse/config/tracer.pyc
|
|
${PYSITELIB}/synapse/config/tracer.pyo
|
|
${PYSITELIB}/synapse/config/user_directory.py
|
|
${PYSITELIB}/synapse/config/user_directory.pyc
|
|
${PYSITELIB}/synapse/config/user_directory.pyo
|
|
${PYSITELIB}/synapse/config/voip.py
|
|
${PYSITELIB}/synapse/config/voip.pyc
|
|
${PYSITELIB}/synapse/config/voip.pyo
|
|
${PYSITELIB}/synapse/config/workers.py
|
|
${PYSITELIB}/synapse/config/workers.pyc
|
|
${PYSITELIB}/synapse/config/workers.pyo
|
|
${PYSITELIB}/synapse/crypto/__init__.py
|
|
${PYSITELIB}/synapse/crypto/__init__.pyc
|
|
${PYSITELIB}/synapse/crypto/__init__.pyo
|
|
${PYSITELIB}/synapse/crypto/context_factory.py
|
|
${PYSITELIB}/synapse/crypto/context_factory.pyc
|
|
${PYSITELIB}/synapse/crypto/context_factory.pyo
|
|
${PYSITELIB}/synapse/crypto/event_signing.py
|
|
${PYSITELIB}/synapse/crypto/event_signing.pyc
|
|
${PYSITELIB}/synapse/crypto/event_signing.pyo
|
|
${PYSITELIB}/synapse/crypto/keyring.py
|
|
${PYSITELIB}/synapse/crypto/keyring.pyc
|
|
${PYSITELIB}/synapse/crypto/keyring.pyo
|
|
${PYSITELIB}/synapse/event_auth.py
|
|
${PYSITELIB}/synapse/event_auth.pyc
|
|
${PYSITELIB}/synapse/event_auth.pyo
|
|
${PYSITELIB}/synapse/events/__init__.py
|
|
${PYSITELIB}/synapse/events/__init__.pyc
|
|
${PYSITELIB}/synapse/events/__init__.pyo
|
|
${PYSITELIB}/synapse/events/builder.py
|
|
${PYSITELIB}/synapse/events/builder.pyc
|
|
${PYSITELIB}/synapse/events/builder.pyo
|
|
${PYSITELIB}/synapse/events/presence_router.py
|
|
${PYSITELIB}/synapse/events/presence_router.pyc
|
|
${PYSITELIB}/synapse/events/presence_router.pyo
|
|
${PYSITELIB}/synapse/events/snapshot.py
|
|
${PYSITELIB}/synapse/events/snapshot.pyc
|
|
${PYSITELIB}/synapse/events/snapshot.pyo
|
|
${PYSITELIB}/synapse/events/spamcheck.py
|
|
${PYSITELIB}/synapse/events/spamcheck.pyc
|
|
${PYSITELIB}/synapse/events/spamcheck.pyo
|
|
${PYSITELIB}/synapse/events/third_party_rules.py
|
|
${PYSITELIB}/synapse/events/third_party_rules.pyc
|
|
${PYSITELIB}/synapse/events/third_party_rules.pyo
|
|
${PYSITELIB}/synapse/events/utils.py
|
|
${PYSITELIB}/synapse/events/utils.pyc
|
|
${PYSITELIB}/synapse/events/utils.pyo
|
|
${PYSITELIB}/synapse/events/validator.py
|
|
${PYSITELIB}/synapse/events/validator.pyc
|
|
${PYSITELIB}/synapse/events/validator.pyo
|
|
${PYSITELIB}/synapse/federation/__init__.py
|
|
${PYSITELIB}/synapse/federation/__init__.pyc
|
|
${PYSITELIB}/synapse/federation/__init__.pyo
|
|
${PYSITELIB}/synapse/federation/federation_base.py
|
|
${PYSITELIB}/synapse/federation/federation_base.pyc
|
|
${PYSITELIB}/synapse/federation/federation_base.pyo
|
|
${PYSITELIB}/synapse/federation/federation_client.py
|
|
${PYSITELIB}/synapse/federation/federation_client.pyc
|
|
${PYSITELIB}/synapse/federation/federation_client.pyo
|
|
${PYSITELIB}/synapse/federation/federation_server.py
|
|
${PYSITELIB}/synapse/federation/federation_server.pyc
|
|
${PYSITELIB}/synapse/federation/federation_server.pyo
|
|
${PYSITELIB}/synapse/federation/persistence.py
|
|
${PYSITELIB}/synapse/federation/persistence.pyc
|
|
${PYSITELIB}/synapse/federation/persistence.pyo
|
|
${PYSITELIB}/synapse/federation/send_queue.py
|
|
${PYSITELIB}/synapse/federation/send_queue.pyc
|
|
${PYSITELIB}/synapse/federation/send_queue.pyo
|
|
${PYSITELIB}/synapse/federation/sender/__init__.py
|
|
${PYSITELIB}/synapse/federation/sender/__init__.pyc
|
|
${PYSITELIB}/synapse/federation/sender/__init__.pyo
|
|
${PYSITELIB}/synapse/federation/sender/per_destination_queue.py
|
|
${PYSITELIB}/synapse/federation/sender/per_destination_queue.pyc
|
|
${PYSITELIB}/synapse/federation/sender/per_destination_queue.pyo
|
|
${PYSITELIB}/synapse/federation/sender/transaction_manager.py
|
|
${PYSITELIB}/synapse/federation/sender/transaction_manager.pyc
|
|
${PYSITELIB}/synapse/federation/sender/transaction_manager.pyo
|
|
${PYSITELIB}/synapse/federation/transport/__init__.py
|
|
${PYSITELIB}/synapse/federation/transport/__init__.pyc
|
|
${PYSITELIB}/synapse/federation/transport/__init__.pyo
|
|
${PYSITELIB}/synapse/federation/transport/client.py
|
|
${PYSITELIB}/synapse/federation/transport/client.pyc
|
|
${PYSITELIB}/synapse/federation/transport/client.pyo
|
|
${PYSITELIB}/synapse/federation/transport/server/__init__.py
|
|
${PYSITELIB}/synapse/federation/transport/server/__init__.pyc
|
|
${PYSITELIB}/synapse/federation/transport/server/__init__.pyo
|
|
${PYSITELIB}/synapse/federation/transport/server/_base.py
|
|
${PYSITELIB}/synapse/federation/transport/server/_base.pyc
|
|
${PYSITELIB}/synapse/federation/transport/server/_base.pyo
|
|
${PYSITELIB}/synapse/federation/transport/server/federation.py
|
|
${PYSITELIB}/synapse/federation/transport/server/federation.pyc
|
|
${PYSITELIB}/synapse/federation/transport/server/federation.pyo
|
|
${PYSITELIB}/synapse/federation/transport/server/groups_local.py
|
|
${PYSITELIB}/synapse/federation/transport/server/groups_local.pyc
|
|
${PYSITELIB}/synapse/federation/transport/server/groups_local.pyo
|
|
${PYSITELIB}/synapse/federation/transport/server/groups_server.py
|
|
${PYSITELIB}/synapse/federation/transport/server/groups_server.pyc
|
|
${PYSITELIB}/synapse/federation/transport/server/groups_server.pyo
|
|
${PYSITELIB}/synapse/federation/units.py
|
|
${PYSITELIB}/synapse/federation/units.pyc
|
|
${PYSITELIB}/synapse/federation/units.pyo
|
|
${PYSITELIB}/synapse/groups/__init__.py
|
|
${PYSITELIB}/synapse/groups/__init__.pyc
|
|
${PYSITELIB}/synapse/groups/__init__.pyo
|
|
${PYSITELIB}/synapse/groups/attestations.py
|
|
${PYSITELIB}/synapse/groups/attestations.pyc
|
|
${PYSITELIB}/synapse/groups/attestations.pyo
|
|
${PYSITELIB}/synapse/groups/groups_server.py
|
|
${PYSITELIB}/synapse/groups/groups_server.pyc
|
|
${PYSITELIB}/synapse/groups/groups_server.pyo
|
|
${PYSITELIB}/synapse/handlers/__init__.py
|
|
${PYSITELIB}/synapse/handlers/__init__.pyc
|
|
${PYSITELIB}/synapse/handlers/__init__.pyo
|
|
${PYSITELIB}/synapse/handlers/account.py
|
|
${PYSITELIB}/synapse/handlers/account.pyc
|
|
${PYSITELIB}/synapse/handlers/account.pyo
|
|
${PYSITELIB}/synapse/handlers/account_data.py
|
|
${PYSITELIB}/synapse/handlers/account_data.pyc
|
|
${PYSITELIB}/synapse/handlers/account_data.pyo
|
|
${PYSITELIB}/synapse/handlers/account_validity.py
|
|
${PYSITELIB}/synapse/handlers/account_validity.pyc
|
|
${PYSITELIB}/synapse/handlers/account_validity.pyo
|
|
${PYSITELIB}/synapse/handlers/admin.py
|
|
${PYSITELIB}/synapse/handlers/admin.pyc
|
|
${PYSITELIB}/synapse/handlers/admin.pyo
|
|
${PYSITELIB}/synapse/handlers/appservice.py
|
|
${PYSITELIB}/synapse/handlers/appservice.pyc
|
|
${PYSITELIB}/synapse/handlers/appservice.pyo
|
|
${PYSITELIB}/synapse/handlers/auth.py
|
|
${PYSITELIB}/synapse/handlers/auth.pyc
|
|
${PYSITELIB}/synapse/handlers/auth.pyo
|
|
${PYSITELIB}/synapse/handlers/cas.py
|
|
${PYSITELIB}/synapse/handlers/cas.pyc
|
|
${PYSITELIB}/synapse/handlers/cas.pyo
|
|
${PYSITELIB}/synapse/handlers/deactivate_account.py
|
|
${PYSITELIB}/synapse/handlers/deactivate_account.pyc
|
|
${PYSITELIB}/synapse/handlers/deactivate_account.pyo
|
|
${PYSITELIB}/synapse/handlers/device.py
|
|
${PYSITELIB}/synapse/handlers/device.pyc
|
|
${PYSITELIB}/synapse/handlers/device.pyo
|
|
${PYSITELIB}/synapse/handlers/devicemessage.py
|
|
${PYSITELIB}/synapse/handlers/devicemessage.pyc
|
|
${PYSITELIB}/synapse/handlers/devicemessage.pyo
|
|
${PYSITELIB}/synapse/handlers/directory.py
|
|
${PYSITELIB}/synapse/handlers/directory.pyc
|
|
${PYSITELIB}/synapse/handlers/directory.pyo
|
|
${PYSITELIB}/synapse/handlers/e2e_keys.py
|
|
${PYSITELIB}/synapse/handlers/e2e_keys.pyc
|
|
${PYSITELIB}/synapse/handlers/e2e_keys.pyo
|
|
${PYSITELIB}/synapse/handlers/e2e_room_keys.py
|
|
${PYSITELIB}/synapse/handlers/e2e_room_keys.pyc
|
|
${PYSITELIB}/synapse/handlers/e2e_room_keys.pyo
|
|
${PYSITELIB}/synapse/handlers/event_auth.py
|
|
${PYSITELIB}/synapse/handlers/event_auth.pyc
|
|
${PYSITELIB}/synapse/handlers/event_auth.pyo
|
|
${PYSITELIB}/synapse/handlers/events.py
|
|
${PYSITELIB}/synapse/handlers/events.pyc
|
|
${PYSITELIB}/synapse/handlers/events.pyo
|
|
${PYSITELIB}/synapse/handlers/federation.py
|
|
${PYSITELIB}/synapse/handlers/federation.pyc
|
|
${PYSITELIB}/synapse/handlers/federation.pyo
|
|
${PYSITELIB}/synapse/handlers/federation_event.py
|
|
${PYSITELIB}/synapse/handlers/federation_event.pyc
|
|
${PYSITELIB}/synapse/handlers/federation_event.pyo
|
|
${PYSITELIB}/synapse/handlers/groups_local.py
|
|
${PYSITELIB}/synapse/handlers/groups_local.pyc
|
|
${PYSITELIB}/synapse/handlers/groups_local.pyo
|
|
${PYSITELIB}/synapse/handlers/identity.py
|
|
${PYSITELIB}/synapse/handlers/identity.pyc
|
|
${PYSITELIB}/synapse/handlers/identity.pyo
|
|
${PYSITELIB}/synapse/handlers/initial_sync.py
|
|
${PYSITELIB}/synapse/handlers/initial_sync.pyc
|
|
${PYSITELIB}/synapse/handlers/initial_sync.pyo
|
|
${PYSITELIB}/synapse/handlers/message.py
|
|
${PYSITELIB}/synapse/handlers/message.pyc
|
|
${PYSITELIB}/synapse/handlers/message.pyo
|
|
${PYSITELIB}/synapse/handlers/oidc.py
|
|
${PYSITELIB}/synapse/handlers/oidc.pyc
|
|
${PYSITELIB}/synapse/handlers/oidc.pyo
|
|
${PYSITELIB}/synapse/handlers/pagination.py
|
|
${PYSITELIB}/synapse/handlers/pagination.pyc
|
|
${PYSITELIB}/synapse/handlers/pagination.pyo
|
|
${PYSITELIB}/synapse/handlers/password_policy.py
|
|
${PYSITELIB}/synapse/handlers/password_policy.pyc
|
|
${PYSITELIB}/synapse/handlers/password_policy.pyo
|
|
${PYSITELIB}/synapse/handlers/presence.py
|
|
${PYSITELIB}/synapse/handlers/presence.pyc
|
|
${PYSITELIB}/synapse/handlers/presence.pyo
|
|
${PYSITELIB}/synapse/handlers/profile.py
|
|
${PYSITELIB}/synapse/handlers/profile.pyc
|
|
${PYSITELIB}/synapse/handlers/profile.pyo
|
|
${PYSITELIB}/synapse/handlers/read_marker.py
|
|
${PYSITELIB}/synapse/handlers/read_marker.pyc
|
|
${PYSITELIB}/synapse/handlers/read_marker.pyo
|
|
${PYSITELIB}/synapse/handlers/receipts.py
|
|
${PYSITELIB}/synapse/handlers/receipts.pyc
|
|
${PYSITELIB}/synapse/handlers/receipts.pyo
|
|
${PYSITELIB}/synapse/handlers/register.py
|
|
${PYSITELIB}/synapse/handlers/register.pyc
|
|
${PYSITELIB}/synapse/handlers/register.pyo
|
|
${PYSITELIB}/synapse/handlers/relations.py
|
|
${PYSITELIB}/synapse/handlers/relations.pyc
|
|
${PYSITELIB}/synapse/handlers/relations.pyo
|
|
${PYSITELIB}/synapse/handlers/room.py
|
|
${PYSITELIB}/synapse/handlers/room.pyc
|
|
${PYSITELIB}/synapse/handlers/room.pyo
|
|
${PYSITELIB}/synapse/handlers/room_batch.py
|
|
${PYSITELIB}/synapse/handlers/room_batch.pyc
|
|
${PYSITELIB}/synapse/handlers/room_batch.pyo
|
|
${PYSITELIB}/synapse/handlers/room_list.py
|
|
${PYSITELIB}/synapse/handlers/room_list.pyc
|
|
${PYSITELIB}/synapse/handlers/room_list.pyo
|
|
${PYSITELIB}/synapse/handlers/room_member.py
|
|
${PYSITELIB}/synapse/handlers/room_member.pyc
|
|
${PYSITELIB}/synapse/handlers/room_member.pyo
|
|
${PYSITELIB}/synapse/handlers/room_member_worker.py
|
|
${PYSITELIB}/synapse/handlers/room_member_worker.pyc
|
|
${PYSITELIB}/synapse/handlers/room_member_worker.pyo
|
|
${PYSITELIB}/synapse/handlers/room_summary.py
|
|
${PYSITELIB}/synapse/handlers/room_summary.pyc
|
|
${PYSITELIB}/synapse/handlers/room_summary.pyo
|
|
${PYSITELIB}/synapse/handlers/saml.py
|
|
${PYSITELIB}/synapse/handlers/saml.pyc
|
|
${PYSITELIB}/synapse/handlers/saml.pyo
|
|
${PYSITELIB}/synapse/handlers/search.py
|
|
${PYSITELIB}/synapse/handlers/search.pyc
|
|
${PYSITELIB}/synapse/handlers/search.pyo
|
|
${PYSITELIB}/synapse/handlers/send_email.py
|
|
${PYSITELIB}/synapse/handlers/send_email.pyc
|
|
${PYSITELIB}/synapse/handlers/send_email.pyo
|
|
${PYSITELIB}/synapse/handlers/set_password.py
|
|
${PYSITELIB}/synapse/handlers/set_password.pyc
|
|
${PYSITELIB}/synapse/handlers/set_password.pyo
|
|
${PYSITELIB}/synapse/handlers/sso.py
|
|
${PYSITELIB}/synapse/handlers/sso.pyc
|
|
${PYSITELIB}/synapse/handlers/sso.pyo
|
|
${PYSITELIB}/synapse/handlers/state_deltas.py
|
|
${PYSITELIB}/synapse/handlers/state_deltas.pyc
|
|
${PYSITELIB}/synapse/handlers/state_deltas.pyo
|
|
${PYSITELIB}/synapse/handlers/stats.py
|
|
${PYSITELIB}/synapse/handlers/stats.pyc
|
|
${PYSITELIB}/synapse/handlers/stats.pyo
|
|
${PYSITELIB}/synapse/handlers/sync.py
|
|
${PYSITELIB}/synapse/handlers/sync.pyc
|
|
${PYSITELIB}/synapse/handlers/sync.pyo
|
|
${PYSITELIB}/synapse/handlers/typing.py
|
|
${PYSITELIB}/synapse/handlers/typing.pyc
|
|
${PYSITELIB}/synapse/handlers/typing.pyo
|
|
${PYSITELIB}/synapse/handlers/ui_auth/__init__.py
|
|
${PYSITELIB}/synapse/handlers/ui_auth/__init__.pyc
|
|
${PYSITELIB}/synapse/handlers/ui_auth/__init__.pyo
|
|
${PYSITELIB}/synapse/handlers/ui_auth/checkers.py
|
|
${PYSITELIB}/synapse/handlers/ui_auth/checkers.pyc
|
|
${PYSITELIB}/synapse/handlers/ui_auth/checkers.pyo
|
|
${PYSITELIB}/synapse/handlers/user_directory.py
|
|
${PYSITELIB}/synapse/handlers/user_directory.pyc
|
|
${PYSITELIB}/synapse/handlers/user_directory.pyo
|
|
${PYSITELIB}/synapse/http/__init__.py
|
|
${PYSITELIB}/synapse/http/__init__.pyc
|
|
${PYSITELIB}/synapse/http/__init__.pyo
|
|
${PYSITELIB}/synapse/http/additional_resource.py
|
|
${PYSITELIB}/synapse/http/additional_resource.pyc
|
|
${PYSITELIB}/synapse/http/additional_resource.pyo
|
|
${PYSITELIB}/synapse/http/client.py
|
|
${PYSITELIB}/synapse/http/client.pyc
|
|
${PYSITELIB}/synapse/http/client.pyo
|
|
${PYSITELIB}/synapse/http/connectproxyclient.py
|
|
${PYSITELIB}/synapse/http/connectproxyclient.pyc
|
|
${PYSITELIB}/synapse/http/connectproxyclient.pyo
|
|
${PYSITELIB}/synapse/http/federation/__init__.py
|
|
${PYSITELIB}/synapse/http/federation/__init__.pyc
|
|
${PYSITELIB}/synapse/http/federation/__init__.pyo
|
|
${PYSITELIB}/synapse/http/federation/matrix_federation_agent.py
|
|
${PYSITELIB}/synapse/http/federation/matrix_federation_agent.pyc
|
|
${PYSITELIB}/synapse/http/federation/matrix_federation_agent.pyo
|
|
${PYSITELIB}/synapse/http/federation/srv_resolver.py
|
|
${PYSITELIB}/synapse/http/federation/srv_resolver.pyc
|
|
${PYSITELIB}/synapse/http/federation/srv_resolver.pyo
|
|
${PYSITELIB}/synapse/http/federation/well_known_resolver.py
|
|
${PYSITELIB}/synapse/http/federation/well_known_resolver.pyc
|
|
${PYSITELIB}/synapse/http/federation/well_known_resolver.pyo
|
|
${PYSITELIB}/synapse/http/matrixfederationclient.py
|
|
${PYSITELIB}/synapse/http/matrixfederationclient.pyc
|
|
${PYSITELIB}/synapse/http/matrixfederationclient.pyo
|
|
${PYSITELIB}/synapse/http/proxyagent.py
|
|
${PYSITELIB}/synapse/http/proxyagent.pyc
|
|
${PYSITELIB}/synapse/http/proxyagent.pyo
|
|
${PYSITELIB}/synapse/http/request_metrics.py
|
|
${PYSITELIB}/synapse/http/request_metrics.pyc
|
|
${PYSITELIB}/synapse/http/request_metrics.pyo
|
|
${PYSITELIB}/synapse/http/server.py
|
|
${PYSITELIB}/synapse/http/server.pyc
|
|
${PYSITELIB}/synapse/http/server.pyo
|
|
${PYSITELIB}/synapse/http/servlet.py
|
|
${PYSITELIB}/synapse/http/servlet.pyc
|
|
${PYSITELIB}/synapse/http/servlet.pyo
|
|
${PYSITELIB}/synapse/http/site.py
|
|
${PYSITELIB}/synapse/http/site.pyc
|
|
${PYSITELIB}/synapse/http/site.pyo
|
|
${PYSITELIB}/synapse/logging/__init__.py
|
|
${PYSITELIB}/synapse/logging/__init__.pyc
|
|
${PYSITELIB}/synapse/logging/__init__.pyo
|
|
${PYSITELIB}/synapse/logging/_remote.py
|
|
${PYSITELIB}/synapse/logging/_remote.pyc
|
|
${PYSITELIB}/synapse/logging/_remote.pyo
|
|
${PYSITELIB}/synapse/logging/_terse_json.py
|
|
${PYSITELIB}/synapse/logging/_terse_json.pyc
|
|
${PYSITELIB}/synapse/logging/_terse_json.pyo
|
|
${PYSITELIB}/synapse/logging/context.py
|
|
${PYSITELIB}/synapse/logging/context.pyc
|
|
${PYSITELIB}/synapse/logging/context.pyo
|
|
${PYSITELIB}/synapse/logging/filter.py
|
|
${PYSITELIB}/synapse/logging/filter.pyc
|
|
${PYSITELIB}/synapse/logging/filter.pyo
|
|
${PYSITELIB}/synapse/logging/formatter.py
|
|
${PYSITELIB}/synapse/logging/formatter.pyc
|
|
${PYSITELIB}/synapse/logging/formatter.pyo
|
|
${PYSITELIB}/synapse/logging/handlers.py
|
|
${PYSITELIB}/synapse/logging/handlers.pyc
|
|
${PYSITELIB}/synapse/logging/handlers.pyo
|
|
${PYSITELIB}/synapse/logging/opentracing.py
|
|
${PYSITELIB}/synapse/logging/opentracing.pyc
|
|
${PYSITELIB}/synapse/logging/opentracing.pyo
|
|
${PYSITELIB}/synapse/logging/scopecontextmanager.py
|
|
${PYSITELIB}/synapse/logging/scopecontextmanager.pyc
|
|
${PYSITELIB}/synapse/logging/scopecontextmanager.pyo
|
|
${PYSITELIB}/synapse/metrics/__init__.py
|
|
${PYSITELIB}/synapse/metrics/__init__.pyc
|
|
${PYSITELIB}/synapse/metrics/__init__.pyo
|
|
${PYSITELIB}/synapse/metrics/_exposition.py
|
|
${PYSITELIB}/synapse/metrics/_exposition.pyc
|
|
${PYSITELIB}/synapse/metrics/_exposition.pyo
|
|
${PYSITELIB}/synapse/metrics/_gc.py
|
|
${PYSITELIB}/synapse/metrics/_gc.pyc
|
|
${PYSITELIB}/synapse/metrics/_gc.pyo
|
|
${PYSITELIB}/synapse/metrics/_reactor_metrics.py
|
|
${PYSITELIB}/synapse/metrics/_reactor_metrics.pyc
|
|
${PYSITELIB}/synapse/metrics/_reactor_metrics.pyo
|
|
${PYSITELIB}/synapse/metrics/background_process_metrics.py
|
|
${PYSITELIB}/synapse/metrics/background_process_metrics.pyc
|
|
${PYSITELIB}/synapse/metrics/background_process_metrics.pyo
|
|
${PYSITELIB}/synapse/metrics/jemalloc.py
|
|
${PYSITELIB}/synapse/metrics/jemalloc.pyc
|
|
${PYSITELIB}/synapse/metrics/jemalloc.pyo
|
|
${PYSITELIB}/synapse/module_api/__init__.py
|
|
${PYSITELIB}/synapse/module_api/__init__.pyc
|
|
${PYSITELIB}/synapse/module_api/__init__.pyo
|
|
${PYSITELIB}/synapse/module_api/errors.py
|
|
${PYSITELIB}/synapse/module_api/errors.pyc
|
|
${PYSITELIB}/synapse/module_api/errors.pyo
|
|
${PYSITELIB}/synapse/notifier.py
|
|
${PYSITELIB}/synapse/notifier.pyc
|
|
${PYSITELIB}/synapse/notifier.pyo
|
|
${PYSITELIB}/synapse/push/__init__.py
|
|
${PYSITELIB}/synapse/push/__init__.pyc
|
|
${PYSITELIB}/synapse/push/__init__.pyo
|
|
${PYSITELIB}/synapse/push/action_generator.py
|
|
${PYSITELIB}/synapse/push/action_generator.pyc
|
|
${PYSITELIB}/synapse/push/action_generator.pyo
|
|
${PYSITELIB}/synapse/push/baserules.py
|
|
${PYSITELIB}/synapse/push/baserules.pyc
|
|
${PYSITELIB}/synapse/push/baserules.pyo
|
|
${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.py
|
|
${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.pyc
|
|
${PYSITELIB}/synapse/push/bulk_push_rule_evaluator.pyo
|
|
${PYSITELIB}/synapse/push/clientformat.py
|
|
${PYSITELIB}/synapse/push/clientformat.pyc
|
|
${PYSITELIB}/synapse/push/clientformat.pyo
|
|
${PYSITELIB}/synapse/push/emailpusher.py
|
|
${PYSITELIB}/synapse/push/emailpusher.pyc
|
|
${PYSITELIB}/synapse/push/emailpusher.pyo
|
|
${PYSITELIB}/synapse/push/httppusher.py
|
|
${PYSITELIB}/synapse/push/httppusher.pyc
|
|
${PYSITELIB}/synapse/push/httppusher.pyo
|
|
${PYSITELIB}/synapse/push/mailer.py
|
|
${PYSITELIB}/synapse/push/mailer.pyc
|
|
${PYSITELIB}/synapse/push/mailer.pyo
|
|
${PYSITELIB}/synapse/push/presentable_names.py
|
|
${PYSITELIB}/synapse/push/presentable_names.pyc
|
|
${PYSITELIB}/synapse/push/presentable_names.pyo
|
|
${PYSITELIB}/synapse/push/push_rule_evaluator.py
|
|
${PYSITELIB}/synapse/push/push_rule_evaluator.pyc
|
|
${PYSITELIB}/synapse/push/push_rule_evaluator.pyo
|
|
${PYSITELIB}/synapse/push/push_tools.py
|
|
${PYSITELIB}/synapse/push/push_tools.pyc
|
|
${PYSITELIB}/synapse/push/push_tools.pyo
|
|
${PYSITELIB}/synapse/push/push_types.py
|
|
${PYSITELIB}/synapse/push/push_types.pyc
|
|
${PYSITELIB}/synapse/push/push_types.pyo
|
|
${PYSITELIB}/synapse/push/pusher.py
|
|
${PYSITELIB}/synapse/push/pusher.pyc
|
|
${PYSITELIB}/synapse/push/pusher.pyo
|
|
${PYSITELIB}/synapse/push/pusherpool.py
|
|
${PYSITELIB}/synapse/push/pusherpool.pyc
|
|
${PYSITELIB}/synapse/push/pusherpool.pyo
|
|
${PYSITELIB}/synapse/push/rulekinds.py
|
|
${PYSITELIB}/synapse/push/rulekinds.pyc
|
|
${PYSITELIB}/synapse/push/rulekinds.pyo
|
|
${PYSITELIB}/synapse/py.typed
|
|
${PYSITELIB}/synapse/python_dependencies.py
|
|
${PYSITELIB}/synapse/python_dependencies.pyc
|
|
${PYSITELIB}/synapse/python_dependencies.pyo
|
|
${PYSITELIB}/synapse/replication/__init__.py
|
|
${PYSITELIB}/synapse/replication/__init__.pyc
|
|
${PYSITELIB}/synapse/replication/__init__.pyo
|
|
${PYSITELIB}/synapse/replication/http/__init__.py
|
|
${PYSITELIB}/synapse/replication/http/__init__.pyc
|
|
${PYSITELIB}/synapse/replication/http/__init__.pyo
|
|
${PYSITELIB}/synapse/replication/http/_base.py
|
|
${PYSITELIB}/synapse/replication/http/_base.pyc
|
|
${PYSITELIB}/synapse/replication/http/_base.pyo
|
|
${PYSITELIB}/synapse/replication/http/account_data.py
|
|
${PYSITELIB}/synapse/replication/http/account_data.pyc
|
|
${PYSITELIB}/synapse/replication/http/account_data.pyo
|
|
${PYSITELIB}/synapse/replication/http/devices.py
|
|
${PYSITELIB}/synapse/replication/http/devices.pyc
|
|
${PYSITELIB}/synapse/replication/http/devices.pyo
|
|
${PYSITELIB}/synapse/replication/http/federation.py
|
|
${PYSITELIB}/synapse/replication/http/federation.pyc
|
|
${PYSITELIB}/synapse/replication/http/federation.pyo
|
|
${PYSITELIB}/synapse/replication/http/login.py
|
|
${PYSITELIB}/synapse/replication/http/login.pyc
|
|
${PYSITELIB}/synapse/replication/http/login.pyo
|
|
${PYSITELIB}/synapse/replication/http/membership.py
|
|
${PYSITELIB}/synapse/replication/http/membership.pyc
|
|
${PYSITELIB}/synapse/replication/http/membership.pyo
|
|
${PYSITELIB}/synapse/replication/http/presence.py
|
|
${PYSITELIB}/synapse/replication/http/presence.pyc
|
|
${PYSITELIB}/synapse/replication/http/presence.pyo
|
|
${PYSITELIB}/synapse/replication/http/push.py
|
|
${PYSITELIB}/synapse/replication/http/push.pyc
|
|
${PYSITELIB}/synapse/replication/http/push.pyo
|
|
${PYSITELIB}/synapse/replication/http/register.py
|
|
${PYSITELIB}/synapse/replication/http/register.pyc
|
|
${PYSITELIB}/synapse/replication/http/register.pyo
|
|
${PYSITELIB}/synapse/replication/http/send_event.py
|
|
${PYSITELIB}/synapse/replication/http/send_event.pyc
|
|
${PYSITELIB}/synapse/replication/http/send_event.pyo
|
|
${PYSITELIB}/synapse/replication/http/streams.py
|
|
${PYSITELIB}/synapse/replication/http/streams.pyc
|
|
${PYSITELIB}/synapse/replication/http/streams.pyo
|
|
${PYSITELIB}/synapse/replication/slave/__init__.py
|
|
${PYSITELIB}/synapse/replication/slave/__init__.pyc
|
|
${PYSITELIB}/synapse/replication/slave/__init__.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/__init__.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/__init__.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/__init__.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/_base.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/_base.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/_base.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/_slaved_id_tracker.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/account_data.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/account_data.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/account_data.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/appservice.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/appservice.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/appservice.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/client_ips.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/client_ips.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/client_ips.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/deviceinbox.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/devices.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/devices.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/devices.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/directory.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/directory.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/directory.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/events.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/events.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/events.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/filtering.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/filtering.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/filtering.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/groups.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/groups.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/groups.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/keys.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/keys.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/keys.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/profile.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/profile.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/profile.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/push_rule.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/push_rule.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/push_rule.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/pushers.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/pushers.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/pushers.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/receipts.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/receipts.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/receipts.pyo
|
|
${PYSITELIB}/synapse/replication/slave/storage/registration.py
|
|
${PYSITELIB}/synapse/replication/slave/storage/registration.pyc
|
|
${PYSITELIB}/synapse/replication/slave/storage/registration.pyo
|
|
${PYSITELIB}/synapse/replication/tcp/__init__.py
|
|
${PYSITELIB}/synapse/replication/tcp/__init__.pyc
|
|
${PYSITELIB}/synapse/replication/tcp/__init__.pyo
|
|
${PYSITELIB}/synapse/replication/tcp/client.py
|
|
${PYSITELIB}/synapse/replication/tcp/client.pyc
|
|
${PYSITELIB}/synapse/replication/tcp/client.pyo
|
|
${PYSITELIB}/synapse/replication/tcp/commands.py
|
|
${PYSITELIB}/synapse/replication/tcp/commands.pyc
|
|
${PYSITELIB}/synapse/replication/tcp/commands.pyo
|
|
${PYSITELIB}/synapse/replication/tcp/external_cache.py
|
|
${PYSITELIB}/synapse/replication/tcp/external_cache.pyc
|
|
${PYSITELIB}/synapse/replication/tcp/external_cache.pyo
|
|
${PYSITELIB}/synapse/replication/tcp/handler.py
|
|
${PYSITELIB}/synapse/replication/tcp/handler.pyc
|
|
${PYSITELIB}/synapse/replication/tcp/handler.pyo
|
|
${PYSITELIB}/synapse/replication/tcp/protocol.py
|
|
${PYSITELIB}/synapse/replication/tcp/protocol.pyc
|
|
${PYSITELIB}/synapse/replication/tcp/protocol.pyo
|
|
${PYSITELIB}/synapse/replication/tcp/redis.py
|
|
${PYSITELIB}/synapse/replication/tcp/redis.pyc
|
|
${PYSITELIB}/synapse/replication/tcp/redis.pyo
|
|
${PYSITELIB}/synapse/replication/tcp/resource.py
|
|
${PYSITELIB}/synapse/replication/tcp/resource.pyc
|
|
${PYSITELIB}/synapse/replication/tcp/resource.pyo
|
|
${PYSITELIB}/synapse/replication/tcp/streams/__init__.py
|
|
${PYSITELIB}/synapse/replication/tcp/streams/__init__.pyc
|
|
${PYSITELIB}/synapse/replication/tcp/streams/__init__.pyo
|
|
${PYSITELIB}/synapse/replication/tcp/streams/_base.py
|
|
${PYSITELIB}/synapse/replication/tcp/streams/_base.pyc
|
|
${PYSITELIB}/synapse/replication/tcp/streams/_base.pyo
|
|
${PYSITELIB}/synapse/replication/tcp/streams/events.py
|
|
${PYSITELIB}/synapse/replication/tcp/streams/events.pyc
|
|
${PYSITELIB}/synapse/replication/tcp/streams/events.pyo
|
|
${PYSITELIB}/synapse/replication/tcp/streams/federation.py
|
|
${PYSITELIB}/synapse/replication/tcp/streams/federation.pyc
|
|
${PYSITELIB}/synapse/replication/tcp/streams/federation.pyo
|
|
${PYSITELIB}/synapse/res/providers.json
|
|
${PYSITELIB}/synapse/res/templates/account_previously_renewed.html
|
|
${PYSITELIB}/synapse/res/templates/account_renewed.html
|
|
${PYSITELIB}/synapse/res/templates/add_threepid.html
|
|
${PYSITELIB}/synapse/res/templates/add_threepid.txt
|
|
${PYSITELIB}/synapse/res/templates/add_threepid_failure.html
|
|
${PYSITELIB}/synapse/res/templates/add_threepid_success.html
|
|
${PYSITELIB}/synapse/res/templates/auth_success.html
|
|
${PYSITELIB}/synapse/res/templates/invalid_token.html
|
|
${PYSITELIB}/synapse/res/templates/mail-Element.css
|
|
${PYSITELIB}/synapse/res/templates/mail-Vector.css
|
|
${PYSITELIB}/synapse/res/templates/mail-expiry.css
|
|
${PYSITELIB}/synapse/res/templates/mail.css
|
|
${PYSITELIB}/synapse/res/templates/notice_expiry.html
|
|
${PYSITELIB}/synapse/res/templates/notice_expiry.txt
|
|
${PYSITELIB}/synapse/res/templates/notif.html
|
|
${PYSITELIB}/synapse/res/templates/notif.txt
|
|
${PYSITELIB}/synapse/res/templates/notif_mail.html
|
|
${PYSITELIB}/synapse/res/templates/notif_mail.txt
|
|
${PYSITELIB}/synapse/res/templates/password_reset.html
|
|
${PYSITELIB}/synapse/res/templates/password_reset.txt
|
|
${PYSITELIB}/synapse/res/templates/password_reset_confirmation.html
|
|
${PYSITELIB}/synapse/res/templates/password_reset_failure.html
|
|
${PYSITELIB}/synapse/res/templates/password_reset_success.html
|
|
${PYSITELIB}/synapse/res/templates/recaptcha.html
|
|
${PYSITELIB}/synapse/res/templates/registration.html
|
|
${PYSITELIB}/synapse/res/templates/registration.txt
|
|
${PYSITELIB}/synapse/res/templates/registration_failure.html
|
|
${PYSITELIB}/synapse/res/templates/registration_success.html
|
|
${PYSITELIB}/synapse/res/templates/registration_token.html
|
|
${PYSITELIB}/synapse/res/templates/room.html
|
|
${PYSITELIB}/synapse/res/templates/room.txt
|
|
${PYSITELIB}/synapse/res/templates/sso.css
|
|
${PYSITELIB}/synapse/res/templates/sso_account_deactivated.html
|
|
${PYSITELIB}/synapse/res/templates/sso_auth_account_details.html
|
|
${PYSITELIB}/synapse/res/templates/sso_auth_account_details.js
|
|
${PYSITELIB}/synapse/res/templates/sso_auth_bad_user.html
|
|
${PYSITELIB}/synapse/res/templates/sso_auth_confirm.html
|
|
${PYSITELIB}/synapse/res/templates/sso_auth_success.html
|
|
${PYSITELIB}/synapse/res/templates/sso_error.html
|
|
${PYSITELIB}/synapse/res/templates/sso_footer.html
|
|
${PYSITELIB}/synapse/res/templates/sso_login_idp_picker.html
|
|
${PYSITELIB}/synapse/res/templates/sso_new_user_consent.html
|
|
${PYSITELIB}/synapse/res/templates/sso_partial_profile.html
|
|
${PYSITELIB}/synapse/res/templates/sso_redirect_confirm.html
|
|
${PYSITELIB}/synapse/res/templates/terms.html
|
|
${PYSITELIB}/synapse/rest/__init__.py
|
|
${PYSITELIB}/synapse/rest/__init__.pyc
|
|
${PYSITELIB}/synapse/rest/__init__.pyo
|
|
${PYSITELIB}/synapse/rest/admin/__init__.py
|
|
${PYSITELIB}/synapse/rest/admin/__init__.pyc
|
|
${PYSITELIB}/synapse/rest/admin/__init__.pyo
|
|
${PYSITELIB}/synapse/rest/admin/_base.py
|
|
${PYSITELIB}/synapse/rest/admin/_base.pyc
|
|
${PYSITELIB}/synapse/rest/admin/_base.pyo
|
|
${PYSITELIB}/synapse/rest/admin/background_updates.py
|
|
${PYSITELIB}/synapse/rest/admin/background_updates.pyc
|
|
${PYSITELIB}/synapse/rest/admin/background_updates.pyo
|
|
${PYSITELIB}/synapse/rest/admin/devices.py
|
|
${PYSITELIB}/synapse/rest/admin/devices.pyc
|
|
${PYSITELIB}/synapse/rest/admin/devices.pyo
|
|
${PYSITELIB}/synapse/rest/admin/event_reports.py
|
|
${PYSITELIB}/synapse/rest/admin/event_reports.pyc
|
|
${PYSITELIB}/synapse/rest/admin/event_reports.pyo
|
|
${PYSITELIB}/synapse/rest/admin/federation.py
|
|
${PYSITELIB}/synapse/rest/admin/federation.pyc
|
|
${PYSITELIB}/synapse/rest/admin/federation.pyo
|
|
${PYSITELIB}/synapse/rest/admin/groups.py
|
|
${PYSITELIB}/synapse/rest/admin/groups.pyc
|
|
${PYSITELIB}/synapse/rest/admin/groups.pyo
|
|
${PYSITELIB}/synapse/rest/admin/media.py
|
|
${PYSITELIB}/synapse/rest/admin/media.pyc
|
|
${PYSITELIB}/synapse/rest/admin/media.pyo
|
|
${PYSITELIB}/synapse/rest/admin/registration_tokens.py
|
|
${PYSITELIB}/synapse/rest/admin/registration_tokens.pyc
|
|
${PYSITELIB}/synapse/rest/admin/registration_tokens.pyo
|
|
${PYSITELIB}/synapse/rest/admin/rooms.py
|
|
${PYSITELIB}/synapse/rest/admin/rooms.pyc
|
|
${PYSITELIB}/synapse/rest/admin/rooms.pyo
|
|
${PYSITELIB}/synapse/rest/admin/server_notice_servlet.py
|
|
${PYSITELIB}/synapse/rest/admin/server_notice_servlet.pyc
|
|
${PYSITELIB}/synapse/rest/admin/server_notice_servlet.pyo
|
|
${PYSITELIB}/synapse/rest/admin/statistics.py
|
|
${PYSITELIB}/synapse/rest/admin/statistics.pyc
|
|
${PYSITELIB}/synapse/rest/admin/statistics.pyo
|
|
${PYSITELIB}/synapse/rest/admin/username_available.py
|
|
${PYSITELIB}/synapse/rest/admin/username_available.pyc
|
|
${PYSITELIB}/synapse/rest/admin/username_available.pyo
|
|
${PYSITELIB}/synapse/rest/admin/users.py
|
|
${PYSITELIB}/synapse/rest/admin/users.pyc
|
|
${PYSITELIB}/synapse/rest/admin/users.pyo
|
|
${PYSITELIB}/synapse/rest/client/__init__.py
|
|
${PYSITELIB}/synapse/rest/client/__init__.pyc
|
|
${PYSITELIB}/synapse/rest/client/__init__.pyo
|
|
${PYSITELIB}/synapse/rest/client/_base.py
|
|
${PYSITELIB}/synapse/rest/client/_base.pyc
|
|
${PYSITELIB}/synapse/rest/client/_base.pyo
|
|
${PYSITELIB}/synapse/rest/client/account.py
|
|
${PYSITELIB}/synapse/rest/client/account.pyc
|
|
${PYSITELIB}/synapse/rest/client/account.pyo
|
|
${PYSITELIB}/synapse/rest/client/account_data.py
|
|
${PYSITELIB}/synapse/rest/client/account_data.pyc
|
|
${PYSITELIB}/synapse/rest/client/account_data.pyo
|
|
${PYSITELIB}/synapse/rest/client/account_validity.py
|
|
${PYSITELIB}/synapse/rest/client/account_validity.pyc
|
|
${PYSITELIB}/synapse/rest/client/account_validity.pyo
|
|
${PYSITELIB}/synapse/rest/client/auth.py
|
|
${PYSITELIB}/synapse/rest/client/auth.pyc
|
|
${PYSITELIB}/synapse/rest/client/auth.pyo
|
|
${PYSITELIB}/synapse/rest/client/capabilities.py
|
|
${PYSITELIB}/synapse/rest/client/capabilities.pyc
|
|
${PYSITELIB}/synapse/rest/client/capabilities.pyo
|
|
${PYSITELIB}/synapse/rest/client/devices.py
|
|
${PYSITELIB}/synapse/rest/client/devices.pyc
|
|
${PYSITELIB}/synapse/rest/client/devices.pyo
|
|
${PYSITELIB}/synapse/rest/client/directory.py
|
|
${PYSITELIB}/synapse/rest/client/directory.pyc
|
|
${PYSITELIB}/synapse/rest/client/directory.pyo
|
|
${PYSITELIB}/synapse/rest/client/events.py
|
|
${PYSITELIB}/synapse/rest/client/events.pyc
|
|
${PYSITELIB}/synapse/rest/client/events.pyo
|
|
${PYSITELIB}/synapse/rest/client/filter.py
|
|
${PYSITELIB}/synapse/rest/client/filter.pyc
|
|
${PYSITELIB}/synapse/rest/client/filter.pyo
|
|
${PYSITELIB}/synapse/rest/client/groups.py
|
|
${PYSITELIB}/synapse/rest/client/groups.pyc
|
|
${PYSITELIB}/synapse/rest/client/groups.pyo
|
|
${PYSITELIB}/synapse/rest/client/initial_sync.py
|
|
${PYSITELIB}/synapse/rest/client/initial_sync.pyc
|
|
${PYSITELIB}/synapse/rest/client/initial_sync.pyo
|
|
${PYSITELIB}/synapse/rest/client/keys.py
|
|
${PYSITELIB}/synapse/rest/client/keys.pyc
|
|
${PYSITELIB}/synapse/rest/client/keys.pyo
|
|
${PYSITELIB}/synapse/rest/client/knock.py
|
|
${PYSITELIB}/synapse/rest/client/knock.pyc
|
|
${PYSITELIB}/synapse/rest/client/knock.pyo
|
|
${PYSITELIB}/synapse/rest/client/login.py
|
|
${PYSITELIB}/synapse/rest/client/login.pyc
|
|
${PYSITELIB}/synapse/rest/client/login.pyo
|
|
${PYSITELIB}/synapse/rest/client/logout.py
|
|
${PYSITELIB}/synapse/rest/client/logout.pyc
|
|
${PYSITELIB}/synapse/rest/client/logout.pyo
|
|
${PYSITELIB}/synapse/rest/client/mutual_rooms.py
|
|
${PYSITELIB}/synapse/rest/client/mutual_rooms.pyc
|
|
${PYSITELIB}/synapse/rest/client/mutual_rooms.pyo
|
|
${PYSITELIB}/synapse/rest/client/notifications.py
|
|
${PYSITELIB}/synapse/rest/client/notifications.pyc
|
|
${PYSITELIB}/synapse/rest/client/notifications.pyo
|
|
${PYSITELIB}/synapse/rest/client/openid.py
|
|
${PYSITELIB}/synapse/rest/client/openid.pyc
|
|
${PYSITELIB}/synapse/rest/client/openid.pyo
|
|
${PYSITELIB}/synapse/rest/client/password_policy.py
|
|
${PYSITELIB}/synapse/rest/client/password_policy.pyc
|
|
${PYSITELIB}/synapse/rest/client/password_policy.pyo
|
|
${PYSITELIB}/synapse/rest/client/presence.py
|
|
${PYSITELIB}/synapse/rest/client/presence.pyc
|
|
${PYSITELIB}/synapse/rest/client/presence.pyo
|
|
${PYSITELIB}/synapse/rest/client/profile.py
|
|
${PYSITELIB}/synapse/rest/client/profile.pyc
|
|
${PYSITELIB}/synapse/rest/client/profile.pyo
|
|
${PYSITELIB}/synapse/rest/client/push_rule.py
|
|
${PYSITELIB}/synapse/rest/client/push_rule.pyc
|
|
${PYSITELIB}/synapse/rest/client/push_rule.pyo
|
|
${PYSITELIB}/synapse/rest/client/pusher.py
|
|
${PYSITELIB}/synapse/rest/client/pusher.pyc
|
|
${PYSITELIB}/synapse/rest/client/pusher.pyo
|
|
${PYSITELIB}/synapse/rest/client/read_marker.py
|
|
${PYSITELIB}/synapse/rest/client/read_marker.pyc
|
|
${PYSITELIB}/synapse/rest/client/read_marker.pyo
|
|
${PYSITELIB}/synapse/rest/client/receipts.py
|
|
${PYSITELIB}/synapse/rest/client/receipts.pyc
|
|
${PYSITELIB}/synapse/rest/client/receipts.pyo
|
|
${PYSITELIB}/synapse/rest/client/register.py
|
|
${PYSITELIB}/synapse/rest/client/register.pyc
|
|
${PYSITELIB}/synapse/rest/client/register.pyo
|
|
${PYSITELIB}/synapse/rest/client/relations.py
|
|
${PYSITELIB}/synapse/rest/client/relations.pyc
|
|
${PYSITELIB}/synapse/rest/client/relations.pyo
|
|
${PYSITELIB}/synapse/rest/client/report_event.py
|
|
${PYSITELIB}/synapse/rest/client/report_event.pyc
|
|
${PYSITELIB}/synapse/rest/client/report_event.pyo
|
|
${PYSITELIB}/synapse/rest/client/room.py
|
|
${PYSITELIB}/synapse/rest/client/room.pyc
|
|
${PYSITELIB}/synapse/rest/client/room.pyo
|
|
${PYSITELIB}/synapse/rest/client/room_batch.py
|
|
${PYSITELIB}/synapse/rest/client/room_batch.pyc
|
|
${PYSITELIB}/synapse/rest/client/room_batch.pyo
|
|
${PYSITELIB}/synapse/rest/client/room_keys.py
|
|
${PYSITELIB}/synapse/rest/client/room_keys.pyc
|
|
${PYSITELIB}/synapse/rest/client/room_keys.pyo
|
|
${PYSITELIB}/synapse/rest/client/room_upgrade_rest_servlet.py
|
|
${PYSITELIB}/synapse/rest/client/room_upgrade_rest_servlet.pyc
|
|
${PYSITELIB}/synapse/rest/client/room_upgrade_rest_servlet.pyo
|
|
${PYSITELIB}/synapse/rest/client/sendtodevice.py
|
|
${PYSITELIB}/synapse/rest/client/sendtodevice.pyc
|
|
${PYSITELIB}/synapse/rest/client/sendtodevice.pyo
|
|
${PYSITELIB}/synapse/rest/client/sync.py
|
|
${PYSITELIB}/synapse/rest/client/sync.pyc
|
|
${PYSITELIB}/synapse/rest/client/sync.pyo
|
|
${PYSITELIB}/synapse/rest/client/tags.py
|
|
${PYSITELIB}/synapse/rest/client/tags.pyc
|
|
${PYSITELIB}/synapse/rest/client/tags.pyo
|
|
${PYSITELIB}/synapse/rest/client/thirdparty.py
|
|
${PYSITELIB}/synapse/rest/client/thirdparty.pyc
|
|
${PYSITELIB}/synapse/rest/client/thirdparty.pyo
|
|
${PYSITELIB}/synapse/rest/client/tokenrefresh.py
|
|
${PYSITELIB}/synapse/rest/client/tokenrefresh.pyc
|
|
${PYSITELIB}/synapse/rest/client/tokenrefresh.pyo
|
|
${PYSITELIB}/synapse/rest/client/transactions.py
|
|
${PYSITELIB}/synapse/rest/client/transactions.pyc
|
|
${PYSITELIB}/synapse/rest/client/transactions.pyo
|
|
${PYSITELIB}/synapse/rest/client/user_directory.py
|
|
${PYSITELIB}/synapse/rest/client/user_directory.pyc
|
|
${PYSITELIB}/synapse/rest/client/user_directory.pyo
|
|
${PYSITELIB}/synapse/rest/client/versions.py
|
|
${PYSITELIB}/synapse/rest/client/versions.pyc
|
|
${PYSITELIB}/synapse/rest/client/versions.pyo
|
|
${PYSITELIB}/synapse/rest/client/voip.py
|
|
${PYSITELIB}/synapse/rest/client/voip.pyc
|
|
${PYSITELIB}/synapse/rest/client/voip.pyo
|
|
${PYSITELIB}/synapse/rest/consent/__init__.py
|
|
${PYSITELIB}/synapse/rest/consent/__init__.pyc
|
|
${PYSITELIB}/synapse/rest/consent/__init__.pyo
|
|
${PYSITELIB}/synapse/rest/consent/consent_resource.py
|
|
${PYSITELIB}/synapse/rest/consent/consent_resource.pyc
|
|
${PYSITELIB}/synapse/rest/consent/consent_resource.pyo
|
|
${PYSITELIB}/synapse/rest/health.py
|
|
${PYSITELIB}/synapse/rest/health.pyc
|
|
${PYSITELIB}/synapse/rest/health.pyo
|
|
${PYSITELIB}/synapse/rest/key/__init__.py
|
|
${PYSITELIB}/synapse/rest/key/__init__.pyc
|
|
${PYSITELIB}/synapse/rest/key/__init__.pyo
|
|
${PYSITELIB}/synapse/rest/key/v2/__init__.py
|
|
${PYSITELIB}/synapse/rest/key/v2/__init__.pyc
|
|
${PYSITELIB}/synapse/rest/key/v2/__init__.pyo
|
|
${PYSITELIB}/synapse/rest/key/v2/local_key_resource.py
|
|
${PYSITELIB}/synapse/rest/key/v2/local_key_resource.pyc
|
|
${PYSITELIB}/synapse/rest/key/v2/local_key_resource.pyo
|
|
${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.py
|
|
${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.pyc
|
|
${PYSITELIB}/synapse/rest/key/v2/remote_key_resource.pyo
|
|
${PYSITELIB}/synapse/rest/media/__init__.py
|
|
${PYSITELIB}/synapse/rest/media/__init__.pyc
|
|
${PYSITELIB}/synapse/rest/media/__init__.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/__init__.py
|
|
${PYSITELIB}/synapse/rest/media/v1/__init__.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/__init__.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/_base.py
|
|
${PYSITELIB}/synapse/rest/media/v1/_base.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/_base.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/config_resource.py
|
|
${PYSITELIB}/synapse/rest/media/v1/config_resource.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/config_resource.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/download_resource.py
|
|
${PYSITELIB}/synapse/rest/media/v1/download_resource.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/download_resource.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/filepath.py
|
|
${PYSITELIB}/synapse/rest/media/v1/filepath.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/filepath.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/media_repository.py
|
|
${PYSITELIB}/synapse/rest/media/v1/media_repository.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/media_repository.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/media_storage.py
|
|
${PYSITELIB}/synapse/rest/media/v1/media_storage.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/media_storage.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/oembed.py
|
|
${PYSITELIB}/synapse/rest/media/v1/oembed.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/oembed.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/preview_html.py
|
|
${PYSITELIB}/synapse/rest/media/v1/preview_html.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/preview_html.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.py
|
|
${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/preview_url_resource.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/storage_provider.py
|
|
${PYSITELIB}/synapse/rest/media/v1/storage_provider.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/storage_provider.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.py
|
|
${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/thumbnail_resource.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/thumbnailer.py
|
|
${PYSITELIB}/synapse/rest/media/v1/thumbnailer.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/thumbnailer.pyo
|
|
${PYSITELIB}/synapse/rest/media/v1/upload_resource.py
|
|
${PYSITELIB}/synapse/rest/media/v1/upload_resource.pyc
|
|
${PYSITELIB}/synapse/rest/media/v1/upload_resource.pyo
|
|
${PYSITELIB}/synapse/rest/synapse/__init__.py
|
|
${PYSITELIB}/synapse/rest/synapse/__init__.pyc
|
|
${PYSITELIB}/synapse/rest/synapse/__init__.pyo
|
|
${PYSITELIB}/synapse/rest/synapse/client/__init__.py
|
|
${PYSITELIB}/synapse/rest/synapse/client/__init__.pyc
|
|
${PYSITELIB}/synapse/rest/synapse/client/__init__.pyo
|
|
${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.py
|
|
${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.pyc
|
|
${PYSITELIB}/synapse/rest/synapse/client/new_user_consent.pyo
|
|
${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.py
|
|
${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.pyc
|
|
${PYSITELIB}/synapse/rest/synapse/client/oidc/__init__.pyo
|
|
${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.py
|
|
${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.pyc
|
|
${PYSITELIB}/synapse/rest/synapse/client/oidc/callback_resource.pyo
|
|
${PYSITELIB}/synapse/rest/synapse/client/password_reset.py
|
|
${PYSITELIB}/synapse/rest/synapse/client/password_reset.pyc
|
|
${PYSITELIB}/synapse/rest/synapse/client/password_reset.pyo
|
|
${PYSITELIB}/synapse/rest/synapse/client/pick_idp.py
|
|
${PYSITELIB}/synapse/rest/synapse/client/pick_idp.pyc
|
|
${PYSITELIB}/synapse/rest/synapse/client/pick_idp.pyo
|
|
${PYSITELIB}/synapse/rest/synapse/client/pick_username.py
|
|
${PYSITELIB}/synapse/rest/synapse/client/pick_username.pyc
|
|
${PYSITELIB}/synapse/rest/synapse/client/pick_username.pyo
|
|
${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.py
|
|
${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.pyc
|
|
${PYSITELIB}/synapse/rest/synapse/client/saml2/__init__.pyo
|
|
${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.py
|
|
${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.pyc
|
|
${PYSITELIB}/synapse/rest/synapse/client/saml2/metadata_resource.pyo
|
|
${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.py
|
|
${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.pyc
|
|
${PYSITELIB}/synapse/rest/synapse/client/saml2/response_resource.pyo
|
|
${PYSITELIB}/synapse/rest/synapse/client/sso_register.py
|
|
${PYSITELIB}/synapse/rest/synapse/client/sso_register.pyc
|
|
${PYSITELIB}/synapse/rest/synapse/client/sso_register.pyo
|
|
${PYSITELIB}/synapse/rest/well_known.py
|
|
${PYSITELIB}/synapse/rest/well_known.pyc
|
|
${PYSITELIB}/synapse/rest/well_known.pyo
|
|
${PYSITELIB}/synapse/server.py
|
|
${PYSITELIB}/synapse/server.pyc
|
|
${PYSITELIB}/synapse/server.pyo
|
|
${PYSITELIB}/synapse/server_notices/__init__.py
|
|
${PYSITELIB}/synapse/server_notices/__init__.pyc
|
|
${PYSITELIB}/synapse/server_notices/__init__.pyo
|
|
${PYSITELIB}/synapse/server_notices/consent_server_notices.py
|
|
${PYSITELIB}/synapse/server_notices/consent_server_notices.pyc
|
|
${PYSITELIB}/synapse/server_notices/consent_server_notices.pyo
|
|
${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.py
|
|
${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.pyc
|
|
${PYSITELIB}/synapse/server_notices/resource_limits_server_notices.pyo
|
|
${PYSITELIB}/synapse/server_notices/server_notices_manager.py
|
|
${PYSITELIB}/synapse/server_notices/server_notices_manager.pyc
|
|
${PYSITELIB}/synapse/server_notices/server_notices_manager.pyo
|
|
${PYSITELIB}/synapse/server_notices/server_notices_sender.py
|
|
${PYSITELIB}/synapse/server_notices/server_notices_sender.pyc
|
|
${PYSITELIB}/synapse/server_notices/server_notices_sender.pyo
|
|
${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.py
|
|
${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.pyc
|
|
${PYSITELIB}/synapse/server_notices/worker_server_notices_sender.pyo
|
|
${PYSITELIB}/synapse/spam_checker_api/__init__.py
|
|
${PYSITELIB}/synapse/spam_checker_api/__init__.pyc
|
|
${PYSITELIB}/synapse/spam_checker_api/__init__.pyo
|
|
${PYSITELIB}/synapse/state/__init__.py
|
|
${PYSITELIB}/synapse/state/__init__.pyc
|
|
${PYSITELIB}/synapse/state/__init__.pyo
|
|
${PYSITELIB}/synapse/state/v1.py
|
|
${PYSITELIB}/synapse/state/v1.pyc
|
|
${PYSITELIB}/synapse/state/v1.pyo
|
|
${PYSITELIB}/synapse/state/v2.py
|
|
${PYSITELIB}/synapse/state/v2.pyc
|
|
${PYSITELIB}/synapse/state/v2.pyo
|
|
${PYSITELIB}/synapse/static/client/login/index.html
|
|
${PYSITELIB}/synapse/static/client/login/js/jquery-3.4.1.min.js
|
|
${PYSITELIB}/synapse/static/client/login/js/login.js
|
|
${PYSITELIB}/synapse/static/client/login/spinner.gif
|
|
${PYSITELIB}/synapse/static/client/login/style.css
|
|
${PYSITELIB}/synapse/static/client/register/index.html
|
|
${PYSITELIB}/synapse/static/client/register/js/jquery-3.4.1.min.js
|
|
${PYSITELIB}/synapse/static/client/register/js/register.js
|
|
${PYSITELIB}/synapse/static/client/register/register_config.sample.js
|
|
${PYSITELIB}/synapse/static/client/register/style.css
|
|
${PYSITELIB}/synapse/static/index.html
|
|
${PYSITELIB}/synapse/storage/__init__.py
|
|
${PYSITELIB}/synapse/storage/__init__.pyc
|
|
${PYSITELIB}/synapse/storage/__init__.pyo
|
|
${PYSITELIB}/synapse/storage/_base.py
|
|
${PYSITELIB}/synapse/storage/_base.pyc
|
|
${PYSITELIB}/synapse/storage/_base.pyo
|
|
${PYSITELIB}/synapse/storage/background_updates.py
|
|
${PYSITELIB}/synapse/storage/background_updates.pyc
|
|
${PYSITELIB}/synapse/storage/background_updates.pyo
|
|
${PYSITELIB}/synapse/storage/database.py
|
|
${PYSITELIB}/synapse/storage/database.pyc
|
|
${PYSITELIB}/synapse/storage/database.pyo
|
|
${PYSITELIB}/synapse/storage/databases/__init__.py
|
|
${PYSITELIB}/synapse/storage/databases/__init__.pyc
|
|
${PYSITELIB}/synapse/storage/databases/__init__.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/__init__.py
|
|
${PYSITELIB}/synapse/storage/databases/main/__init__.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/__init__.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/account_data.py
|
|
${PYSITELIB}/synapse/storage/databases/main/account_data.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/account_data.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/appservice.py
|
|
${PYSITELIB}/synapse/storage/databases/main/appservice.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/appservice.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/cache.py
|
|
${PYSITELIB}/synapse/storage/databases/main/cache.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/cache.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/censor_events.py
|
|
${PYSITELIB}/synapse/storage/databases/main/censor_events.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/censor_events.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/client_ips.py
|
|
${PYSITELIB}/synapse/storage/databases/main/client_ips.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/client_ips.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/deviceinbox.py
|
|
${PYSITELIB}/synapse/storage/databases/main/deviceinbox.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/deviceinbox.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/devices.py
|
|
${PYSITELIB}/synapse/storage/databases/main/devices.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/devices.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/directory.py
|
|
${PYSITELIB}/synapse/storage/databases/main/directory.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/directory.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.py
|
|
${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/e2e_room_keys.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.py
|
|
${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/end_to_end_keys.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/event_federation.py
|
|
${PYSITELIB}/synapse/storage/databases/main/event_federation.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/event_federation.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/event_push_actions.py
|
|
${PYSITELIB}/synapse/storage/databases/main/event_push_actions.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/event_push_actions.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/events.py
|
|
${PYSITELIB}/synapse/storage/databases/main/events.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/events.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.py
|
|
${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/events_bg_updates.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.py
|
|
${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/events_forward_extremities.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/events_worker.py
|
|
${PYSITELIB}/synapse/storage/databases/main/events_worker.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/events_worker.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/filtering.py
|
|
${PYSITELIB}/synapse/storage/databases/main/filtering.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/filtering.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/group_server.py
|
|
${PYSITELIB}/synapse/storage/databases/main/group_server.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/group_server.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/keys.py
|
|
${PYSITELIB}/synapse/storage/databases/main/keys.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/keys.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/lock.py
|
|
${PYSITELIB}/synapse/storage/databases/main/lock.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/lock.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/media_repository.py
|
|
${PYSITELIB}/synapse/storage/databases/main/media_repository.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/media_repository.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/metrics.py
|
|
${PYSITELIB}/synapse/storage/databases/main/metrics.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/metrics.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.py
|
|
${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/monthly_active_users.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/openid.py
|
|
${PYSITELIB}/synapse/storage/databases/main/openid.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/openid.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/presence.py
|
|
${PYSITELIB}/synapse/storage/databases/main/presence.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/presence.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/profile.py
|
|
${PYSITELIB}/synapse/storage/databases/main/profile.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/profile.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/purge_events.py
|
|
${PYSITELIB}/synapse/storage/databases/main/purge_events.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/purge_events.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/push_rule.py
|
|
${PYSITELIB}/synapse/storage/databases/main/push_rule.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/push_rule.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/pusher.py
|
|
${PYSITELIB}/synapse/storage/databases/main/pusher.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/pusher.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/receipts.py
|
|
${PYSITELIB}/synapse/storage/databases/main/receipts.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/receipts.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/registration.py
|
|
${PYSITELIB}/synapse/storage/databases/main/registration.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/registration.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/rejections.py
|
|
${PYSITELIB}/synapse/storage/databases/main/rejections.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/rejections.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/relations.py
|
|
${PYSITELIB}/synapse/storage/databases/main/relations.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/relations.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/room.py
|
|
${PYSITELIB}/synapse/storage/databases/main/room.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/room.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/room_batch.py
|
|
${PYSITELIB}/synapse/storage/databases/main/room_batch.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/room_batch.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/roommember.py
|
|
${PYSITELIB}/synapse/storage/databases/main/roommember.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/roommember.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/search.py
|
|
${PYSITELIB}/synapse/storage/databases/main/search.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/search.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/session.py
|
|
${PYSITELIB}/synapse/storage/databases/main/session.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/session.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/signatures.py
|
|
${PYSITELIB}/synapse/storage/databases/main/signatures.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/signatures.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/state.py
|
|
${PYSITELIB}/synapse/storage/databases/main/state.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/state.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/state_deltas.py
|
|
${PYSITELIB}/synapse/storage/databases/main/state_deltas.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/state_deltas.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/stats.py
|
|
${PYSITELIB}/synapse/storage/databases/main/stats.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/stats.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/stream.py
|
|
${PYSITELIB}/synapse/storage/databases/main/stream.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/stream.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/tags.py
|
|
${PYSITELIB}/synapse/storage/databases/main/tags.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/tags.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/transactions.py
|
|
${PYSITELIB}/synapse/storage/databases/main/transactions.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/transactions.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/ui_auth.py
|
|
${PYSITELIB}/synapse/storage/databases/main/ui_auth.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/ui_auth.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/user_directory.py
|
|
${PYSITELIB}/synapse/storage/databases/main/user_directory.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/user_directory.pyo
|
|
${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.py
|
|
${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.pyc
|
|
${PYSITELIB}/synapse/storage/databases/main/user_erasure_store.pyo
|
|
${PYSITELIB}/synapse/storage/databases/state/__init__.py
|
|
${PYSITELIB}/synapse/storage/databases/state/__init__.pyc
|
|
${PYSITELIB}/synapse/storage/databases/state/__init__.pyo
|
|
${PYSITELIB}/synapse/storage/databases/state/bg_updates.py
|
|
${PYSITELIB}/synapse/storage/databases/state/bg_updates.pyc
|
|
${PYSITELIB}/synapse/storage/databases/state/bg_updates.pyo
|
|
${PYSITELIB}/synapse/storage/databases/state/store.py
|
|
${PYSITELIB}/synapse/storage/databases/state/store.pyc
|
|
${PYSITELIB}/synapse/storage/databases/state/store.pyo
|
|
${PYSITELIB}/synapse/storage/engines/__init__.py
|
|
${PYSITELIB}/synapse/storage/engines/__init__.pyc
|
|
${PYSITELIB}/synapse/storage/engines/__init__.pyo
|
|
${PYSITELIB}/synapse/storage/engines/_base.py
|
|
${PYSITELIB}/synapse/storage/engines/_base.pyc
|
|
${PYSITELIB}/synapse/storage/engines/_base.pyo
|
|
${PYSITELIB}/synapse/storage/engines/postgres.py
|
|
${PYSITELIB}/synapse/storage/engines/postgres.pyc
|
|
${PYSITELIB}/synapse/storage/engines/postgres.pyo
|
|
${PYSITELIB}/synapse/storage/engines/sqlite.py
|
|
${PYSITELIB}/synapse/storage/engines/sqlite.pyc
|
|
${PYSITELIB}/synapse/storage/engines/sqlite.pyo
|
|
${PYSITELIB}/synapse/storage/keys.py
|
|
${PYSITELIB}/synapse/storage/keys.pyc
|
|
${PYSITELIB}/synapse/storage/keys.pyo
|
|
${PYSITELIB}/synapse/storage/persist_events.py
|
|
${PYSITELIB}/synapse/storage/persist_events.pyc
|
|
${PYSITELIB}/synapse/storage/persist_events.pyo
|
|
${PYSITELIB}/synapse/storage/prepare_database.py
|
|
${PYSITELIB}/synapse/storage/prepare_database.pyc
|
|
${PYSITELIB}/synapse/storage/prepare_database.pyo
|
|
${PYSITELIB}/synapse/storage/purge_events.py
|
|
${PYSITELIB}/synapse/storage/purge_events.pyc
|
|
${PYSITELIB}/synapse/storage/purge_events.pyo
|
|
${PYSITELIB}/synapse/storage/push_rule.py
|
|
${PYSITELIB}/synapse/storage/push_rule.pyc
|
|
${PYSITELIB}/synapse/storage/push_rule.pyo
|
|
${PYSITELIB}/synapse/storage/relations.py
|
|
${PYSITELIB}/synapse/storage/relations.pyc
|
|
${PYSITELIB}/synapse/storage/relations.pyo
|
|
${PYSITELIB}/synapse/storage/roommember.py
|
|
${PYSITELIB}/synapse/storage/roommember.pyc
|
|
${PYSITELIB}/synapse/storage/roommember.pyo
|
|
${PYSITELIB}/synapse/storage/schema/README.md
|
|
${PYSITELIB}/synapse/storage/schema/__init__.py
|
|
${PYSITELIB}/synapse/storage/schema/__init__.pyc
|
|
${PYSITELIB}/synapse/storage/schema/__init__.pyo
|
|
${PYSITELIB}/synapse/storage/schema/common/delta/25/00background_updates.sql
|
|
${PYSITELIB}/synapse/storage/schema/common/delta/35/00background_updates_add_col.sql
|
|
${PYSITELIB}/synapse/storage/schema/common/delta/58/00background_update_ordering.sql
|
|
${PYSITELIB}/synapse/storage/schema/common/full_schemas/54/full.sql
|
|
${PYSITELIB}/synapse/storage/schema/common/schema_version.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/12/v12.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/13/v13.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/14/v14.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/15/appservice_txns.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/15/presence_indices.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/15/v15.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/16/events_order_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/16/remote_media_cache_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/16/remove_duplicates.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/16/room_alias_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/16/unique_constraints.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/16/users.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/17/drop_indexes.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/17/server_keys.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/17/user_threepids.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/18/server_keys_bigger_ints.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/19/event_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/20/dummy.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/20/pushers.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/20/pushers.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/20/pushers.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/21/end_to_end_keys.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/21/receipts.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/22/receipts_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/22/user_threepids_unique.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/24/stats_reporting.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/25/fts.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/25/fts.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/25/fts.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/25/guest_access.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/25/history_visibility.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/25/tags.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/26/account_data.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/27/account_data.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/27/forgotten_memberships.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/27/ts.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/27/ts.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/27/ts.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/28/event_push_actions.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/28/events_room_stream.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/28/public_roms_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/28/receipts_user_id_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/28/upgrade_times.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/28/users_is_guest.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/29/push_actions.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/30/alias_creator.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/30/as_users.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/30/as_users.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/30/as_users.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/30/deleted_pushers.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/30/presence_stream.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/30/public_rooms.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/30/push_rule_stream.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/30/threepid_guest_access_tokens.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/31/invites.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/31/local_media_repository_url_cache.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/31/pushers_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/31/search_update.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/31/search_update.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/31/search_update.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/32/events.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/32/openid.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/32/pusher_throttle.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/32/remove_indices.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/32/reports.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/33/access_tokens_device_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/33/devices.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/33/devices_for_e2e_keys.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/33/devices_for_e2e_keys_clear_unknown_device.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/33/event_fields.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/33/event_fields.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/33/event_fields.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/33/remote_media_ts.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/33/remote_media_ts.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/33/remote_media_ts.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/33/user_ips_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/34/appservice_stream.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/34/cache_stream.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/34/cache_stream.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/34/cache_stream.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/34/device_inbox.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/34/push_display_name_rename.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/34/received_txn_purge.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/34/received_txn_purge.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/34/received_txn_purge.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/35/contains_url.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/35/device_outbox.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/35/device_stream_id.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/35/event_push_actions_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/35/public_room_list_change_stream.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/35/stream_order_to_extrem.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/36/readd_public_rooms.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/37/remove_auth_idx.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/37/remove_auth_idx.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/37/remove_auth_idx.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/37/user_threepids.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/38/postgres_fts_gist.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/39/appservice_room_list.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/39/device_federation_stream_idx.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/39/event_push_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/39/federation_out_position.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/39/membership_profile.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/40/current_state_idx.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/40/device_inbox.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/40/device_list_streams.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/40/event_push_summary.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/40/pushers.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/41/device_list_stream_idx.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/41/device_outbound_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/41/event_search_event_id_idx.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/41/ratelimit.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/42/current_state_delta.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/42/device_list_last_id.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/42/event_auth_state_only.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/42/user_dir.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/42/user_dir.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/42/user_dir.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/43/blocked_rooms.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/43/quarantine_media.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/43/url_cache.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/43/user_share.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/44/expire_url_cache.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/45/group_server.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/45/profile_cache.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/46/drop_refresh_tokens.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/46/drop_unique_deleted_pushers.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/46/group_server.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/46/local_media_repository_url_idx.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/46/user_dir_null_room_ids.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/46/user_dir_typos.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/47/last_access_media.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/47/postgres_fts_gin.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/47/push_actions_staging.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/48/add_user_consent.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/48/add_user_ips_last_seen_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/48/deactivated_users.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/48/group_unique_indexes.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/48/group_unique_indexes.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/48/group_unique_indexes.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/48/groups_joinable.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/49/add_user_consent_server_notice_sent.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/49/add_user_daily_visits.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/49/add_user_ips_last_seen_only_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/50/add_creation_ts_users_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/50/erasure_store.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/50/make_event_content_nullable.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/50/make_event_content_nullable.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/50/make_event_content_nullable.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/51/e2e_room_keys.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/51/monthly_active_users.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/52/add_event_to_state_group_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/52/device_list_streams_unique_idx.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/52/e2e_room_keys.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/53/add_user_type_to_users.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/53/drop_sent_transactions.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/53/event_format_version.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/53/user_dir_populate.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/53/user_ips_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/53/user_share.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/53/user_threepid_id.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/53/users_in_public_rooms.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/54/account_validity_with_renewal.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/54/add_validity_to_server_keys.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/54/delete_forward_extremities.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/54/drop_legacy_tables.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/54/drop_presence_list.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/54/relations.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/54/stats.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/54/stats2.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/55/access_token_expiry.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/55/track_threepid_validations.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/55/users_alter_deactivated.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/add_spans_to_device_lists.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/current_state_events_membership.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/current_state_events_membership_mk2.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/delete_keys_from_deleted_backups.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/destinations_failure_ts.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/destinations_retry_interval_type.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/device_stream_id_insert.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/devices_last_seen.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/drop_unused_event_tables.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/event_expiry.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/event_labels.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/event_labels_background_update.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/fix_room_keys_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/hidden_devices.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/hidden_devices_fix.sql.sqlite
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/nuke_empty_communities_from_db.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/public_room_list_idx.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor2.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor3_fix_update.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/redaction_censor4.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/remove_tombstoned_rooms_from_directory.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/room_key_etag.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/room_membership_idx.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/room_retention.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/signing_keys.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/signing_keys_nonunique_signatures.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/stats_separated.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/unique_user_filter_index.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/unique_user_filter_index.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/unique_user_filter_index.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/user_external_ids.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/56/users_in_public_rooms_idx.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/57/delete_old_current_state_events.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/57/device_list_remote_cache_stale.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/57/local_current_membership.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/57/local_current_membership.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/57/local_current_membership.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/57/remove_sent_outbound_pokes.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_2.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_2.sql.sqlite
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_3.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/57/rooms_version_column_3.sql.sqlite
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/02remove_dup_outbound_pokes.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/03persist_ui_auth.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/05cache_instance.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/06dlols_unique_idx.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/07add_method_to_thumbnail_constraint.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/07add_method_to_thumbnail_constraint.sql.sqlite
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/07persist_ui_auth_ips.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/08_media_safe_from_quarantine.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/08_media_safe_from_quarantine.sql.sqlite
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/09shadow_ban.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/10_pushrules_enabled_delete_obsolete.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/10drop_local_rejections_stream.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/10federation_pos_instance_name.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/11dehydration.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/11fallback.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/11user_id_seq.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/11user_id_seq.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/11user_id_seq.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/12room_stats.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/13remove_presence_allow_inbound.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/14events_instance_name.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/14events_instance_name.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/15_catchup_destination_rooms.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/15unread_count.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/16populate_stats_process_rooms_fix.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/17_catchup_last_successful.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/18stream_positions.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/19instance_map.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/19txn_id.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/20instance_name_event_tables.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/20user_daily_visits.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/21as_device_stream.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/21drop_device_max_stream_id.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/22puppet_token.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/22users_have_local_media.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/23e2e_cross_signing_keys_idx.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/24drop_event_json_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/25user_external_ids_user_id_idx.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/26access_token_last_validated.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/27local_invites.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/28drop_last_used_column.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/58/28drop_last_used_column.sql.sqlite
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/01ignored_user.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/01ignored_user.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/01ignored_user.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/02shard_send_to_device.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/03shard_send_to_device_sequence.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/04_event_auth_chains.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/04_event_auth_chains.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/04drop_account_data.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/05cache_invalidation.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/06chain_cover_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/06shard_account_data.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/06shard_account_data.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/07shard_account_data_fix.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/08delete_pushers_for_deactivated_accounts.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/08delete_stale_pushers.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/09rejected_events_metadata.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/10delete_purged_chain_cover.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/11add_knock_members_to_stats.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/11drop_thumbnail_constraint.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/12account_validity_token_used_ts_ms.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/12presence_stream_instance.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/12presence_stream_instance_seq.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/13users_to_send_full_presence_to.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/14refresh_tokens.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/15locks.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/59/16federation_inbound_staging.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/60/01recreate_stream_ordering.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/60/02change_stream_ordering_columns.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/61/01change_appservices_txns.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/61/01insertion_event_lookups.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/61/02drop_redundant_room_depth_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/61/03recreate_min_depth.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/61/03recreate_min_depth.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/61/03recreate_min_depth.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/62/01insertion_event_extremities.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/63/01create_registration_tokens.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/63/02delete_unlinked_email_pushers.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/63/02populate-rooms-creator.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/63/03session_store.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/63/04add_presence_stream_not_offline_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/64/01msc2716_chunk_to_batch_rename.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/64/01msc2716_chunk_to_batch_rename.sql.sqlite
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/65/01msc2716_insertion_event_edges.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/65/03remove_hidden_devices_from_device_inbox.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/65/04_local_group_updates.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/65/05_remove_room_stats_historical_and_user_stats_historical.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/65/06remove_deleted_devices_from_device_inbox.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/65/07_arbitrary_relations.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/65/08_device_inbox_background_updates.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/65/10_expirable_refresh_tokens.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/65/11_devices_auth_provider_session.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/67/01drop_public_room_list_stream.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/68/01event_columns.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/68/02_msc2409_add_device_id_appservice_stream_type.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/68/03_delete_account_data_for_deactivated_accounts.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/68/04_refresh_tokens_index_next_token_id.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/68/04partial_state_rooms.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/68/05_delete_non_strings_from_event_search.sql.sqlite
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/68/05partial_state_rooms_triggers.py
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/68/05partial_state_rooms_triggers.pyc
|
|
${PYSITELIB}/synapse/storage/schema/main/delta/68/05partial_state_rooms_triggers.pyo
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/application_services.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/event_edges.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/event_signatures.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/im.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/keys.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/media_repository.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/presence.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/profiles.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/push.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/redactions.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/room_aliases.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/state.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/transactions.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/16/users.sql
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/54/full.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/54/full.sql.sqlite
|
|
${PYSITELIB}/synapse/storage/schema/main/full_schemas/54/stream_positions.sql
|
|
${PYSITELIB}/synapse/storage/schema/state/delta/23/drop_state_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/state/delta/30/state_stream.sql
|
|
${PYSITELIB}/synapse/storage/schema/state/delta/32/remove_state_indices.sql
|
|
${PYSITELIB}/synapse/storage/schema/state/delta/35/add_state_index.sql
|
|
${PYSITELIB}/synapse/storage/schema/state/delta/35/state.sql
|
|
${PYSITELIB}/synapse/storage/schema/state/delta/35/state_dedupe.sql
|
|
${PYSITELIB}/synapse/storage/schema/state/delta/47/state_group_seq.py
|
|
${PYSITELIB}/synapse/storage/schema/state/delta/47/state_group_seq.pyc
|
|
${PYSITELIB}/synapse/storage/schema/state/delta/47/state_group_seq.pyo
|
|
${PYSITELIB}/synapse/storage/schema/state/delta/56/state_group_room_idx.sql
|
|
${PYSITELIB}/synapse/storage/schema/state/delta/61/02state_groups_state_n_distinct.sql.postgres
|
|
${PYSITELIB}/synapse/storage/schema/state/full_schemas/54/full.sql
|
|
${PYSITELIB}/synapse/storage/schema/state/full_schemas/54/sequence.sql.postgres
|
|
${PYSITELIB}/synapse/storage/state.py
|
|
${PYSITELIB}/synapse/storage/state.pyc
|
|
${PYSITELIB}/synapse/storage/state.pyo
|
|
${PYSITELIB}/synapse/storage/types.py
|
|
${PYSITELIB}/synapse/storage/types.pyc
|
|
${PYSITELIB}/synapse/storage/types.pyo
|
|
${PYSITELIB}/synapse/storage/util/__init__.py
|
|
${PYSITELIB}/synapse/storage/util/__init__.pyc
|
|
${PYSITELIB}/synapse/storage/util/__init__.pyo
|
|
${PYSITELIB}/synapse/storage/util/id_generators.py
|
|
${PYSITELIB}/synapse/storage/util/id_generators.pyc
|
|
${PYSITELIB}/synapse/storage/util/id_generators.pyo
|
|
${PYSITELIB}/synapse/storage/util/sequence.py
|
|
${PYSITELIB}/synapse/storage/util/sequence.pyc
|
|
${PYSITELIB}/synapse/storage/util/sequence.pyo
|
|
${PYSITELIB}/synapse/streams/__init__.py
|
|
${PYSITELIB}/synapse/streams/__init__.pyc
|
|
${PYSITELIB}/synapse/streams/__init__.pyo
|
|
${PYSITELIB}/synapse/streams/config.py
|
|
${PYSITELIB}/synapse/streams/config.pyc
|
|
${PYSITELIB}/synapse/streams/config.pyo
|
|
${PYSITELIB}/synapse/streams/events.py
|
|
${PYSITELIB}/synapse/streams/events.pyc
|
|
${PYSITELIB}/synapse/streams/events.pyo
|
|
${PYSITELIB}/synapse/types.py
|
|
${PYSITELIB}/synapse/types.pyc
|
|
${PYSITELIB}/synapse/types.pyo
|
|
${PYSITELIB}/synapse/util/__init__.py
|
|
${PYSITELIB}/synapse/util/__init__.pyc
|
|
${PYSITELIB}/synapse/util/__init__.pyo
|
|
${PYSITELIB}/synapse/util/async_helpers.py
|
|
${PYSITELIB}/synapse/util/async_helpers.pyc
|
|
${PYSITELIB}/synapse/util/async_helpers.pyo
|
|
${PYSITELIB}/synapse/util/batching_queue.py
|
|
${PYSITELIB}/synapse/util/batching_queue.pyc
|
|
${PYSITELIB}/synapse/util/batching_queue.pyo
|
|
${PYSITELIB}/synapse/util/caches/__init__.py
|
|
${PYSITELIB}/synapse/util/caches/__init__.pyc
|
|
${PYSITELIB}/synapse/util/caches/__init__.pyo
|
|
${PYSITELIB}/synapse/util/caches/cached_call.py
|
|
${PYSITELIB}/synapse/util/caches/cached_call.pyc
|
|
${PYSITELIB}/synapse/util/caches/cached_call.pyo
|
|
${PYSITELIB}/synapse/util/caches/deferred_cache.py
|
|
${PYSITELIB}/synapse/util/caches/deferred_cache.pyc
|
|
${PYSITELIB}/synapse/util/caches/deferred_cache.pyo
|
|
${PYSITELIB}/synapse/util/caches/descriptors.py
|
|
${PYSITELIB}/synapse/util/caches/descriptors.pyc
|
|
${PYSITELIB}/synapse/util/caches/descriptors.pyo
|
|
${PYSITELIB}/synapse/util/caches/dictionary_cache.py
|
|
${PYSITELIB}/synapse/util/caches/dictionary_cache.pyc
|
|
${PYSITELIB}/synapse/util/caches/dictionary_cache.pyo
|
|
${PYSITELIB}/synapse/util/caches/expiringcache.py
|
|
${PYSITELIB}/synapse/util/caches/expiringcache.pyc
|
|
${PYSITELIB}/synapse/util/caches/expiringcache.pyo
|
|
${PYSITELIB}/synapse/util/caches/lrucache.py
|
|
${PYSITELIB}/synapse/util/caches/lrucache.pyc
|
|
${PYSITELIB}/synapse/util/caches/lrucache.pyo
|
|
${PYSITELIB}/synapse/util/caches/response_cache.py
|
|
${PYSITELIB}/synapse/util/caches/response_cache.pyc
|
|
${PYSITELIB}/synapse/util/caches/response_cache.pyo
|
|
${PYSITELIB}/synapse/util/caches/stream_change_cache.py
|
|
${PYSITELIB}/synapse/util/caches/stream_change_cache.pyc
|
|
${PYSITELIB}/synapse/util/caches/stream_change_cache.pyo
|
|
${PYSITELIB}/synapse/util/caches/treecache.py
|
|
${PYSITELIB}/synapse/util/caches/treecache.pyc
|
|
${PYSITELIB}/synapse/util/caches/treecache.pyo
|
|
${PYSITELIB}/synapse/util/caches/ttlcache.py
|
|
${PYSITELIB}/synapse/util/caches/ttlcache.pyc
|
|
${PYSITELIB}/synapse/util/caches/ttlcache.pyo
|
|
${PYSITELIB}/synapse/util/check_dependencies.py
|
|
${PYSITELIB}/synapse/util/check_dependencies.pyc
|
|
${PYSITELIB}/synapse/util/check_dependencies.pyo
|
|
${PYSITELIB}/synapse/util/daemonize.py
|
|
${PYSITELIB}/synapse/util/daemonize.pyc
|
|
${PYSITELIB}/synapse/util/daemonize.pyo
|
|
${PYSITELIB}/synapse/util/distributor.py
|
|
${PYSITELIB}/synapse/util/distributor.pyc
|
|
${PYSITELIB}/synapse/util/distributor.pyo
|
|
${PYSITELIB}/synapse/util/file_consumer.py
|
|
${PYSITELIB}/synapse/util/file_consumer.pyc
|
|
${PYSITELIB}/synapse/util/file_consumer.pyo
|
|
${PYSITELIB}/synapse/util/frozenutils.py
|
|
${PYSITELIB}/synapse/util/frozenutils.pyc
|
|
${PYSITELIB}/synapse/util/frozenutils.pyo
|
|
${PYSITELIB}/synapse/util/gai_resolver.py
|
|
${PYSITELIB}/synapse/util/gai_resolver.pyc
|
|
${PYSITELIB}/synapse/util/gai_resolver.pyo
|
|
${PYSITELIB}/synapse/util/hash.py
|
|
${PYSITELIB}/synapse/util/hash.pyc
|
|
${PYSITELIB}/synapse/util/hash.pyo
|
|
${PYSITELIB}/synapse/util/httpresourcetree.py
|
|
${PYSITELIB}/synapse/util/httpresourcetree.pyc
|
|
${PYSITELIB}/synapse/util/httpresourcetree.pyo
|
|
${PYSITELIB}/synapse/util/iterutils.py
|
|
${PYSITELIB}/synapse/util/iterutils.pyc
|
|
${PYSITELIB}/synapse/util/iterutils.pyo
|
|
${PYSITELIB}/synapse/util/linked_list.py
|
|
${PYSITELIB}/synapse/util/linked_list.pyc
|
|
${PYSITELIB}/synapse/util/linked_list.pyo
|
|
${PYSITELIB}/synapse/util/logcontext.py
|
|
${PYSITELIB}/synapse/util/logcontext.pyc
|
|
${PYSITELIB}/synapse/util/logcontext.pyo
|
|
${PYSITELIB}/synapse/util/logformatter.py
|
|
${PYSITELIB}/synapse/util/logformatter.pyc
|
|
${PYSITELIB}/synapse/util/logformatter.pyo
|
|
${PYSITELIB}/synapse/util/macaroons.py
|
|
${PYSITELIB}/synapse/util/macaroons.pyc
|
|
${PYSITELIB}/synapse/util/macaroons.pyo
|
|
${PYSITELIB}/synapse/util/manhole.py
|
|
${PYSITELIB}/synapse/util/manhole.pyc
|
|
${PYSITELIB}/synapse/util/manhole.pyo
|
|
${PYSITELIB}/synapse/util/metrics.py
|
|
${PYSITELIB}/synapse/util/metrics.pyc
|
|
${PYSITELIB}/synapse/util/metrics.pyo
|
|
${PYSITELIB}/synapse/util/module_loader.py
|
|
${PYSITELIB}/synapse/util/module_loader.pyc
|
|
${PYSITELIB}/synapse/util/module_loader.pyo
|
|
${PYSITELIB}/synapse/util/msisdn.py
|
|
${PYSITELIB}/synapse/util/msisdn.pyc
|
|
${PYSITELIB}/synapse/util/msisdn.pyo
|
|
${PYSITELIB}/synapse/util/patch_inline_callbacks.py
|
|
${PYSITELIB}/synapse/util/patch_inline_callbacks.pyc
|
|
${PYSITELIB}/synapse/util/patch_inline_callbacks.pyo
|
|
${PYSITELIB}/synapse/util/ratelimitutils.py
|
|
${PYSITELIB}/synapse/util/ratelimitutils.pyc
|
|
${PYSITELIB}/synapse/util/ratelimitutils.pyo
|
|
${PYSITELIB}/synapse/util/retryutils.py
|
|
${PYSITELIB}/synapse/util/retryutils.pyc
|
|
${PYSITELIB}/synapse/util/retryutils.pyo
|
|
${PYSITELIB}/synapse/util/rlimit.py
|
|
${PYSITELIB}/synapse/util/rlimit.pyc
|
|
${PYSITELIB}/synapse/util/rlimit.pyo
|
|
${PYSITELIB}/synapse/util/stringutils.py
|
|
${PYSITELIB}/synapse/util/stringutils.pyc
|
|
${PYSITELIB}/synapse/util/stringutils.pyo
|
|
${PYSITELIB}/synapse/util/templates.py
|
|
${PYSITELIB}/synapse/util/templates.pyc
|
|
${PYSITELIB}/synapse/util/templates.pyo
|
|
${PYSITELIB}/synapse/util/threepids.py
|
|
${PYSITELIB}/synapse/util/threepids.pyc
|
|
${PYSITELIB}/synapse/util/threepids.pyo
|
|
${PYSITELIB}/synapse/util/wheel_timer.py
|
|
${PYSITELIB}/synapse/util/wheel_timer.pyc
|
|
${PYSITELIB}/synapse/util/wheel_timer.pyo
|
|
${PYSITELIB}/synapse/visibility.py
|
|
${PYSITELIB}/synapse/visibility.pyc
|
|
${PYSITELIB}/synapse/visibility.pyo
|
|
${PYSITELIB}/synmark/__init__.py
|
|
${PYSITELIB}/synmark/__init__.pyc
|
|
${PYSITELIB}/synmark/__init__.pyo
|
|
${PYSITELIB}/synmark/__main__.py
|
|
${PYSITELIB}/synmark/__main__.pyc
|
|
${PYSITELIB}/synmark/__main__.pyo
|
|
${PYSITELIB}/synmark/suites/__init__.py
|
|
${PYSITELIB}/synmark/suites/__init__.pyc
|
|
${PYSITELIB}/synmark/suites/__init__.pyo
|
|
${PYSITELIB}/synmark/suites/logging.py
|
|
${PYSITELIB}/synmark/suites/logging.pyc
|
|
${PYSITELIB}/synmark/suites/logging.pyo
|
|
${PYSITELIB}/synmark/suites/lrucache.py
|
|
${PYSITELIB}/synmark/suites/lrucache.pyc
|
|
${PYSITELIB}/synmark/suites/lrucache.pyo
|
|
${PYSITELIB}/synmark/suites/lrucache_evict.py
|
|
${PYSITELIB}/synmark/suites/lrucache_evict.pyc
|
|
${PYSITELIB}/synmark/suites/lrucache_evict.pyo
|