summary refs log tree commit diff
path: root/synapse/app (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #187 from matrix-org/erikj/sanitize_loggingErik Johnston2015-06-191-15/+88
|\
| * Add site_tag to loggerErik Johnston2015-06-191-2/+2
| * Disable twisted access logging. Move access logging to SynapseRequest objectErik Johnston2015-06-151-17/+47
| * Log more when we have processed the requestErik Johnston2015-06-151-2/+8
| * Create SynapseRequest that overrides __repr__ to not print access_tokenErik Johnston2015-06-151-6/+43
* | Make upload dir a configurable path.Eric Myhre2015-06-181-2/+1
|/
* Add backwards compat support for metrics, manhole and webclient config optionsErik Johnston2015-06-121-7/+0
* PEP8Erik Johnston2015-06-121-3/+3
* Correctly handle x_forwaded listener optionErik Johnston2015-06-121-4/+27
* Use config.listenersErik Johnston2015-06-121-66/+84
* Fix up create_resource_treeErik Johnston2015-06-121-104/+100
* Add config option to disable compression of http responsesErik Johnston2015-06-011-2/+8
* Add config option to turn off freezing events. Use new encode_json api and uj...Erik Johnston2015-05-291-0/+4
* s/metric_interface/metric_bind_host/Erik Johnston2015-05-221-2/+2
* Update log lineErik Johnston2015-05-221-1/+4
* Enable changing the interface the metrics listener binds toErik Johnston2015-05-221-1/+1
* Disable GZip encoding on static file resources as per commentDavid Baker2015-05-191-1/+7
* Revert accidental commitErik Johnston2015-05-191-3/+3
* SYN-383: Handle the fact the server might not have signed thingsErik Johnston2015-05-191-3/+3
* Support gzip encoding for client, client v2 and web client resources (SYN-176).David Baker2015-05-141-5/+16
* Optional profiling using cProfileMark Haines2015-05-061-1/+21
* Don't read from the config file before checking it existsMark Haines2015-05-061-9/+10
* missing importMark Haines2015-04-301-0/+2
* read the pid_file from the config file in synctlMark Haines2015-04-301-2/+3
* Merge branch 'develop' into markjh/config_cleanupMark Haines2015-04-301-3/+36
|\
| * Do access log using python's logging stuff, just under a separate logger nameDavid Baker2015-04-301-14/+28
| * Add an access_logDavid Baker2015-04-301-3/+22
| * Revert previousErik Johnston2015-04-291-5/+1
| * Only start pushers when synapse has fully startedErik Johnston2015-04-291-1/+5
* | remove duplicate parse_size methodMark Haines2015-04-301-1/+0
* | Manually generate the default config yaml, remove most of the commandline arg...Mark Haines2015-04-301-4/+2
|/
* Fix whitespaceMark Haines2015-04-291-1/+1
* Check requirements before doing anything else when running the homeserverMark Haines2015-04-291-1/+4
* Merge pull request #129 from matrix-org/key_distributionErik Johnston2015-04-291-1/+7
|\
| * Merge branch 'develop' into key_distributionMark Haines2015-04-291-12/+39
| |\
| * | Add a version 2 of the key server apiMark Haines2015-04-141-1/+7
* | | Make postgres database error slightly more helpfulErik Johnston2015-04-291-12/+15
* | | Check that postgres database has correct charset setErik Johnston2015-04-291-1/+10
| |/ |/|
* | Remove unused importsErik Johnston2015-04-281-2/+1
* | Merge branch 'develop' of github.com:matrix-org/synapse into postgresErik Johnston2015-04-281-1/+20
|\ \
| * | pep8David Baker2015-04-271-1/+0
| * | Run database check before daemonizing, at the cost of database hygiene.David Baker2015-04-271-9/+8
| * | rename db method to be more informativeDavid Baker2015-04-271-1/+1
| * | Check users in our table aren't on a different domain to the one we're config...David Baker2015-04-241-0/+19
| |/
* | Remove unused importErik Johnston2015-04-271-1/+0
* | Move database configuration into config moduleErik Johnston2015-04-271-31/+4
* | Ensure check_same_thread is enabled for sqlite3Erik Johnston2015-04-271-0/+1
* | Remove mysql/maria supportErik Johnston2015-04-151-8/+1
* | Merge branch 'develop' of github.com:matrix-org/synapse into postgresErik Johnston2015-04-151-1/+1
|\|
| * Move server key api into rest/key/v1Mark Haines2015-04-141-1/+1
* | Add support for postgres instead of mysql. Change sql accourdingly. blob + va...Erik Johnston2015-04-141-0/+2
* | Use case sensitive collationsErik Johnston2015-04-101-2/+1
* | Merge branch 'develop' of github.com:matrix-org/synapse into mysqlErik Johnston2015-04-071-7/+1
|\|
| * PyflakesKegan Dougal2015-03-311-2/+1
| * Remove appservice REST servletsKegan Dougal2015-03-311-5/+0
* | PEP8Erik Johnston2015-04-071-5/+2
* | Explicitly name the __main__ module loggerErik Johnston2015-04-071-1/+1
* | Fix unicode supportErik Johnston2015-04-021-8/+4
* | Fix SQLite supportErik Johnston2015-04-011-3/+12
* | Make work in both Maria and SQLite. Fix testsErik Johnston2015-04-011-7/+13
* | Fix unicode database supportErik Johnston2015-03-251-18/+29
* | Merge branch 'develop' of github.com:matrix-org/synapse into mysqlErik Johnston2015-03-201-3/+6
|\|
| * Wire up the webclient optionDavid Baker2015-03-171-3/+5
* | Make database selection configurableErik Johnston2015-03-201-11/+33
|/
* actually uphold the bind_host parameter. in theory should make ipv6 binds wor...Matthew Hodgson2015-03-141-2/+7
* Option to serve metrics from their own localhost-only TCP port instead of mux...Paul "LeoNerd" Evans2015-03-121-2/+10
* Fold the slightly-odd bind_port/secure_port/etc.. logic into SynapseHomeServe...Paul "LeoNerd" Evans2015-03-121-12/+11
* Build MetricsResource as a specific HomeServer dependencyPaul "LeoNerd" Evans2015-03-121-6/+10
* A trivial 'hello world'-style resource on /_synapse/metrics, with optional co...Paul "LeoNerd" Evans2015-03-121-0/+7
* No need to explicitly pass 'web_client' in to create_resource_tree as it can ...Paul "LeoNerd" Evans2015-03-121-2/+3
* in_thread takes no argumentsErik Johnston2015-03-101-1/+1
* Split out the 'run' from 'setup'Erik Johnston2015-03-101-26/+27
* Add documentation. When starting via twistd respect soft_file_limit config op...Erik Johnston2015-03-101-2/+17
* Merge branch 'develop' of github.com:matrix-org/synapse into erikj-perfErik Johnston2015-03-092-29/+134
|\
| * Merge branch 'master' of github.com:matrix-org/synapse into developErik Johnston2015-03-061-53/+56
| |\
| | * Don't exit if we can't work out if we're running in a git repoErik Johnston2015-02-211-53/+56
| * | SYN-67: Finish up implementing new database schema managementErik Johnston2015-03-041-1/+4
| * | Merge pull request #83 from matrix-org/nofile_limit_configErik Johnston2015-03-021-8/+26
| |\ \
| | * | By default set soft limit to hard limitErik Johnston2015-02-201-2/+6
| | * | Rename resource variable so as to not shadow module importErik Johnston2015-02-191-5/+5
| | * | Add config option to set the soft fd limit on startErik Johnston2015-02-191-3/+17
| | |/
| * | Trailing commaKegan Dougal2015-02-231-1/+1
| * | Actually treat this as static content, not random Resources.Kegan Dougal2015-02-231-2/+6
| * | Add RegisterFallbackResource to /_matrix/static/client/registerKegan Dougal2015-02-231-0/+2
| |/
| * Conform to header spec take twoErik Johnston2015-02-181-1/+1
| * Make version_string conform to User-Agent and Server specErik Johnston2015-02-181-1/+1
| * pyflakesErik Johnston2015-02-181-1/+0
| * When computing git version run git commands in same dir as source filesErik Johnston2015-02-181-0/+5
| * Generate a version string that includes git details if run from git checkoutErik Johnston2015-02-181-1/+61
| * Merge branch 'develop' of github.com:matrix-org/synapse into developErik Johnston2015-02-181-0/+1
| |\
| | * Rename _fail_fetch_pdu_cache to _get_pdu_cacheErik Johnston2015-02-181-1/+1
| | * Start the get_pdu cacheErik Johnston2015-02-171-0/+1
| * | Merge branch 'hotfixes-v0.7.0g' of github.com:matrix-org/synapse into developErik Johnston2015-02-172-2/+4
| |\ \ | | |/ | |/|
| | * Don't write bytecodeErik Johnston2015-02-172-2/+4
| * | Merge pull request #50 from matrix-org/application-servicesMark Haines2015-02-131-1/+6
| |\ \
| | * \ Merge branch 'develop' into application-servicesKegan Dougal2015-02-111-1/+1
| | |\ \
| | * \ \ Merge branch 'develop' into application-servicesKegan Dougal2015-02-091-1/+3
| | |\ \ \
| | * \ \ \ Merge branch 'develop' into application-servicesKegan Dougal2015-02-021-0/+2
| | |\ \ \ \
| | * | | | | Add stub application services REST API.Kegan Dougal2015-01-271-1/+6
| * | | | | | Prepare the database whenever a connection is opened from the db_pool so that...Mark Haines2015-02-131-10/+4
| | |_|_|_|/ | |/| | | |
| * | | | | Merge branch 'develop' of github.com:matrix-org/synapse into state-chacheErik Johnston2015-02-111-1/+1
| |\ \ \ \ \ | | | |_|_|/ | | |/| | |
| | * | | | Fix code-styleMark Haines2015-02-101-1/+1
| | | |_|/ | | |/| |
| * | | | Merge branch 'develop' of github.com:matrix-org/synapse into state-chacheErik Johnston2015-02-101-1/+2
| |\| | |
| | * | | Time how long we're spending on the database threadErik Johnston2015-02-091-0/+2
| | * | | Log when we receive a request, when we send a response and how long it took t...Erik Johnston2015-02-091-1/+1
| | | |/ | | |/|
| * / | Bug fixes.Erik Johnston2015-02-061-0/+2
| |/ /
| * | Merge branch 'develop' into pushersDavid Baker2015-01-281-4/+8
| |\|
| | * Add client v2_alpha resource to synapse server resource treeMark Haines2015-01-231-1/+6
| | * Merge rest servlets into the client json resource objectMark Haines2015-01-231-3/+2
| * | Merge branch 'develop' into pushersDavid Baker2015-01-221-4/+11
| |\|
| | * Move rest APIs back under the rest directoryMark Haines2015-01-221-2/+2
| * | Merge branch 'develop' into pushersDavid Baker2015-01-133-4/+12
| |\ \
| * \ \ Merge branch 'develop' into pushersDavid Baker2014-12-181-5/+17
| |\ \ \
| * \ \ \ Merge branch 'develop' into pushersDavid Baker2014-11-201-1/+1
| |\ \ \ \
| * \ \ \ \ Merge branch 'develop' into pushersDavid Baker2014-11-202-8/+15
| |\ \ \ \ \
| * \ \ \ \ \ Merge branch 'http_client_refactor' into pushersDavid Baker2014-11-201-2/+2
| |\ \ \ \ \ \
| * | | | | | | Start creating a module to do generic notifications (just prints them to stdo...David Baker2014-11-191-0/+2
* | | | | | | | Merge branch 'develop' of github.com:matrix-org/synapse into erikj-perfErik Johnston2015-01-221-2/+17
|\ \ \ \ \ \ \ \ | | |_|_|_|_|_|/ | |/| | | | | |
| * | | | | | | Fix pyflakes errorsMark Haines2015-01-191-1/+1
| * | | | | | | Fix syntaxMark Haines2015-01-191-2/+3
| * | | | | | | Allow ':memory:' as the database path for sqlite3Mark Haines2015-01-191-1/+7
| | |_|_|_|_|/ | |/| | | | |
| * | | | | | Check the existance and versions of necessary modules when starting synapse, ...Mark Haines2015-01-081-0/+5
| * | | | | | Log server version on startupErik Johnston2015-01-071-0/+3
* | | | | | | Add twisted Service interfaceErik Johnston2015-01-071-3/+18
|/ / / / / /
* | | | | | Merge branch 'master' into developMark Haines2015-01-061-1/+1
|\ \ \ \ \ \
| * | | | | | improve error msgMatthew Hodgson2014-12-241-1/+1
| | |_|_|_|/ | |/| | | |
* / | | | | Update copyright noticesMark Haines2015-01-063-3/+3
|/ / / / /
* | | | | Make failure to run appropraite upgrade scripts more helpful.Erik Johnston2014-12-161-3/+10
* | | | | Get uploads working with new media repoMark Haines2014-12-021-2/+7
| |_|_|/ |/| | |
* | | | Merge branch 'develop' into http_client_refactorDavid Baker2014-11-202-8/+15
|\ \ \ \ | | |_|/ | |/| |
| * | | Fix pep8 codestyle warningsMark Haines2014-11-202-5/+12
| * | | Use module loggers rather than the root logger. Exceptions caused by bad clie...Mark Haines2014-11-201-3/+3
| |/ /
* | / Separate out the matrix http client completely because just about all of its ...David Baker2014-11-201-1/+1
| |/ |/|
* | Refactor the HTTP clients a little.David Baker2014-11-201-2/+2
|/
* Revert accidental commit of bad fileErik Johnston2014-11-181-37/+24
* Fix auth to correctly handle initial creation of roomsErik Johnston2014-11-181-24/+37
* Stop before starting when restartingMark Haines2014-11-171-1/+1
* Merge branch 'develop' into request_loggingMark Haines2014-11-142-2/+74
|\
| * SYN-138: Rewrite synctl in python and include it in the python distributionMark Haines2014-11-131-0/+66
| * Merge branch 'develop' of github.com:matrix-org/synapse into federation_autho...Erik Johnston2014-11-071-1/+4
| |\
| | * Determine webclient path by the python module it is contained inMark Haines2014-11-041-1/+4
| * | Add option to not bind to HTTPS port. This is useful if running behind an ssl...Erik Johnston2014-11-031-1/+4
| |/
* | Remove unused 'context' variables to appease pyflakesMark Haines2014-10-301-2/+2
* | Merge branch 'develop' into request_loggingMark Haines2014-10-301-1/+0
|\|
| * Fix pep8 warningsMark Haines2014-10-301-1/+0
* | Add a request-id to each log lineMark Haines2014-10-301-2/+10
|/
* Merge branch develop into server2server_signingMark Haines2014-10-131-2/+2
|\
| * Split PlainHttpClient into separate clients for talking to Identity servers a...Mark Haines2014-10-021-2/+2
* | Add a _matrix/key/v1 resource with the verification keys of the local serverMark Haines2014-09-231-2/+8
|/
* prepare_database() on db_conn, not plain name, so we can pass in the connecti...Paul "LeoNerd" Evans2014-09-101-1/+9
* Make sure not to open our TCP ports until /after/ the DB is nicely prepared r...Paul "LeoNerd" Evans2014-09-101-1/+2
* No need for a tiny run() function any more, just use reactor.run() directlyPaul "LeoNerd" Evans2014-09-101-6/+2
* Move database preparing code out of homserver.py into storage where it belongsPaul "LeoNerd" Evans2014-09-101-64/+9
* Generate m.room.aliases event when the HS creates a room aliasErik Johnston2014-09-051-1/+1
* fix the copyright holder from matrix.org to OpenMarket Ltd, as matrix.org has...Matthew Hodgson2014-09-032-2/+2
* Store SQL DDL deltas as well; attempt to upgrade the database on startup if i...Paul "LeoNerd" Evans2014-09-031-7/+15
* Merge branch 'develop' of github.com:matrix-org/synapse into developErik Johnston2014-09-031-1/+2
|\
| * move contentrepo class to it's own fileMark Haines2014-09-031-1/+2
* | Add option to change content repo locationErik Johnston2014-09-031-1/+4
|/
* Add ratelimiting function to basehandlerMark Haines2014-09-021-0/+1
* Add unsecure listener port to homeserverMark Haines2014-09-011-6/+12
* That was a breaking db change. You need to recreate the databases. (In realit...Erik Johnston2014-09-011-1/+1
* Enable SSL for s2s http clientMark Haines2014-09-011-1/+1
* Listen using SSLMark Haines2014-09-011-1/+7
* Fix homeserver config parsingMark Haines2014-09-011-13/+9
* Add config tree to synapse. Add support for reading config from a fileMark Haines2014-08-311-71/+18
* Merge branch 'develop' into storage_transactionsMark Haines2014-08-271-20/+45
|\
| * A reliable logger.info() message /after/ the TCP port has been opened and is ...Paul "LeoNerd" Evans2014-08-271-0/+1
| * Use SQLite's PRAGMA user_version to check if the database file really matches...Paul "LeoNerd" Evans2014-08-271-6/+28
| * Neater database setup at application startup time; only .connect() it once, n...Paul "LeoNerd" Evans2014-08-271-17/+19
* | Remove call to get_federation from homeserverMark Haines2014-08-271-4/+0
|/
* Add the ability to turn on the twisted manhole telnet service.Erik Johnston2014-08-261-0/+10
* For the content repo, don't just use homeserver.hostname as that might not in...Erik Johnston2014-08-241-0/+7
* Make the content repo work with in daemon mode. Return the full url on upload...Erik Johnston2014-08-221-2/+3
* host a webclient by defaultMatthew Hodgson2014-08-211-2/+2
* Implemented GETs for the ContentRepoResource. It all actually appears to be w...Kegan Dougal2014-08-181-2/+2
* Auth content uploads. Added a mapping function from request > filename. Added...Kegan Dougal2014-08-181-1/+1
* Added /matrix/content path, HS resource_for_content_repo attribute and FileUp...Kegan Dougal2014-08-181-3/+9
* Change relative db paths to absolute paths in case we daemonize.Erik Johnston2014-08-141-2/+9
* chmod +x homeserver.pyPaul "LeoNerd" Evans2014-08-141-0/+0
* Added web client prefixKegan Dougal2014-08-141-3/+3
* Added a urls module for keeping client and federation prefixes.Kegan Dougal2014-08-141-3/+2
* If the web client is enabled, automatically redirect root '/' to the web clie...Kegan Dougal2014-08-141-4/+13
* Fixed dynamic resource mapping to clobber dummy Resources with the actual des...Kegan Dougal2014-08-141-5/+27
* Honour the -w flag to enable the web client at /matrix/clientKegan Dougal2014-08-141-5/+8
* Removed http_server from HomeServer. Updated unit tests to use either resourc...Kegan Dougal2014-08-141-3/+1
* Make federation use resource_for_federation as well.Kegan Dougal2014-08-141-1/+3
* Start phasing out HttpServer: we should be using Resources instead. Added res...Kegan Dougal2014-08-141-2/+75
* Don't pass host_web_client flag to register_servlets, it needs to be a Resour...Kegan Dougal2014-08-131-1/+1
* Merge branch 'master' of github.com:matrix-org/synapseKegan Dougal2014-08-131-3/+2
|\
| * Fix logging verbosity parsing codePaul "LeoNerd" Evans2014-08-131-3/+2
* | Merge branch 'master' of github.com:matrix-org/synapseKegan Dougal2014-08-131-3/+3
|\|
| * verbose by default pleaseMatthew Hodgson2014-08-131-3/+3
* | Added a -w flag which will host the web client if specified. Currently this j...Kegan Dougal2014-08-131-1/+3
|/
* add in whitespace after copyright statements to improve legibilityMatthew Hodgson2014-08-132-1/+2
* Reference Matrix Home Servermatrix.org2014-08-122-0/+186