Skip to content
Snippets Groups Projects
Commit 60fab86f authored by Andy Armstrong's avatar Andy Armstrong Committed by Renzo Lucioni
Browse files

Reconcile double reverts

Resolves conflicts between reverts of pattern library test pages and multi-site comprehensive theming, and the re-introduction of pattern library test pages. Fixes a pipeline rendering test which relied on other tests updating assets. The test now ensures that static assets are available before running.
parent affee692
No related branches found
Tags release-2020-01-24-15.46
No related merge requests found
Showing
with 97 additions and 92 deletions
// ------------------------------ // ------------------------------
// Studio: Shared Build Compile // Studio: Shared Build Compile
// Version 1 styling (pre-Pattern Library)
// About: Sass compile for Studio that are shared between LTR and RTL UI. Configuration and vendor specific imports happen before this shared set of imports are compiled in the studio-main-*.scss files. // About: Sass compile for Studio that are shared between LTR and RTL UI. Configuration and vendor specific imports happen before this shared set of imports are compiled in the studio-main-*.scss files.
......
// ------------------------------
// Studio: Shared Build Compile
// Version 2 - introduces the Pattern Library
// Configuration
@import 'config';
// Extensions
// ------------------------------
// Studio configuration settings
// ------------------------------
// #VARIABLES
// ------------------------------
...@@ -17,4 +17,4 @@ ...@@ -17,4 +17,4 @@
@import 'bourbon/bourbon'; // lib - bourbon @import 'bourbon/bourbon'; // lib - bourbon
@import 'vendor/bi-app/bi-app-rtl'; // set the layout for right to left languages @import 'vendor/bi-app/bi-app-rtl'; // set the layout for right to left languages
@import 'build'; // shared app style assets/rendering @import 'build-v1'; // shared app style assets/rendering
// studio - css architecture // Studio - css architecture
// Version 1 styling (pre-Pattern Library)
// ==================== // ====================
// Table of Contents // Table of Contents
...@@ -17,4 +18,4 @@ ...@@ -17,4 +18,4 @@
@import 'bourbon/bourbon'; // lib - bourbon @import 'bourbon/bourbon'; // lib - bourbon
@import 'vendor/bi-app/bi-app-ltr'; // set the layout for left to right languages @import 'vendor/bi-app/bi-app-ltr'; // set the layout for left to right languages
@import 'build'; // shared app style assets/rendering @import 'build-v1'; // shared app style assets/rendering
// ------------------------------
// Studio main styling
// Version 2 - introduces the Pattern Library
// NOTE: This is the right-to-left (RTL) configured style compile.
// It should mirror main-ltr w/ the exception of bi-app references.
// Load the RTL version of the edX Pattern Library
$pattern-library-path: '../edx-pattern-library' !default;
@import 'edx-pattern-library/pattern-library/sass/edx-pattern-library-rtl';
// Load the shared build
@import 'build-v2';
// ------------------------------
// Studio main styling
// Version 2 - introduces the Pattern Library
// NOTE: This is the left-to-right (LTR) configured style compile.
// It should mirror main-rtl w/ the exception of bi-app references.
// Load the LTR version of the edX Pattern Library
$pattern-library-path: '../edx-pattern-library' !default;
@import 'edx-pattern-library/pattern-library/sass/edx-pattern-library-ltr';
// Load the shared build
@import 'build-v2';
...@@ -13,6 +13,7 @@ from openedx.core.djangolib.js_utils import ( ...@@ -13,6 +13,7 @@ from openedx.core.djangolib.js_utils import (
dump_js_escaped_json, js_escaped_string dump_js_escaped_json, js_escaped_string
) )
%> %>
<%page expression_filter="h"/> <%page expression_filter="h"/>
<!doctype html> <!doctype html>
<!--[if lte IE 9]><html class="ie9 lte9" lang="${LANGUAGE_CODE}"><![endif]--> <!--[if lte IE 9]><html class="ie9 lte9" lang="${LANGUAGE_CODE}"><![endif]-->
...@@ -42,7 +43,8 @@ from openedx.core.djangolib.js_utils import ( ...@@ -42,7 +43,8 @@ from openedx.core.djangolib.js_utils import (
<%static:css group='style-vendor'/> <%static:css group='style-vendor'/>
<%static:css group='style-vendor-tinymce-content'/> <%static:css group='style-vendor-tinymce-content'/>
<%static:css group='style-vendor-tinymce-skin'/> <%static:css group='style-vendor-tinymce-skin'/>
<%static:css group='style-main'/>
<%static:css group='${self.attr.main_css}'/>
<%include file="widgets/segment-io.html" /> <%include file="widgets/segment-io.html" />
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
<ul> <ul>
<li><a href="container.html">Container page</a></li> <li><a href="container.html">Container page</a></li>
<li><a href="unit.html">Unit page</a></li> <li><a href="unit.html">Unit page</a></li>
<li><a href="pattern-library-test.html">Pattern Library test page</a></li>
</ul> </ul>
</section> </section>
</li> </li>
......
...@@ -5,6 +5,7 @@ from unittest import skipUnless ...@@ -5,6 +5,7 @@ from unittest import skipUnless
from django.conf import settings from django.conf import settings
from django.test import TestCase from django.test import TestCase
from paver.easy import call_task
from pipeline_mako import render_require_js_path_overrides, compressed_css, compressed_js from pipeline_mako import render_require_js_path_overrides, compressed_css, compressed_js
...@@ -42,6 +43,14 @@ class RequireJSPathOverridesTest(TestCase): ...@@ -42,6 +43,14 @@ class RequireJSPathOverridesTest(TestCase):
class PipelineRenderTest(TestCase): class PipelineRenderTest(TestCase):
"""Test individual pipeline rendering functions. """ """Test individual pipeline rendering functions. """
@classmethod
def setUpClass(cls):
"""
Create static assets once for all pipeline render tests.
"""
super(PipelineRenderTest, cls).setUpClass()
call_task('pavelib.assets.update_assets', args=('lms', '--settings=test'))
@skipUnless(settings.ROOT_URLCONF == 'lms.urls', 'Test only valid in LMS') @skipUnless(settings.ROOT_URLCONF == 'lms.urls', 'Test only valid in LMS')
@ddt.data( @ddt.data(
(True,), (True,),
......
// ------------------------------ // ------------------------------
// Open edX Certificates: Shared Build Compile // Open edX Certificates: Shared Build Compile
// About: Sass compile for Open edX Certificates elements that are shared between LTR and RTL UI. Configuration and vendor specific imports happen before this shared set of imports are compiled in the main-*.scss files. // About: Sass compile for Open edX Certificates elements that are shared between LTR and RTL UI.
// Configuration and vendor specific imports happen before this shared set of imports are compiled
// in the main-*.scss files.
// ------------------------------ // Configuration
// #CONFIG + LIB
// ------------------------------
@import 'lib';
@import 'config'; @import 'config';
@import '../../../../node_modules/edx-pattern-library/pattern-library/sass/edx-pattern-library';
// ------------------------------ // Extensions
// #EXTENSIONS
// ------------------------------
@import 'utilities'; @import 'utilities';
@import 'base'; @import 'base';
@import 'components'; @import 'components';
......
// ------------------------------ // ------------------------------
// Open edX Certificates: Config // Open edX Certificates: Config
// About: variable and configuration overrides
// #VARIABLES
// ------------------------------ // ------------------------------
// #VARIABLES // #VARIABLES
// ------------------------------ // ------------------------------
$pattern-library-path: '../../edx-pattern-library' !default;
// certificate characteristics // certificate characteristics
$cert-base-color: palette(grayscale-cool, dark); $cert-base-color: palette(grayscale-cool, dark);
......
// ------------------------------
// Open edX Certificates: Main Style Compile
// About: third party libraries and dependencies import
@import '../../../../node_modules/edx-pattern-library/node_modules/bourbon/app/assets/stylesheets/bourbon';
@import '../../../../node_modules/edx-pattern-library/node_modules/susy/sass/susy';
@import '../../../../node_modules/edx-pattern-library/node_modules/breakpoint-sass/stylesheets/breakpoint';
// ------------------------------
// Open edX Certificates: Main Style Compile
// About: Sass partial for defining settings and utilities for LTR-centric layouts.
// #SETTINGS
// #LIB
// ----------------------------
// #SETTINGS
// ----------------------------
$layout-direction: ltr;
// currently needed since platform Sass won't obey https://github.com/edx/ux-pattern-library/blob/master/pattern-library/sass/patterns/_grid.scss#L23
$grid-direction-default: ltr;
$grid-direction-reversed: ltr;
// ----------------------------
// #LIB
// ----------------------------
@import '../../../../node_modules/edx-pattern-library/node_modules/bi-app-sass/bi-app/bi-app-ltr';
// ------------------------------
// Open edX Certificates: Main Style Compile
// About: Sass partial for defining settings and utilities for LTR-centric layouts.
// #SETTINGS
// #LIB
// ----------------------------
// #SETTINGS
// ----------------------------
$layout-direction: rtl;
// currently needed since platform Sass won't obey https://github.com/edx/ux-pattern-library/blob/master/pattern-library/sass/patterns/_grid.scss#L23
$grid-direction-default: rtl;
$grid-direction-reversed: ltr;
// ----------------------------
// #LIB
// ----------------------------
@import '../../../../node_modules/edx-pattern-library/node_modules/bi-app-sass/bi-app/bi-app-rtl';
...@@ -3,16 +3,13 @@ ...@@ -3,16 +3,13 @@
// About: Sass compile for the Open edX Certificates Elements. // About: Sass compile for the Open edX Certificates Elements.
// NOTE: This is the left to right (LTR) configured style compile. It should mirror main-rtl w/ the exception of bi-app references. // NOTE: This is the left to right (LTR) configured style compile.
// It should mirror main-rtl w/ the exception of bi-app references.
// ------------------------------ // Load the LTR version of the edX Pattern Library
// #CONFIG - layout direction $pattern-library-path: '../../edx-pattern-library' !default;
// ------------------------------ @import 'edx-pattern-library/pattern-library/sass/edx-pattern-library-ltr';
@import 'ltr'; // LTR-specifc settings and utilities
// ------------------------------ // Load the shared build
// #BUILD @import 'build';
// ------------------------------
@import 'build'; // shared compile/build order for both LTR and RTL UI
...@@ -3,16 +3,13 @@ ...@@ -3,16 +3,13 @@
// About: Sass compile for the Open edX Certificates Elements. // About: Sass compile for the Open edX Certificates Elements.
// NOTE: This is the right to left (RTL) configured style compile. It should mirror main-ltr w/ the exception of bi-app references. // NOTE: This is the right to left (RTL) configured style compile.
// It should mirror main-ltr w/ the exception of bi-app references.
// ------------------------------ // Load the RTL version of the edX Pattern Library
// #CONFIG - layout direction $pattern-library-path: '../../edx-pattern-library' !default;
// ------------------------------ @import 'edx-pattern-library/pattern-library/sass/edx-pattern-library-rtl';
@import 'rtl'; // RTL-specifc settings and utilities
// ------------------------------ // Load the shared build
// #BUILD @import 'build';
// ------------------------------
@import 'build'; // shared compile/build order for both LTR and RTL UI
// ------------------------------
// LMS: Shared Build Compile
// Version 2 - introduces the Pattern Library
// Configuration
@import 'config';
// Extensions
// ------------------------------
// LMS configuration settings
// ------------------------------
// #VARIABLES
// ------------------------------
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment