From 43cc83fac0dfbf4de63bf01dcc968e76268d3236 Mon Sep 17 00:00:00 2001 From: Kyle D McCormick Date: Wed, 12 Aug 2026 09:06:05 -0400 Subject: [PATCH 1/2] docs: Update LIBRARY_ENABLED_BLOCKS default annotation The code was updated but the setting_default annotation wasn't. --- cms/envs/common.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cms/envs/common.py b/cms/envs/common.py index 4d7f4d5d26e9..40676d5f0063 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -1313,7 +1313,9 @@ def _should_send_xblock_events(settings): MEILISEARCH_API_KEY = "devkey" # .. setting_name: LIBRARY_ENABLED_BLOCKS -# .. setting_default: ['problem', 'video', 'html', 'drag-and-drop-v2'] +# .. setting_default: ['problem', 'video', 'html', 'drag-and-drop-v2', 'openassessment', 'conditional', +# 'done', 'edx_sga', 'freetextresponse', 'google-calendar', 'google-document', 'invideoquiz', 'lti', +# 'lti_consumer', 'pdf', 'poll', 'survey', 'word_cloud'] # .. setting_description: List of block types that are ready/enabled to be created/used # .. in libraries. Both basic blocks and advanced blocks can be included. # .. In the future, we will support individual configuration per library - see From 6f3000c39447e21d369a0fc3a58bec14d7e3d81d Mon Sep 17 00:00:00 2001 From: Kyle D McCormick Date: Wed, 12 Aug 2026 11:40:16 -0400 Subject: [PATCH 2/2] docs: Try to fix setting_default rendering (no line break0 --- cms/envs/common.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cms/envs/common.py b/cms/envs/common.py index 40676d5f0063..fee771b6a23f 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -1313,9 +1313,7 @@ def _should_send_xblock_events(settings): MEILISEARCH_API_KEY = "devkey" # .. setting_name: LIBRARY_ENABLED_BLOCKS -# .. setting_default: ['problem', 'video', 'html', 'drag-and-drop-v2', 'openassessment', 'conditional', -# 'done', 'edx_sga', 'freetextresponse', 'google-calendar', 'google-document', 'invideoquiz', 'lti', -# 'lti_consumer', 'pdf', 'poll', 'survey', 'word_cloud'] +# .. setting_default: ['problem', 'video', 'html', 'drag-and-drop-v2', 'openassessment', 'conditional', 'done', 'edx_sga', 'freetextresponse', 'google-calendar', 'google-document', 'invideoquiz', 'lti', 'lti_consumer', 'pdf', 'poll', 'survey', 'word_cloud'] # noqa: E501 # .. setting_description: List of block types that are ready/enabled to be created/used # .. in libraries. Both basic blocks and advanced blocks can be included. # .. In the future, we will support individual configuration per library - see