##// END OF EJS Templates
channelstream: move into apps
marcink -
r1504:b95a0f4c default
parent child Browse files
Show More
@@ -1,88 +1,90 b''
1 1 # -*- coding: utf-8 -*-
2 2
3 3 # Copyright (C) 2010-2017 RhodeCode GmbH
4 4 #
5 5 # This program is free software: you can redistribute it and/or modify
6 6 # it under the terms of the GNU Affero General Public License, version 3
7 7 # (only), as published by the Free Software Foundation.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU Affero General Public License
15 15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 16 #
17 17 # This program is dual-licensed. If you wish to learn more about the
18 18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20 20
21 21 import os
22 22
23 23 from pyramid.settings import asbool
24 24
25 25 from rhodecode.config.routing import ADMIN_PREFIX
26 26 from rhodecode.lib.ext_json import json
27 27
28 28
29 29 def url_gen(request):
30 30 registry = request.registry
31 31 longpoll_url = registry.settings.get('channelstream.longpoll_url', '')
32 32 ws_url = registry.settings.get('channelstream.ws_url', '')
33 33 proxy_url = request.route_url('channelstream_proxy')
34 34 urls = {
35 35 'connect': request.route_path('channelstream_connect'),
36 36 'subscribe': request.route_path('channelstream_subscribe'),
37 37 'longpoll': longpoll_url or proxy_url,
38 38 'ws': ws_url or proxy_url.replace('http', 'ws')
39 39 }
40 40 return json.dumps(urls)
41 41
42 42
43 43 PLUGIN_DEFINITION = {
44 44 'name': 'channelstream',
45 45 'config': {
46 46 'javascript': [],
47 47 'css': [],
48 48 'template_hooks': {
49 49 'plugin_init_template': 'rhodecode:templates/channelstream/plugin_init.mako'
50 50 },
51 51 'url_gen': url_gen,
52 52 'static': None,
53 53 'enabled': False,
54 54 'server': '',
55 55 'secret': ''
56 56 }
57 57 }
58 58
59 59
60 60 def includeme(config):
61 61 settings = config.registry.settings
62 62 PLUGIN_DEFINITION['config']['enabled'] = asbool(
63 63 settings.get('channelstream.enabled'))
64 64 PLUGIN_DEFINITION['config']['server'] = settings.get(
65 65 'channelstream.server', '')
66 66 PLUGIN_DEFINITION['config']['secret'] = settings.get(
67 67 'channelstream.secret', '')
68 68 PLUGIN_DEFINITION['config']['history.location'] = settings.get(
69 69 'channelstream.history.location', '')
70 70 config.register_rhodecode_plugin(
71 71 PLUGIN_DEFINITION['name'],
72 72 PLUGIN_DEFINITION['config']
73 73 )
74 74 # create plugin history location
75 75 history_dir = PLUGIN_DEFINITION['config']['history.location']
76 76 if history_dir and not os.path.exists(history_dir):
77 77 os.makedirs(history_dir, 0750)
78 78
79 79 config.add_route(
80 80 name='channelstream_connect',
81 81 pattern=ADMIN_PREFIX + '/channelstream/connect')
82 82 config.add_route(
83 83 name='channelstream_subscribe',
84 84 pattern=ADMIN_PREFIX + '/channelstream/subscribe')
85 85 config.add_route(
86 86 name='channelstream_proxy',
87 87 pattern=settings.get('channelstream.proxy_path') or '/_channelstream')
88 config.scan('rhodecode.channelstream')
88
89 # Scan module for configuration decorators.
90 config.scan()
1 NO CONTENT: file renamed from rhodecode/channelstream/views.py to rhodecode/apps/channelstream/views.py
@@ -1,501 +1,501 b''
1 1 # -*- coding: utf-8 -*-
2 2
3 3 # Copyright (C) 2010-2017 RhodeCode GmbH
4 4 #
5 5 # This program is free software: you can redistribute it and/or modify
6 6 # it under the terms of the GNU Affero General Public License, version 3
7 7 # (only), as published by the Free Software Foundation.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU Affero General Public License
15 15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 16 #
17 17 # This program is dual-licensed. If you wish to learn more about the
18 18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20 20
21 21 """
22 22 Pylons middleware initialization
23 23 """
24 24 import logging
25 25 from collections import OrderedDict
26 26
27 27 from paste.registry import RegistryManager
28 28 from paste.gzipper import make_gzip_middleware
29 29 from pylons.wsgiapp import PylonsApp
30 30 from pyramid.authorization import ACLAuthorizationPolicy
31 31 from pyramid.config import Configurator
32 32 from pyramid.settings import asbool, aslist
33 33 from pyramid.wsgi import wsgiapp
34 34 from pyramid.httpexceptions import (
35 35 HTTPException, HTTPError, HTTPInternalServerError, HTTPFound)
36 36 from pyramid.events import ApplicationCreated
37 37 from pyramid.renderers import render_to_response
38 38 from routes.middleware import RoutesMiddleware
39 39 import routes.util
40 40
41 41 import rhodecode
42 42 from rhodecode.model import meta
43 43 from rhodecode.config import patches
44 44 from rhodecode.config.routing import STATIC_FILE_PREFIX
45 45 from rhodecode.config.environment import (
46 46 load_environment, load_pyramid_environment)
47 47 from rhodecode.lib.middleware import csrf
48 48 from rhodecode.lib.middleware.appenlight import wrap_in_appenlight_if_enabled
49 49 from rhodecode.lib.middleware.error_handling import (
50 50 PylonsErrorHandlingMiddleware)
51 51 from rhodecode.lib.middleware.https_fixup import HttpsFixup
52 52 from rhodecode.lib.middleware.vcs import VCSMiddleware
53 53 from rhodecode.lib.plugins.utils import register_rhodecode_plugin
54 54 from rhodecode.lib.utils2 import aslist as rhodecode_aslist
55 55 from rhodecode.subscribers import (
56 56 scan_repositories_if_enabled, write_metadata_if_needed)
57 57
58 58
59 59 log = logging.getLogger(__name__)
60 60
61 61
62 62 # this is used to avoid avoid the route lookup overhead in routesmiddleware
63 63 # for certain routes which won't go to pylons to - eg. static files, debugger
64 64 # it is only needed for the pylons migration and can be removed once complete
65 65 class SkippableRoutesMiddleware(RoutesMiddleware):
66 66 """ Routes middleware that allows you to skip prefixes """
67 67
68 68 def __init__(self, *args, **kw):
69 69 self.skip_prefixes = kw.pop('skip_prefixes', [])
70 70 super(SkippableRoutesMiddleware, self).__init__(*args, **kw)
71 71
72 72 def __call__(self, environ, start_response):
73 73 for prefix in self.skip_prefixes:
74 74 if environ['PATH_INFO'].startswith(prefix):
75 75 # added to avoid the case when a missing /_static route falls
76 76 # through to pylons and causes an exception as pylons is
77 77 # expecting wsgiorg.routingargs to be set in the environ
78 78 # by RoutesMiddleware.
79 79 if 'wsgiorg.routing_args' not in environ:
80 80 environ['wsgiorg.routing_args'] = (None, {})
81 81 return self.app(environ, start_response)
82 82
83 83 return super(SkippableRoutesMiddleware, self).__call__(
84 84 environ, start_response)
85 85
86 86
87 87 def make_app(global_conf, static_files=True, **app_conf):
88 88 """Create a Pylons WSGI application and return it
89 89
90 90 ``global_conf``
91 91 The inherited configuration for this application. Normally from
92 92 the [DEFAULT] section of the Paste ini file.
93 93
94 94 ``app_conf``
95 95 The application's local configuration. Normally specified in
96 96 the [app:<name>] section of the Paste ini file (where <name>
97 97 defaults to main).
98 98
99 99 """
100 100 # Apply compatibility patches
101 101 patches.kombu_1_5_1_python_2_7_11()
102 102 patches.inspect_getargspec()
103 103
104 104 # Configure the Pylons environment
105 105 config = load_environment(global_conf, app_conf)
106 106
107 107 # The Pylons WSGI app
108 108 app = PylonsApp(config=config)
109 109 if rhodecode.is_test:
110 110 app = csrf.CSRFDetector(app)
111 111
112 112 expected_origin = config.get('expected_origin')
113 113 if expected_origin:
114 114 # The API can be accessed from other Origins.
115 115 app = csrf.OriginChecker(app, expected_origin,
116 116 skip_urls=[routes.util.url_for('api')])
117 117
118 118 # Establish the Registry for this application
119 119 app = RegistryManager(app)
120 120
121 121 app.config = config
122 122
123 123 return app
124 124
125 125
126 126 def make_pyramid_app(global_config, **settings):
127 127 """
128 128 Constructs the WSGI application based on Pyramid and wraps the Pylons based
129 129 application.
130 130
131 131 Specials:
132 132
133 133 * We migrate from Pylons to Pyramid. While doing this, we keep both
134 134 frameworks functional. This involves moving some WSGI middlewares around
135 135 and providing access to some data internals, so that the old code is
136 136 still functional.
137 137
138 138 * The application can also be integrated like a plugin via the call to
139 139 `includeme`. This is accompanied with the other utility functions which
140 140 are called. Changing this should be done with great care to not break
141 141 cases when these fragments are assembled from another place.
142 142
143 143 """
144 144 # The edition string should be available in pylons too, so we add it here
145 145 # before copying the settings.
146 146 settings.setdefault('rhodecode.edition', 'Community Edition')
147 147
148 148 # As long as our Pylons application does expect "unprepared" settings, make
149 149 # sure that we keep an unmodified copy. This avoids unintentional change of
150 150 # behavior in the old application.
151 151 settings_pylons = settings.copy()
152 152
153 153 sanitize_settings_and_apply_defaults(settings)
154 154 config = Configurator(settings=settings)
155 155 add_pylons_compat_data(config.registry, global_config, settings_pylons)
156 156
157 157 load_pyramid_environment(global_config, settings)
158 158
159 159 includeme_first(config)
160 160 includeme(config)
161 161 pyramid_app = config.make_wsgi_app()
162 162 pyramid_app = wrap_app_in_wsgi_middlewares(pyramid_app, config)
163 163 pyramid_app.config = config
164 164
165 165 # creating the app uses a connection - return it after we are done
166 166 meta.Session.remove()
167 167
168 168 return pyramid_app
169 169
170 170
171 171 def make_not_found_view(config):
172 172 """
173 173 This creates the view which should be registered as not-found-view to
174 174 pyramid. Basically it contains of the old pylons app, converted to a view.
175 175 Additionally it is wrapped by some other middlewares.
176 176 """
177 177 settings = config.registry.settings
178 178 vcs_server_enabled = settings['vcs.server.enable']
179 179
180 180 # Make pylons app from unprepared settings.
181 181 pylons_app = make_app(
182 182 config.registry._pylons_compat_global_config,
183 183 **config.registry._pylons_compat_settings)
184 184 config.registry._pylons_compat_config = pylons_app.config
185 185
186 186 # Appenlight monitoring.
187 187 pylons_app, appenlight_client = wrap_in_appenlight_if_enabled(
188 188 pylons_app, settings)
189 189
190 190 # The pylons app is executed inside of the pyramid 404 exception handler.
191 191 # Exceptions which are raised inside of it are not handled by pyramid
192 192 # again. Therefore we add a middleware that invokes the error handler in
193 193 # case of an exception or error response. This way we return proper error
194 194 # HTML pages in case of an error.
195 195 reraise = (settings.get('debugtoolbar.enabled', False) or
196 196 rhodecode.disable_error_handler)
197 197 pylons_app = PylonsErrorHandlingMiddleware(
198 198 pylons_app, error_handler, reraise)
199 199
200 200 # The VCSMiddleware shall operate like a fallback if pyramid doesn't find a
201 201 # view to handle the request. Therefore it is wrapped around the pylons
202 202 # app. It has to be outside of the error handling otherwise error responses
203 203 # from the vcsserver are converted to HTML error pages. This confuses the
204 204 # command line tools and the user won't get a meaningful error message.
205 205 if vcs_server_enabled:
206 206 pylons_app = VCSMiddleware(
207 207 pylons_app, settings, appenlight_client, registry=config.registry)
208 208
209 209 # Convert WSGI app to pyramid view and return it.
210 210 return wsgiapp(pylons_app)
211 211
212 212
213 213 def add_pylons_compat_data(registry, global_config, settings):
214 214 """
215 215 Attach data to the registry to support the Pylons integration.
216 216 """
217 217 registry._pylons_compat_global_config = global_config
218 218 registry._pylons_compat_settings = settings
219 219
220 220
221 221 def error_handler(exception, request):
222 222 import rhodecode
223 223 from rhodecode.lib.utils2 import AttributeDict
224 224
225 225 rhodecode_title = rhodecode.CONFIG.get('rhodecode_title') or 'RhodeCode'
226 226
227 227 base_response = HTTPInternalServerError()
228 228 # prefer original exception for the response since it may have headers set
229 229 if isinstance(exception, HTTPException):
230 230 base_response = exception
231 231
232 232 def is_http_error(response):
233 233 # error which should have traceback
234 234 return response.status_code > 499
235 235
236 236 if is_http_error(base_response):
237 237 log.exception(
238 238 'error occurred handling this request for path: %s', request.path)
239 239
240 240 c = AttributeDict()
241 241 c.error_message = base_response.status
242 242 c.error_explanation = base_response.explanation or str(base_response)
243 243 c.visual = AttributeDict()
244 244
245 245 c.visual.rhodecode_support_url = (
246 246 request.registry.settings.get('rhodecode_support_url') or
247 247 request.route_url('rhodecode_support')
248 248 )
249 249 c.redirect_time = 0
250 250 c.rhodecode_name = rhodecode_title
251 251 if not c.rhodecode_name:
252 252 c.rhodecode_name = 'Rhodecode'
253 253
254 254 c.causes = []
255 255 if hasattr(base_response, 'causes'):
256 256 c.causes = base_response.causes
257 257
258 258 response = render_to_response(
259 259 '/errors/error_document.mako', {'c': c}, request=request,
260 260 response=base_response)
261 261
262 262 return response
263 263
264 264
265 265 def includeme(config):
266 266 settings = config.registry.settings
267 267
268 268 # plugin information
269 269 config.registry.rhodecode_plugins = OrderedDict()
270 270
271 271 config.add_directive(
272 272 'register_rhodecode_plugin', register_rhodecode_plugin)
273 273
274 274 if asbool(settings.get('appenlight', 'false')):
275 275 config.include('appenlight_client.ext.pyramid_tween')
276 276
277 277 # Includes which are required. The application would fail without them.
278 278 config.include('pyramid_mako')
279 279 config.include('pyramid_beaker')
280 280
281 config.include('rhodecode.channelstream')
282 281 config.include('rhodecode.authentication')
283 282 config.include('rhodecode.integrations')
284 283
285 284 # apps
286 285 config.include('rhodecode.apps.admin')
286 config.include('rhodecode.apps.channelstream')
287 287 config.include('rhodecode.apps.login')
288 288 config.include('rhodecode.apps.user_profile')
289 289
290 290 config.include('rhodecode.tweens')
291 291 config.include('rhodecode.api')
292 292 config.include('rhodecode.svn_support')
293 293
294 294 config.add_route(
295 295 'rhodecode_support', 'https://rhodecode.com/help/', static=True)
296 296
297 297 config.add_translation_dirs('rhodecode:i18n/')
298 298 settings['default_locale_name'] = settings.get('lang', 'en')
299 299
300 300 # Add subscribers.
301 301 config.add_subscriber(scan_repositories_if_enabled, ApplicationCreated)
302 302 config.add_subscriber(write_metadata_if_needed, ApplicationCreated)
303 303
304 304 # Set the authorization policy.
305 305 authz_policy = ACLAuthorizationPolicy()
306 306 config.set_authorization_policy(authz_policy)
307 307
308 308 # Set the default renderer for HTML templates to mako.
309 309 config.add_mako_renderer('.html')
310 310
311 311 # include RhodeCode plugins
312 312 includes = aslist(settings.get('rhodecode.includes', []))
313 313 for inc in includes:
314 314 config.include(inc)
315 315
316 316 # This is the glue which allows us to migrate in chunks. By registering the
317 317 # pylons based application as the "Not Found" view in Pyramid, we will
318 318 # fallback to the old application each time the new one does not yet know
319 319 # how to handle a request.
320 320 config.add_notfound_view(make_not_found_view(config))
321 321
322 322 if not settings.get('debugtoolbar.enabled', False):
323 323 # if no toolbar, then any exception gets caught and rendered
324 324 config.add_view(error_handler, context=Exception)
325 325
326 326 config.add_view(error_handler, context=HTTPError)
327 327
328 328
329 329 def includeme_first(config):
330 330 # redirect automatic browser favicon.ico requests to correct place
331 331 def favicon_redirect(context, request):
332 332 return HTTPFound(
333 333 request.static_path('rhodecode:public/images/favicon.ico'))
334 334
335 335 config.add_view(favicon_redirect, route_name='favicon')
336 336 config.add_route('favicon', '/favicon.ico')
337 337
338 338 def robots_redirect(context, request):
339 339 return HTTPFound(
340 340 request.static_path('rhodecode:public/robots.txt'))
341 341
342 342 config.add_view(robots_redirect, route_name='robots')
343 343 config.add_route('robots', '/robots.txt')
344 344
345 345 config.add_static_view(
346 346 '_static/deform', 'deform:static')
347 347 config.add_static_view(
348 348 '_static/rhodecode', path='rhodecode:public', cache_max_age=3600 * 24)
349 349
350 350
351 351 def wrap_app_in_wsgi_middlewares(pyramid_app, config):
352 352 """
353 353 Apply outer WSGI middlewares around the application.
354 354
355 355 Part of this has been moved up from the Pylons layer, so that the
356 356 data is also available if old Pylons code is hit through an already ported
357 357 view.
358 358 """
359 359 settings = config.registry.settings
360 360
361 361 # enable https redirects based on HTTP_X_URL_SCHEME set by proxy
362 362 pyramid_app = HttpsFixup(pyramid_app, settings)
363 363
364 364 # Add RoutesMiddleware to support the pylons compatibility tween during
365 365 # migration to pyramid.
366 366 pyramid_app = SkippableRoutesMiddleware(
367 367 pyramid_app, config.registry._pylons_compat_config['routes.map'],
368 368 skip_prefixes=(STATIC_FILE_PREFIX, '/_debug_toolbar'))
369 369
370 370 pyramid_app, _ = wrap_in_appenlight_if_enabled(pyramid_app, settings)
371 371
372 372 if settings['gzip_responses']:
373 373 pyramid_app = make_gzip_middleware(
374 374 pyramid_app, settings, compress_level=1)
375 375
376 376 # this should be the outer most middleware in the wsgi stack since
377 377 # middleware like Routes make database calls
378 378 def pyramid_app_with_cleanup(environ, start_response):
379 379 try:
380 380 return pyramid_app(environ, start_response)
381 381 finally:
382 382 # Dispose current database session and rollback uncommitted
383 383 # transactions.
384 384 meta.Session.remove()
385 385
386 386 # In a single threaded mode server, on non sqlite db we should have
387 387 # '0 Current Checked out connections' at the end of a request,
388 388 # if not, then something, somewhere is leaving a connection open
389 389 pool = meta.Base.metadata.bind.engine.pool
390 390 log.debug('sa pool status: %s', pool.status())
391 391
392 392
393 393 return pyramid_app_with_cleanup
394 394
395 395
396 396 def sanitize_settings_and_apply_defaults(settings):
397 397 """
398 398 Applies settings defaults and does all type conversion.
399 399
400 400 We would move all settings parsing and preparation into this place, so that
401 401 we have only one place left which deals with this part. The remaining parts
402 402 of the application would start to rely fully on well prepared settings.
403 403
404 404 This piece would later be split up per topic to avoid a big fat monster
405 405 function.
406 406 """
407 407
408 408 # Pyramid's mako renderer has to search in the templates folder so that the
409 409 # old templates still work. Ported and new templates are expected to use
410 410 # real asset specifications for the includes.
411 411 mako_directories = settings.setdefault('mako.directories', [
412 412 # Base templates of the original Pylons application
413 413 'rhodecode:templates',
414 414 ])
415 415 log.debug(
416 416 "Using the following Mako template directories: %s",
417 417 mako_directories)
418 418
419 419 # Default includes, possible to change as a user
420 420 pyramid_includes = settings.setdefault('pyramid.includes', [
421 421 'rhodecode.lib.middleware.request_wrapper',
422 422 ])
423 423 log.debug(
424 424 "Using the following pyramid.includes: %s",
425 425 pyramid_includes)
426 426
427 427 # TODO: johbo: Re-think this, usually the call to config.include
428 428 # should allow to pass in a prefix.
429 429 settings.setdefault('rhodecode.api.url', '/_admin/api')
430 430
431 431 # Sanitize generic settings.
432 432 _list_setting(settings, 'default_encoding', 'UTF-8')
433 433 _bool_setting(settings, 'is_test', 'false')
434 434 _bool_setting(settings, 'gzip_responses', 'false')
435 435
436 436 # Call split out functions that sanitize settings for each topic.
437 437 _sanitize_appenlight_settings(settings)
438 438 _sanitize_vcs_settings(settings)
439 439
440 440 return settings
441 441
442 442
443 443 def _sanitize_appenlight_settings(settings):
444 444 _bool_setting(settings, 'appenlight', 'false')
445 445
446 446
447 447 def _sanitize_vcs_settings(settings):
448 448 """
449 449 Applies settings defaults and does type conversion for all VCS related
450 450 settings.
451 451 """
452 452 _string_setting(settings, 'vcs.svn.compatible_version', '')
453 453 _string_setting(settings, 'git_rev_filter', '--all')
454 454 _string_setting(settings, 'vcs.hooks.protocol', 'http')
455 455 _string_setting(settings, 'vcs.scm_app_implementation', 'http')
456 456 _string_setting(settings, 'vcs.server', '')
457 457 _string_setting(settings, 'vcs.server.log_level', 'debug')
458 458 _string_setting(settings, 'vcs.server.protocol', 'http')
459 459 _bool_setting(settings, 'startup.import_repos', 'false')
460 460 _bool_setting(settings, 'vcs.hooks.direct_calls', 'false')
461 461 _bool_setting(settings, 'vcs.server.enable', 'true')
462 462 _bool_setting(settings, 'vcs.start_server', 'false')
463 463 _list_setting(settings, 'vcs.backends', 'hg, git, svn')
464 464 _int_setting(settings, 'vcs.connection_timeout', 3600)
465 465
466 466 # Support legacy values of vcs.scm_app_implementation. Legacy
467 467 # configurations may use 'rhodecode.lib.middleware.utils.scm_app_http'
468 468 # which is now mapped to 'http'.
469 469 scm_app_impl = settings['vcs.scm_app_implementation']
470 470 if scm_app_impl == 'rhodecode.lib.middleware.utils.scm_app_http':
471 471 settings['vcs.scm_app_implementation'] = 'http'
472 472
473 473
474 474 def _int_setting(settings, name, default):
475 475 settings[name] = int(settings.get(name, default))
476 476
477 477
478 478 def _bool_setting(settings, name, default):
479 479 input = settings.get(name, default)
480 480 if isinstance(input, unicode):
481 481 input = input.encode('utf8')
482 482 settings[name] = asbool(input)
483 483
484 484
485 485 def _list_setting(settings, name, default):
486 486 raw_value = settings.get(name, default)
487 487
488 488 old_separator = ','
489 489 if old_separator in raw_value:
490 490 # If we get a comma separated list, pass it to our own function.
491 491 settings[name] = rhodecode_aslist(raw_value, sep=old_separator)
492 492 else:
493 493 # Otherwise we assume it uses pyramids space/newline separation.
494 494 settings[name] = aslist(raw_value)
495 495
496 496
497 497 def _string_setting(settings, name, default, lower=True):
498 498 value = settings.get(name, default)
499 499 if lower:
500 500 value = value.lower()
501 501 settings[name] = value
General Comments 0
You need to be logged in to leave comments. Login now