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

Remove Sandstone (Fixes #8384) #8449

Merged
merged 1 commit into from Jan 23, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .editorconfig
Expand Up @@ -10,7 +10,7 @@ insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space

[*.{py,js,css,less,scss,sh,groovy}]
[*.{py,js,css,scss,sh,groovy}]
indent_size = 4

[*.{json,html,svg,yml}]
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Expand Up @@ -19,7 +19,6 @@ build
tmp/*
*~
.#*
*.less.css
db.sql
/locale
/results
Expand Down
5 changes: 1 addition & 4 deletions .stylelintrc
Expand Up @@ -36,8 +36,5 @@
"no-extra-semicolons": true,
"no-missing-end-of-source-newline": true,
"no-eol-whitespace": true
},
"ignoreFiles": [
"media/css/sandstone/mixins/at2x.less"
]
}
}
7 changes: 0 additions & 7 deletions bedrock/base/templates/bare.html

This file was deleted.

2 changes: 0 additions & 2 deletions bedrock/base/templates/base-pebbles.html
Expand Up @@ -20,8 +20,6 @@
{% block extra_meta %}{% endblock %}

{% block shared_meta %}
{#- Please sync this block with the base.html and base-resp.html templates.
Because of blocks, we cannot use an include here. -#}
<title>{% filter striptags|e %}{% block page_title_full %}{% block page_title_prefix %}{% endblock %}{% block page_title %}{% endblock %}{% endblock page_title_full %}{% block page_title_suffix %} — Mozilla{% endblock %}{% endfilter %}</title>
<meta name="description" content="{% filter striptags|e %}{% block page_desc %}{% endblock %}{% endfilter %}">
<meta property="og:type" content="website">
Expand Down
170 changes: 0 additions & 170 deletions bedrock/base/templates/base-resp.html

This file was deleted.

32 changes: 0 additions & 32 deletions bedrock/firefox/templates/firefox/base/base-resp.html

This file was deleted.

15 changes: 0 additions & 15 deletions bedrock/mozorg/templates/mozorg/base-resp.html

This file was deleted.

2 changes: 1 addition & 1 deletion bedrock/mozorg/tests/urls.py
Expand Up @@ -17,5 +17,5 @@ def mock_view(request):
url(r'', include('%s.urls' % settings.PROJECT_MODULE)),

# Used by test_helper
page('base', 'base-resp.html'),
page('base', 'base-protocol.html'),
]