/django/core/management/commands/diffsettings.py

https://code.google.com/p/mango-py/ · Python · 32 lines · 23 code · 7 blank · 2 comment · 5 complexity · 934bc04defaa8de8ae43175de9b23932 MD5 · raw file

  1. from django.core.management.base import NoArgsCommand
  2. def module_to_dict(module, omittable=lambda k: k.startswith('_')):
  3. "Converts a module namespace to a Python dictionary. Used by get_settings_diff."
  4. return dict([(k, repr(v)) for k, v in module.__dict__.items() if not omittable(k)])
  5. class Command(NoArgsCommand):
  6. help = """Displays differences between the current settings.py and Django's
  7. default settings. Settings that don't appear in the defaults are
  8. followed by "###"."""
  9. requires_model_validation = False
  10. def handle_noargs(self, **options):
  11. # Inspired by Postfix's "postconf -n".
  12. from django.conf import settings, global_settings
  13. # Because settings are imported lazily, we need to explicitly load them.
  14. settings._setup()
  15. user_settings = module_to_dict(settings._wrapped)
  16. default_settings = module_to_dict(global_settings)
  17. output = []
  18. keys = user_settings.keys()
  19. keys.sort()
  20. for key in keys:
  21. if key not in default_settings:
  22. output.append("%s = %s ###" % (key, user_settings[key]))
  23. elif user_settings[key] != default_settings[key]:
  24. output.append("%s = %s" % (key, user_settings[key]))
  25. return '\n'.join(output)