Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

8 changes: 4 additions & 4 deletions common/djangoapps/third_party_auth/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ class OAuth2ProviderConfig(ProviderConfig):
u'For increased security, you can avoid storing this in your database by leaving '
' this field blank and setting '
'SOCIAL_AUTH_OAUTH_SECRETS = {"(backend name)": "secret", ...} '
'in your instance\'s Django settings (or lms.yml)'
'in your instance\'s Django settings (or lms.auth.json)'
)
)
other_settings = models.TextField(blank=True, help_text=u"Optional JSON object with advanced settings, if any.")
Expand Down Expand Up @@ -431,7 +431,7 @@ class SAMLConfiguration(ConfigurationModel):
'Paste the contents of saml.key here. '
'For increased security, you can avoid storing this in your database by leaving '
'this field blank and setting it via the SOCIAL_AUTH_SAML_SP_PRIVATE_KEY setting '
'in your instance\'s Django settings (or lms.yml).'
'in your instance\'s Django settings (or lms.auth.json).'
),
blank=True,
)
Expand All @@ -440,7 +440,7 @@ class SAMLConfiguration(ConfigurationModel):
u'Public key certificate. '
'For increased security, you can avoid storing this in your database by leaving '
'this field blank and setting it via the SOCIAL_AUTH_SAML_SP_PUBLIC_CERT setting '
'in your instance\'s Django settings (or lms.yml).'
'in your instance\'s Django settings (or lms.auth.json).'
),
blank=True,
)
Expand Down Expand Up @@ -834,7 +834,7 @@ class LTIProviderConfig(ProviderConfig):
'For increased security, you can avoid storing this in '
'your database by leaving this field blank and setting '
'SOCIAL_AUTH_LTI_CONSUMER_SECRETS = {"consumer key": "secret", ...} '
'in your instance\'s Django setttigs (or lms.yml)'
'in your instance\'s Django setttigs (or lms.auth.json)'
),
blank=True,
)
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/frontend/static_assets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ mechanism:

``openedx.core.djangoapps.theming.finders.ThemeFilesFinder``
Custom finder that overrides any static asset with a version from the themes
directory (``COMPREHENSIVE_THEME_DIRS`` defined in ``lms.yml`` and
``studio.yml``).
directory (``COMPREHENSIVE_THEME_DIRS`` defined in ``lms.envs.json`` and
``cms.envs.json``).

``openedx.core.lib.xblock_pipeline.finder.XBlockPipelineFinder``
Custom finder that accesses and extracts assets from pip-installed XBlocks via
Expand Down
2 changes: 1 addition & 1 deletion lms/djangoapps/branding/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ def _footer_logo_img(is_secure):
logo_name = configuration_helpers.get_value('FOOTER_ORGANIZATION_IMAGE', settings.FOOTER_ORGANIZATION_IMAGE)
# `logo_name` is looked up from the configuration,
# which falls back on the Django settings, which loads it from
# `lms.yml`, which is created and managed by Ansible. Because of
# `lms.env.json`, which is created and managed by Ansible. Because of
# this runaround, we lose a lot of the flexibility that Django's
# staticfiles system provides, and we end up having to hardcode the path
# to the footer logo rather than use the comprehensive theming system.
Expand Down
2 changes: 1 addition & 1 deletion lms/envs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -3541,7 +3541,7 @@ def _make_locale_paths(settings): # pylint: disable=missing-function-docstring
# IE: custom_form_app.forms.RegistrationExtensionForm
# Note: If you want to use a model to store the results of the form, you will
# need to add the model's app to the ADDL_INSTALLED_APPS array in your
# lms.yml file.
# lms.env.json file.

REGISTRATION_EXTENSION_FORM = None

Expand Down
4 changes: 2 additions & 2 deletions themes/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ directory. There are two ways to do this.
$ sudo /edx/bin/update configuration master
$ sudo /edx/bin/update edx-platform HEAD

#. Otherwise, edit the /edx/app/edxapp/lms.yml file to add the
#. Otherwise, edit the /edx/app/edxapp/lms.env.json file to add the
``COMPREHENSIVE_THEME_DIRS`` value::

"COMPREHENSIVE_THEME_DIRS": ["/full/path/to/my-theme"],
Expand Down Expand Up @@ -180,7 +180,7 @@ In addition, there are some other changes you'll need to make:
config value in your site configuration.

* You can set the google site verification ID in the GOOGLE_SITE_VERIFICATION_ID
in your site configuration. Otherwise, edit the /edx/app/edxapp/lms.yml
in your site configuration. Otherwise, edit the /edx/app/edxapp/lms.env.json
file to set the value for GOOGLE_SITE_VERIFICATION_ID. Setting the value for
GOOGLE_SITE_VERIFICATION_ID will add the meta tag for google site verification
in the lms/templates/main.html which is the main Mako template that all page
Expand Down