# HG changeset patch # User Pierre-Yves David # Date 1330343244 -3600 # Node ID 57d8f3b3e1655f4849a0084248a7cf1bae4d10cc # Parent 49e105e000abbd3b761d77714ab633f4ecc3ef98 [devtools/fake] add some https related properties to FakeRequest diff -r 49e105e000ab -r 57d8f3b3e165 devtools/fake.py --- a/devtools/fake.py Thu Feb 23 15:39:19 2012 +0100 +++ b/devtools/fake.py Mon Feb 27 12:47:24 2012 +0100 @@ -33,6 +33,7 @@ class FakeConfig(dict, BaseApptestConfiguration): translations = {} uiprops = {} + https_uiprops = {} apphome = None debugmode = False def __init__(self, appid='data', apphome=None, cubes=()): @@ -44,6 +45,7 @@ self['base-url'] = BASE_URL self['rql-cache-size'] = 3000 self.datadir_url = BASE_URL + 'data/' + self.https_datadir_url = (BASE_URL + 'data/').replace('http://', 'https://') def cubes(self, expand=False): return self._cubes