Determine webclient path by the python module it is contained in

This commit is contained in:
Mark Haines 2014-11-04 16:19:03 +00:00
parent 4e52f9699b
commit dca3ba2f77
2 changed files with 5 additions and 2 deletions

View file

@ -42,6 +42,7 @@ import os
import re
import sys
import sqlite3
import syweb
logger = logging.getLogger(__name__)
@ -58,7 +59,9 @@ class SynapseHomeServer(HomeServer):
return JsonResource()
def build_resource_for_web_client(self):
return File("webclient") # TODO configurable?
syweb_path = os.path.dirname(syweb.__file__)
webclient_path = os.path.join(syweb_path, "webclient")
return File(webclient_path) # TODO configurable?
def build_resource_for_content_repo(self):
return ContentRepoResource(