mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1105490 - Remove old ToS generation code from Loop Standalone. r-dmose,r=ted NPOTB DONTBUILD
This commit is contained in:
parent
503d0c3000
commit
cb30f89446
12
.hgignore
12
.hgignore
@ -82,17 +82,5 @@ GPATH
|
|||||||
# Git clone directory for updating web-platform-tests
|
# Git clone directory for updating web-platform-tests
|
||||||
^testing/web-platform/sync/
|
^testing/web-platform/sync/
|
||||||
|
|
||||||
# Loop web client build/deploy dependencies
|
|
||||||
^browser/components/loop/standalone/bower_components
|
|
||||||
|
|
||||||
# Loop legal content build/deploy artifacts
|
|
||||||
|
|
||||||
# XXX Once a grunt contrib-clean command has been added (bug 1066491), or
|
|
||||||
# once legal has centralized their ToS and PP hosting infrastructure,
|
|
||||||
# (expected Q4 2014) the legal doc build stuff for Loop can be removed,
|
|
||||||
# including the following three lines
|
|
||||||
^browser/components/loop/standalone/content/legal/styles/.*\.css$
|
|
||||||
^browser/components/loop/standalone/content/legal/terms/en_US\.html$
|
|
||||||
|
|
||||||
# Android Gradle artifacts.
|
# Android Gradle artifacts.
|
||||||
^mobile/android/gradle/.gradle
|
^mobile/android/gradle/.gradle
|
||||||
|
@ -1,14 +1,5 @@
|
|||||||
.module-cache
|
.module-cache
|
||||||
node_modules
|
node_modules
|
||||||
bower_components
|
|
||||||
*.pyc
|
*.pyc
|
||||||
content/config.js
|
content/config.js
|
||||||
content/VERSION.txt
|
content/VERSION.txt
|
||||||
|
|
||||||
# XXX Once a grunt contrib-clean command has been added (bug 1066491), or
|
|
||||||
# once legal has centralized their ToS and PP hosting infrastructure,
|
|
||||||
# (expected Q4 2014) the legal doc build stuff for Loop can be removed,
|
|
||||||
# including the following three lines:
|
|
||||||
content/legal/styles/*.css
|
|
||||||
content/legal/terms/*.html
|
|
||||||
!content/legal/terms/index.html
|
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
#!/usr/bin/env node
|
|
||||||
|
|
||||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
module.exports = function (grunt) {
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
// show elapsed time at the end
|
|
||||||
require('time-grunt')(grunt);
|
|
||||||
|
|
||||||
// load all grunt tasks
|
|
||||||
require('load-grunt-tasks')(grunt, {scope: 'devDependencies'});
|
|
||||||
|
|
||||||
grunt.initConfig({
|
|
||||||
});
|
|
||||||
|
|
||||||
grunt.loadTasks('grunttasks');
|
|
||||||
}
|
|
||||||
;
|
|
@ -6,12 +6,6 @@
|
|||||||
# system, which is why it can have dependencies on things the
|
# system, which is why it can have dependencies on things the
|
||||||
# build system at-large doesn't yet support.
|
# build system at-large doesn't yet support.
|
||||||
|
|
||||||
# XXX In the interest of making the build logic simpler and
|
|
||||||
# more maintainable, we should be trying to implement new
|
|
||||||
# functionality in Gruntfile.js rather than here.
|
|
||||||
# Bug 1066176 tracks moving all functionality currently here
|
|
||||||
# to the Gruntfile and getting rid of this Makefile entirely.
|
|
||||||
|
|
||||||
LOOP_SERVER_URL := $(shell echo $${LOOP_SERVER_URL-http://localhost:5000/v0})
|
LOOP_SERVER_URL := $(shell echo $${LOOP_SERVER_URL-http://localhost:5000/v0})
|
||||||
LOOP_FEEDBACK_API_URL := $(shell echo $${LOOP_FEEDBACK_API_URL-"https://input.allizom.org/api/v1/feedback"})
|
LOOP_FEEDBACK_API_URL := $(shell echo $${LOOP_FEEDBACK_API_URL-"https://input.allizom.org/api/v1/feedback"})
|
||||||
LOOP_FEEDBACK_PRODUCT_NAME := $(shell echo $${LOOP_FEEDBACK_PRODUCT_NAME-Loop})
|
LOOP_FEEDBACK_PRODUCT_NAME := $(shell echo $${LOOP_FEEDBACK_PRODUCT_NAME-Loop})
|
||||||
@ -22,7 +16,7 @@ LOOP_PRODUCT_HOMEPAGE_URL := $(shell echo $${LOOP_PRODUCT_HOMEPAGE_URL-"https://
|
|||||||
|
|
||||||
NODE_LOCAL_BIN=./node_modules/.bin
|
NODE_LOCAL_BIN=./node_modules/.bin
|
||||||
|
|
||||||
install: npm_install tos
|
install: npm_install
|
||||||
|
|
||||||
npm_install:
|
npm_install:
|
||||||
@npm install
|
@npm install
|
||||||
@ -30,10 +24,6 @@ npm_install:
|
|||||||
test:
|
test:
|
||||||
@echo "Not implemented yet."
|
@echo "Not implemented yet."
|
||||||
|
|
||||||
tos:
|
|
||||||
@$(NODE_LOCAL_BIN)/grunt replace marked
|
|
||||||
@$(NODE_LOCAL_BIN)/grunt sass
|
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
@$(NODE_LOCAL_BIN)/jshint *.js content test
|
@$(NODE_LOCAL_BIN)/jshint *.js content test
|
||||||
|
|
||||||
|
@ -9,13 +9,10 @@ NodeJS and npm installed.
|
|||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
||||||
Fetch and install/build any NPM and bower dependencies, as well as the
|
Fetch and install/build any NPM dependencies:
|
||||||
localized Terms-of-Service content:
|
|
||||||
|
|
||||||
$ make install
|
$ make install
|
||||||
|
|
||||||
Some of the above is driven by Gruntfile.js.
|
|
||||||
|
|
||||||
Configuration
|
Configuration
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
|
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "loop-client",
|
|
||||||
"dependencies": {
|
|
||||||
"tos-pp": "https://github.com/mozilla/legal-docs.git"
|
|
||||||
},
|
|
||||||
"devDependencies": {}
|
|
||||||
}
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 886 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 898 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 38 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.6 KiB |
@ -1,33 +0,0 @@
|
|||||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
||||||
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
// Set the current translation content
|
|
||||||
function setBody(data) {
|
|
||||||
$("#legal-copy").html(data);
|
|
||||||
}
|
|
||||||
|
|
||||||
function normalizeLocale(lang) {
|
|
||||||
return lang.replace(/-/g, "_");
|
|
||||||
}
|
|
||||||
|
|
||||||
$(document).ready(function() {
|
|
||||||
// Get the favorite language
|
|
||||||
var lang, defaultLang = "en-US";
|
|
||||||
$.get(loop.config.serverUrl, function(data) {
|
|
||||||
if (data.hasOwnProperty("i18n")) {
|
|
||||||
lang = normalizeLocale(data.i18n.lang);
|
|
||||||
defaultLang = normalizeLocale(data.i18n.defaultLang);
|
|
||||||
}
|
|
||||||
if (lang === undefined) {
|
|
||||||
lang = normalizeLocale(defaultLang);
|
|
||||||
}
|
|
||||||
|
|
||||||
$.get(lang + ".html")
|
|
||||||
.done(setBody)
|
|
||||||
.fail(function() {
|
|
||||||
$.get(defaultLang + ".html")
|
|
||||||
.done(setBody);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
@ -1,235 +0,0 @@
|
|||||||
@font-face { font-family: 'Clear Sans'; font-style: normal; font-weight: 400; src: local(Clear Sans), local(ClearSans), url(/legal/fonts/latin/clearsans-regular.eot?#iefix) format(embedded-opentype), url(/legal/fonts/latin/clearsans-regular.woff) format(woff), url(/legal/fonts/latin/clearsans-regular.ttf) format(truetype), url(/legal/fonts/latin/clearsans-regular.svg#clearsans-regular) format(svg); }
|
|
||||||
|
|
||||||
@font-face { font-family: 'Fira Sans'; font-style: normal; font-weight: 400; src: local(Fira Sans), local(FiraSans-Regular), url(/legal/fonts/latin/firasans-regular.eot?#iefix) format(embedded-opentype), url(/legal/fonts/latin/firasans-regular.woff) format(woff), url(/legal/fonts/latin/firasans-regular.ttf) format(truetype), url(/legal/fonts/latin/firasans-regular.svg#firasans-regular) format(svg); }
|
|
||||||
|
|
||||||
@font-face { font-family: 'Fira Sans'; font-style: normal; font-weight: 300; src: local(Fira Sans Light), local(FiraSans-Light), url(/legal/fonts/latin/firasans-light.eot?#iefix) format(embedded-opentype), url(/legal/fonts/latin/firasans-light.woff) format(woff), url(/legal/fonts/latin/firasans-light.ttf) format(truetype), url(/legal/fonts/latin/firasans-light.svg#firasans-light) format(svg); }
|
|
||||||
|
|
||||||
@media (min-width: 321px) and (max-width: 480px) {
|
|
||||||
#about-mozilla {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-content {
|
|
||||||
-webkit-box-shadow: rgb(138, 155, 168) 0px 1px 5px;
|
|
||||||
border-radius: 2px 2px;
|
|
||||||
box-shadow: rgb(138, 155, 168) 0px 1px 5px;
|
|
||||||
margin-top: 0px;
|
|
||||||
max-width: 360px;
|
|
||||||
min-height: 300px;
|
|
||||||
min-width: 300px;
|
|
||||||
padding-bottom: 10px;
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
padding-top: 45px;
|
|
||||||
position: relative;
|
|
||||||
top: -28px;
|
|
||||||
width: 94%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.static {
|
|
||||||
-webkit-background-size: 48px 51px;
|
|
||||||
background-position-x: 50%;
|
|
||||||
background-position-y: 0%;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: 48px 51px;
|
|
||||||
height: 51px;
|
|
||||||
margin-top: 10px;
|
|
||||||
top: 0px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
padding-bottom: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 20px;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
html {
|
|
||||||
background-color: rgb(242, 242, 242);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 481px) {
|
|
||||||
#main-content {
|
|
||||||
-webkit-box-shadow: rgb(138, 155, 168) 0px 1px 5px;
|
|
||||||
border-radius: 4px 4px;
|
|
||||||
box-shadow: rgb(138, 155, 168) 0px 1px 5px;
|
|
||||||
margin-top: -5px;
|
|
||||||
min-height: 450px;
|
|
||||||
padding-bottom: 40px;
|
|
||||||
padding-left: 40px;
|
|
||||||
padding-right: 40px;
|
|
||||||
padding-top: 60px;
|
|
||||||
width: 420px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.static {
|
|
||||||
-webkit-background-size: 80px 85px;
|
|
||||||
background-size: 80px 85px;
|
|
||||||
height: 85px;
|
|
||||||
margin-top: 0px;
|
|
||||||
top: 40px;
|
|
||||||
width: 80px;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
padding-bottom: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 24px;
|
|
||||||
margin-bottom: 32px;
|
|
||||||
}
|
|
||||||
|
|
||||||
html {
|
|
||||||
background-color: rgb(242, 242, 242);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 319px) {
|
|
||||||
#about-mozilla {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-content {
|
|
||||||
-webkit-box-shadow: none;
|
|
||||||
background-position-x: 0px;
|
|
||||||
background-position-y: 0px;
|
|
||||||
border-radius: 2px 2px;
|
|
||||||
box-shadow: none;
|
|
||||||
margin-top: 10px;
|
|
||||||
max-width: 360px;
|
|
||||||
min-height: 0px;
|
|
||||||
min-width: 250px;
|
|
||||||
padding: 0px;
|
|
||||||
position: relative;
|
|
||||||
top: 0px;
|
|
||||||
width: 250px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.static {
|
|
||||||
-webkit-background-size: 48px 51px;
|
|
||||||
background-position-x: 50%;
|
|
||||||
background-position-y: 0%;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-size: 48px 51px;
|
|
||||||
display: none;
|
|
||||||
height: 51px;
|
|
||||||
margin-top: 10px;
|
|
||||||
top: 0px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0px;
|
|
||||||
padding: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 18px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
html {
|
|
||||||
background-color: rgb(255, 255, 255);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
#about-mozilla {
|
|
||||||
-webkit-background-size: 69px 19px;
|
|
||||||
-webkit-transition-duration: 150ms;
|
|
||||||
-webkit-transition-property: opacity;
|
|
||||||
background-image: url(/legal/images/mozilla.png);
|
|
||||||
background-size: 69px 19px;
|
|
||||||
height: 19px;
|
|
||||||
opacity: 0.5;
|
|
||||||
position: absolute;
|
|
||||||
right: 12px;
|
|
||||||
top: 12px;
|
|
||||||
width: 69px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-content {
|
|
||||||
background-color: rgb(255, 255, 255);
|
|
||||||
margin-bottom: 0px;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.static {
|
|
||||||
background-image: url(/legal/images/firefox.png);
|
|
||||||
margin-bottom: 0px;
|
|
||||||
margin-left: auto;
|
|
||||||
margin-right: auto;
|
|
||||||
opacity: 1;
|
|
||||||
background-size: 102px 96px;
|
|
||||||
height: 102px;
|
|
||||||
width: 96px;
|
|
||||||
position: relative;
|
|
||||||
position: relative;
|
|
||||||
z-index: 999;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: rgb(0, 149, 221);
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
article {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
color: rgb(66, 79, 89);
|
|
||||||
font-family: 'Clear Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1, h2 {
|
|
||||||
font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
|
|
||||||
font-weight: 200;
|
|
||||||
line-height: 1em;
|
|
||||||
margin-left: 0px;
|
|
||||||
margin-right: 0px;
|
|
||||||
margin-top: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3 {
|
|
||||||
font-family: 'Fira Sans', Helvetica, Arial, sans-serif;
|
|
||||||
font-size: 12px;
|
|
||||||
line-height: 1em;
|
|
||||||
margin: 0px;
|
|
||||||
padding-bottom: 10px;
|
|
||||||
padding-left: 0px;
|
|
||||||
padding-right: 0px;
|
|
||||||
padding-top: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
html {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
ol {
|
|
||||||
margin-left: 0px;
|
|
||||||
padding-left: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
margin-left: 0px;
|
|
||||||
padding-left: 20px;
|
|
||||||
}
|
|
@ -1,41 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<!--[if lt IE 7]> <html class="no-js lt-ie10 lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
|
||||||
<!--[if IE 7]> <html class="no-js lt-ie10 lt-ie9 lt-ie8"> <![endif]-->
|
|
||||||
<!--[if IE 8]> <html class="lt-ie10 lt-ie9"> <![endif]-->
|
|
||||||
<!--[if IE 9]> <html class="lt-ie10"> <![endif]-->
|
|
||||||
<!--[if gt IE 9]><!--> <html dir="ltr" lang="en-US"> <!--<![endif]-->
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
||||||
<title>Firefox Hello: Terms of Service</title>
|
|
||||||
<meta name="description" content="">
|
|
||||||
<meta name="viewport" content="width=device-width">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/legal/styles/main.css">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="fox-logo" class="static"></div>
|
|
||||||
<div id="stage">
|
|
||||||
<div id="main-content">
|
|
||||||
<!--[if lt IE 10]>
|
|
||||||
<p class="error browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
|
|
||||||
<![endif]-->
|
|
||||||
<header id="legal-header">
|
|
||||||
<h3>Firefox Hello</h3>
|
|
||||||
<h1 id="webrtc-tos-header">Terms of Service</h1>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<section>
|
|
||||||
<article id="legal-copy">
|
|
||||||
Loading...
|
|
||||||
</article>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<a id="about-mozilla" rel="author" target="_blank" href="https://www.mozilla.org/about/?utm_source=firefox-webrtc&utm_medium=Referral"></a>
|
|
||||||
<script type="text/javascript" src="/shared/libs/jquery-2.1.0.js"></script>
|
|
||||||
<script type="text/javascript" src="/config.js"></script>
|
|
||||||
<script type="text/javascript" src="/legal/js/loader.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,36 +0,0 @@
|
|||||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
var path = require('path');
|
|
||||||
var i18n = require('i18n-abide');
|
|
||||||
|
|
||||||
module.exports = function (grunt) {
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
// convert localized TOS agreement from markdown to html partials.
|
|
||||||
|
|
||||||
function rename(destPath, srcFile) {
|
|
||||||
// Normalize the filenames to use the locale name.
|
|
||||||
var lang = srcFile.replace('.md', '');
|
|
||||||
return path.join(destPath, i18n.localeFrom(lang) + '.html');
|
|
||||||
}
|
|
||||||
|
|
||||||
grunt.config('marked', {
|
|
||||||
options: {
|
|
||||||
sanitize: false,
|
|
||||||
gfm: true
|
|
||||||
},
|
|
||||||
tos: {
|
|
||||||
files: [
|
|
||||||
{
|
|
||||||
expand: true,
|
|
||||||
cwd: '<%= project_vars.tos_md_src %>',
|
|
||||||
src: ['**/*.md'],
|
|
||||||
dest: '<%= project_vars.tos_html_dest %>',
|
|
||||||
rename: rename
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
@ -1,18 +0,0 @@
|
|||||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
module.exports = function (grunt) {
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var TEMPLATE_ROOT = 'content/legal';
|
|
||||||
var TOS_PP_REPO_ROOT = 'bower_components/tos-pp';
|
|
||||||
|
|
||||||
grunt.config('project_vars', {
|
|
||||||
app: "content",
|
|
||||||
// Translated TOS/PP agreements.
|
|
||||||
tos_pp_repo_dest: TOS_PP_REPO_ROOT,
|
|
||||||
tos_md_src: TOS_PP_REPO_ROOT + '/WebRTC_ToS/',
|
|
||||||
tos_html_dest: TEMPLATE_ROOT + '/terms'
|
|
||||||
});
|
|
||||||
};
|
|
@ -1,37 +0,0 @@
|
|||||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
module.exports = function (grunt) {
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
grunt.config('replace', {
|
|
||||||
tos: {
|
|
||||||
src: [
|
|
||||||
'<%= project_vars.tos_md_src %>/*.md'
|
|
||||||
],
|
|
||||||
overwrite: true,
|
|
||||||
replacements: [{
|
|
||||||
// remove tags not handle by the markdown-to-HTML conversation
|
|
||||||
from: /{:\s.*?\s}/g,
|
|
||||||
to: ''
|
|
||||||
}, {
|
|
||||||
// remove unhandled comments
|
|
||||||
from: /^#\s.*?\n$/m,
|
|
||||||
to: ''
|
|
||||||
}, {
|
|
||||||
// fix "smart quotes"
|
|
||||||
from: /(“|”)/g,
|
|
||||||
to: """
|
|
||||||
}, {
|
|
||||||
// fix "smart quotes"
|
|
||||||
from: /’/g,
|
|
||||||
to: "'"
|
|
||||||
}, {
|
|
||||||
from: /–/g,
|
|
||||||
to: "—"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
@ -1,16 +0,0 @@
|
|||||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
module.exports = function (grunt) {
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
grunt.config('sass', {
|
|
||||||
styles: {
|
|
||||||
files: {
|
|
||||||
'<%= project_vars.app %>/legal/styles/main.css':
|
|
||||||
'<%= project_vars.app %>/legal/styles/main.scss'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
@ -12,22 +12,11 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"bower": "1.3.9",
|
"express": "3.x"
|
||||||
"express": "3.x",
|
|
||||||
"grunt": "0.4.5",
|
|
||||||
"grunt-cli": "0.1.13",
|
|
||||||
"grunt-marked": "0.1.1",
|
|
||||||
"grunt-sass": "0.14.1",
|
|
||||||
"grunt-text-replace": "0.3.12",
|
|
||||||
"i18n-abide": "0.0.22",
|
|
||||||
"jshint": "2.x",
|
|
||||||
"load-grunt-tasks": "0.6.0",
|
|
||||||
"time-grunt": "0.4.0"
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "make test",
|
"test": "make test",
|
||||||
"start": "make runserver",
|
"start": "make runserver"
|
||||||
"prepublish": "bower install --config.interactive=false -s"
|
|
||||||
},
|
},
|
||||||
"license": "MPL-2.0"
|
"license": "MPL-2.0"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user