Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jz vest 7 course tile #4

Open
wants to merge 18 commits into
base: viceclass-prod
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion cms/envs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -1082,7 +1082,7 @@
}

DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
DEFAULT_HASHING_ALGORITHM = 'sha1'
DEFAULT_HASHING_ALGORITHM = 'sha256'

#################### Python sandbox ############################################

Expand Down
63 changes: 63 additions & 0 deletions lms/djangoapps/certificates/tests/test_webview_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
)
from openedx.core.djangolib.js_utils import js_escaped_string
from openedx.core.djangolib.testing.utils import CacheIsolationTestCase
from openedx.core.lib.courses import course_image_url
from openedx.core.lib.tests.assertions.events import assert_event_matches
from openedx.features.name_affirmation_api.utils import get_name_affirmation_service
from xmodule.data import CertificatesDisplayBehaviors # lint-amnesty, pylint: disable=wrong-import-order
Expand Down Expand Up @@ -351,6 +352,68 @@ def test_linkedin_share_url_site(self):
js_escaped_string(self.linkedin_url.format(params=urlencode(params))),
)

@patch.dict("django.conf.settings.SOCIAL_SHARING_SETTINGS", {
"CERTIFICATE_FACEBOOK": True,
"CERTIFICATE_FACEBOOK_TEXT": "test FB text"
})
@override_settings(FEATURES=FEATURES_WITH_CERTS_ENABLED)
def test_render_certificate_html_view_with_facebook_meta_tags(self):
"""
Test view html certificate if share to FB is enabled.
If 'facebook_share_enabled=True', <meta> tags with property="og:..."
must be enabled to pass parameters to FB.
"""
self._add_course_certificates(count=1, signatory_count=1, is_active=True)
self.course.cert_html_view_enabled = True
self.course.save()
self.update_course(self.course, self.user.id)
test_url = get_certificate_url(
user_id=self.user.id,
course_id=str(self.course.id),
uuid=self.cert.verify_uuid
)
platform_name = settings.PLATFORM_NAME
share_url = f'http://testserver{test_url}'
full_course_image_url = f'http://testserver{course_image_url(self.course)}'
document_title = f'{self.course.org} {self.course.number} Certificate | {platform_name}'
response = self.client.get(test_url)

assert response.status_code == 200
self.assertContains(response, f'<meta property="og:url" content="{share_url}" />')
self.assertContains(response, f'<meta property="og:title" content="{document_title}" />')
self.assertContains(response, '<meta property="og:type" content="image/png" />')
self.assertContains(response, f'<meta property="og:image" content="{full_course_image_url}" />')
self.assertContains(response, '<meta property="og:description" content="test FB text" />')

@patch.dict("django.conf.settings.SOCIAL_SHARING_SETTINGS", {
"CERTIFICATE_FACEBOOK": False,
})
@override_settings(FEATURES=FEATURES_WITH_CERTS_ENABLED)
def test_render_certificate_html_view_without_facebook_meta_tags(self):
"""
Test view html certificate if share to FB is disabled.
If 'facebook_share_enabled=False', html certificate view
should not contain <meta> tags with parameters property="og:..."
"""
self._add_course_certificates(count=1, signatory_count=1, is_active=True)
self.course.cert_html_view_enabled = True
self.course.save()
self.update_course(self.course, self.user.id)

test_url = get_certificate_url(
user_id=self.user.id,
course_id=str(self.course.id),
uuid=self.cert.verify_uuid
)
response = self.client.get(test_url)

assert response.status_code == 200
self.assertNotContains(response, '<meta property="og:url" ')
self.assertNotContains(response, '<meta property="og:title" ')
self.assertNotContains(response, '<meta property="og:type" content="image/png" />')
self.assertNotContains(response, '<meta property="og:image" ')
self.assertNotContains(response, '<meta property="og:description" ')

@override_settings(FEATURES=FEATURES_WITH_CERTS_ENABLED)
@patch.dict("django.conf.settings.SOCIAL_SHARING_SETTINGS", {"CERTIFICATE_FACEBOOK": True})
@with_site_configuration(
Expand Down
5 changes: 2 additions & 3 deletions lms/djangoapps/discussion/rest_api/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,10 +402,9 @@ def get_unread_comment_count(self, obj):

def get_preview_body(self, obj):
"""
Returns a cleaned and truncated version of the thread's body to display in a
preview capacity.
Returns a cleaned version of the thread's body to display in a preview capacity.
"""
return strip_tags(self.get_rendered_body(obj)).replace('\n', ' ')
return strip_tags(self.get_rendered_body(obj)).replace('\n', ' ').replace('&nbsp;', ' ')

def get_close_reason(self, obj):
"""
Expand Down
15 changes: 15 additions & 0 deletions lms/djangoapps/discussion/rest_api/tests/test_serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,21 @@ def test_response_count_missing(self):
serialized = self.serialize(thread_data)
assert 'response_count' not in serialized

def test_get_preview_body(self):
"""
Test for the 'get_preview_body' method.

This test verifies that the 'get_preview_body' method returns a cleaned
version of the thread's body that is suitable for display as a preview.
The test specifically focuses on handling the presence of multiple
spaces within the body.
"""
thread_data = self.make_cs_content(
{"body": "<p>This is a test thread body with some text.</p>"}
)
serialized = self.serialize(thread_data)
assert serialized['preview_body'] == "This is a test thread body with some text."


@ddt.ddt
class CommentSerializerTest(SerializerTestMixin, SharedModuleStoreTestCase):
Expand Down
6 changes: 5 additions & 1 deletion lms/djangoapps/discussion/rest_api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@
CourseView.as_view(),
name="discussion_course"
),
path('v1/accounts/retire_forum', RetireUserView.as_view(), name="retire_discussion_user"),
re_path(
r"^v1/accounts/retire_forum/?$",
RetireUserView.as_view(),
name="retire_discussion_user"
),
path('v1/accounts/replace_username', ReplaceUsernamesView.as_view(), name="replace_discussion_username"),
re_path(
fr"^v1/course_topics/{settings.COURSE_ID_PATTERN}",
Expand Down
2 changes: 1 addition & 1 deletion lms/envs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -1671,7 +1671,7 @@ def _make_mako_template_dirs(settings):


DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
DEFAULT_HASHING_ALGORITHM = 'sha1'
DEFAULT_HASHING_ALGORITHM = 'sha256'

#################### Python sandbox ############################################

Expand Down
83 changes: 65 additions & 18 deletions lms/static/sass/views/_homepage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
// TO-DO: combine this with _home.scss as a cleanup story

$learn-more-horizontal-position: calc(50% - 100px); // calculate the left position for "LEARN MORE" content
$height-course-info: ($baseline*5.5);
$padding-course-org: ($baseline*0.4);
$font-course-org: ($baseline*0.55);
$margin-course-title: ($baseline*0.75);
$bottom-course: ($baseline*0.45);
$horizontal-padding-course: ($baseline*0.65);
$font-course-date: ($baseline*0.5);

.courses-container {
@include outer-container;
Expand All @@ -28,7 +35,6 @@ $learn-more-horizontal-position: calc(50% - 100px); // calculate the left positi
@include transition(all $tmg-f3 linear 0s);

position: relative;
border-bottom: 3px solid $action-primary-bg;
box-shadow: 0 1px 10px 0 $black-t0, inset 0 0 0 1px $white-t3;
background: $body-bg;
width: 100%;
Expand Down Expand Up @@ -81,55 +87,96 @@ $learn-more-horizontal-position: calc(50% - 100px); // calculate the left positi
}

.course-info {
height: $course-info-height;
height: $height-course-info;
font-family: $font-family-sans-serif;

h2 {
font-family: $font-family-sans-serif;
}

.course-organization,
.course-code,
.course-date {
.course-code {
@extend %t-icon6;

color: $gray-d2;
}

.course-organization,
.course-code,
.course-title {
display: block;
color: #e85351;
display: inline;
text-transform: none;
}

.course-organization {
@include line-height(11);

padding: ($baseline/2) ($baseline*0.75) ($baseline/10) ($baseline*0.75);
padding: 0 $padding-course-org 0 $padding-course-org;
background-color: #FEEBEE;
margin: $margin-course-title;
font-size: $font-course-org;
}

.course-code {
@include line-height(16);

padding: 0 ($baseline*0.75);
padding: ($baseline*0.1) $margin-course-title;
float: right;
font-size: ($baseline*0.5);
}

.course-title {
@include line-height(16);

@extend %t-icon4;

margin: ($baseline*0.25) 0 ($baseline*1.75) 0;
padding: 0 ($baseline*0.75);
height: $course-title-height;
color: $link-color;
margin: $margin-course-title 0 $margin-course-title 0;
text-align: left;
padding: 0 $margin-course-title;
height: ($baseline*1.3);
color: black;
display: block;
text-transform: none;
font-size: 75%;
}

.date_instructor_container {
border: 1px solid #E9EAF0;
position: absolute;
bottom: 0;
width: 100%;
padding: ($baseline*0.3) 0;
}

.course-date {
@include line-height(14);
padding-left: ($baseline*1.5);
display: inline;
font-size: $font-course-date;
color: #777986;
}

.course-instructor {
@include line-height(14);

padding: (3*$baseline/10) $horizontal-padding-course (3*$baseline/10) 0;
font-size: $font-course-date;
color: #777986;
}

padding: ($baseline/10) ($baseline*0.75);
.instructor-wrapper {
float: right;
display: inline;
}

.date-clock {
color: #EB999A;
padding-left: $horizontal-padding-course;
position: absolute;
bottom: $bottom-course;
}

.instructor-icon {
color: #EB999A;
position: absolute;
bottom: $bottom-course;
margin-right: ($baseline*2);
right: ($baseline*1.1);
}
}

Expand Down
2 changes: 1 addition & 1 deletion lms/templates/certificates/_accomplishment-banner.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h3 class="sr-only">${_("Print or share your certificate:")}</h3>
% if facebook_share_enabled:
<button class="action action-share-facebook btn-inverse btn-small icon-only" id="action-share-facebook"
## xss-lint: disable=mako-invalid-html-filter
onclick="FaceBook.share({share_text: '${facebook_share_text | n, js_escaped_string}', share_link: '${share_url | n, js_escaped_string}', picture_link: '${full_course_image_url | n, js_escaped_string}', description: '${_('Click the link to see my certificate.') | n, js_escaped_string}'});">
onclick="FaceBook.share({share_link: '${share_url | n, js_escaped_string}'});"></button>
<span class="icon fa fa-facebook-official" aria-hidden="true"></span>
<span class="action-label">${_("Post on Facebook")}</span>
</button>
Expand Down
10 changes: 9 additions & 1 deletion lms/templates/certificates/accomplishment-base.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,15 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

% if facebook_share_enabled:
## OG (Open Graph) url, title, type, image and description added below to give social media info to display
## (https://developers.facebook.com/docs/opengraph/howtos/maximizing-distribution-media-content#tags)
<meta property="og:url" content="${share_url}" />
<meta property="og:title" content="${document_title}" />
<meta property="og:type" content="image/png" />
<meta property="og:image" content="${full_course_image_url}" />
<meta property="og:description" content="${facebook_share_text}" />
%endif
<title>${document_title}</title>

<%static:css group='style-certificates'/>
Expand Down
31 changes: 20 additions & 11 deletions lms/templates/course.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,26 @@ <h2 class="course-name">
<span class="course-code">${course.display_number_with_default}</span>
<span class="course-title">${course.display_name_with_default}</span>
</h2>
<%
if course.start is not None:
course_date_string = course.start.strftime('%Y-%m-%dT%H:%M:%S%z')
else:
course_date_string = ''
%>
% if course.advertised_start is not None:
<div class="course-date" aria-hidden="true">${_("Starts")}: ${course.advertised_start}</div>
% else:
<div class="course-date localized_datetime" aria-hidden="true" data-format="shortDate" data-datetime="${course_date_string}" data-language="${LANGUAGE_CODE}" data-string="${_("Starts: {date}")}"></div>
% endif
<div class="date_instructor_container">
<span class="mdi mdi-clock-outline date-clock"></span>
<%
if course.start is not None:
course_date_string = course.start.strftime('%Y-%m-%dT%H:%M:%S%z')
else:
course_date_string = 'end_date_unknown'
%>
% if course.advertised_start is not None:
<div class="course-date" aria-hidden="true">${_("Starts")}: ${course.advertised_start}</div>
% else:
<div class="course-date localized_datetime" aria-hidden="true" data-format="shortDate" data-datetime="${course_date_string}" data-language="${LANGUAGE_CODE}" data-string="${_("Started - {date}")}"></div>
% endif
<div class="instructor-wrapper">
<span class="mdi mdi-account-outline instructor-icon"></span>
<span class="course-instructor">instructor</span>
</div>

</div>

</div>
<div class="sr">
<ul>
Expand Down
1 change: 1 addition & 0 deletions lms/templates/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css">

## Define a couple of helper functions to make life easier when
## embedding theme conditionals into templates. All inheriting
Expand Down
8 changes: 4 additions & 4 deletions lms/templates/wiki/includes/editor_widget.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{% load i18n %}
{% load django_markup %}
<p id="hint_id_content" class="help-block">
{% filter force_escape %}
{% blocktrans with start_link="<a id='cheatsheetLink' href='#cheatsheetModal' rel='leanModal'>" end_link="</a>" trimmed %}
Markdown syntax is allowed. See the {{ start_link }}cheatsheet{{ end_link }} for help.
{% blocktrans trimmed asvar tmsg %}
Markdown syntax is allowed. See the {start_link}cheatsheet{end_link} for help.
{% endblocktrans %}
{% endfilter %}
{% interpolate_html tmsg start_link='<a id="cheatsheetLink" href="#cheatsheetModal" rel="leanModal">'|safe end_link='</a>'|safe %}
</p>
<textarea {{ attrs }}>{{ content }}</textarea>
Loading
Loading