Hid minified files

master
Keith Irwin 2017-04-12 20:38:06 -04:00
parent bae26295a4
commit e84bb6ec3a
No known key found for this signature in database
GPG Key ID: 378933C743E2BBC0
11 changed files with 40 additions and 40 deletions

View File

@ -1,4 +1,4 @@
{
"verbose": true,
"ext": "html, js, json, css"
"ext": "html, js, json, css",
}

View File

@ -46,7 +46,7 @@
"test": "mocha test.js",
"start": "node server.js",
"nodemon": "nodemon server.js",
"minify": "minify --clean static",
"minify": "minify --template .{{filename}}.min.{{ext}} --clean static",
"update": "sudo n stable && sudo npm update --save && sudo npm prune"
},
"repository": {

View File

@ -49,7 +49,7 @@
</div>
</section>
<script src="/static/js/moment.min.js"></script>
<script src="/static/js/.moment.min.js"></script>
<script type="text/javascript">
/* DATE/TIME FORMATS */ {

View File

@ -1,7 +1,7 @@
{% extends 'templates/base.html' %}
{% block head %}
{{super()}}
<link href="/static/css/index.min.css" rel="stylesheet">
<link href="/static/css/.index.min.css" rel="stylesheet">
{% endblock %}
{% block main %}

View File

@ -2,8 +2,8 @@
{% block title %}{{ super() }} | Login{% endblock %}
{% block head %}
{{super()}}
<link rel="stylesheet" type="text/css" href="/static/css/form.min.css">
<link rel="stylesheet" type="text/css" href="/static/css/login.min.css">
<link rel="stylesheet" type="text/css" href="/static/css/.form.min.css">
<link rel="stylesheet" type="text/css" href="/static/css/.login.min.css">
<style>
p, input, #social-login {
margin-bottom: 5vh;

View File

@ -3,7 +3,7 @@
{% block head %}
{{super()}}
<link href="/static/css/map.min.css" rel="stylesheet">
<link href="/static/css/.map.min.css" rel="stylesheet">
<style>
.wrap { top:{% if not noHeader %}58{% else %}0{% endif %}px;}

View File

@ -3,7 +3,7 @@
{% block head %}
{{super()}}
<link rel="stylesheet" type="text/css" href="/static/css/form.min.css">
<link rel="stylesheet" type="text/css" href="/static/css/.form.min.css">
{% endblock %}
{% block main %}

View File

@ -3,32 +3,32 @@
{% block head %}
{{super()}}
<link rel="stylesheet" type="text/css" href="/static/css/form.min.css">
<link rel="stylesheet" type="text/css" href="/static/css/.form.min.css">
{% endblock %}
{% block main %}
<section class='container'>
<h1>Settings</h1>
<form id='settings-form' role="form" method="post">
<h2>Account settings</h2>
<div id='name' class='form-group' title="This appears in your page's title. ">
<label for="name">Name</label>
<input class='form-control' name="name" type="text" value="{{user.name}}" maxlength="160">
</div>
<div id='email' class='form-group' title="For account stuff, no dumb newsletters. ">
<label for="email">Email</label>
<input class='form-control' name="email" type="email" value="{{user.email}}" maxlength="160">
</div>
<div id='social-connect' class='form-group'>
<style>
#social-connect {
flex-wrap: wrap;
}
@ -49,7 +49,7 @@
margin-left: 0;
margin-right: 5%;
}
/* Connected social button styles */
#social-connect > .btn.gp.connected {
border: 2px solid rgb(206,77,57);
@ -60,7 +60,7 @@
#social-connect > .btn.tw.connected {
border: 2px solid rgb(44,168,210);
}
/* Unconnected social button styles */
#social-connect > .btn.gp:not(.connected) {
background: rgb(206,77,57);
@ -80,7 +80,7 @@
#social-connect > .btn.tw:not(.connected):hover {
background: rgb(89,213,255);
}
</style>
<a href="/login/google" class='btn gp{% if user.auth.google %} connected{% endif %}'>
<i class="fa fa-google-plus"></i>
@ -95,14 +95,14 @@
{% if user.auth.twitter %}Disconnect{% else %}Connect{% endif %} Twitter
</a>
</div>
<div id='password-delete' class='form-group'>
<a class='underline' href="/settings/password" title="Click here to {% if user.auth.password %}change{% else %}set{% endif %} your password. ">{% if user.auth.password %}Change{% else %}Set{% endif %} password</a>
<a class='red underline' style="text-align:right" href="#" onclick="deleteAccount()" title="Permently delete your Tracman account. ">Delete account</a>
</div>
<h2>Map settings</h2>
<div id='slug' class='form-group' title="This is the URL which shows your location. Be careful whom you share it with! ">
<label for="slug">URL</label>
<div class='input-with-addon-group'>
@ -110,7 +110,7 @@
<input type="text" class='input-with-addon' name="slug" value="{{user.slug}}" maxlength="160" required>
</div>
</div>
<div id='units' class='form-group' title="Select standard units for feet and miles/hour. Select metric units if you are a commie. ">
<label for="units">Units</label>
<div class='radio-group'>
@ -124,7 +124,7 @@
</div>
</div>
</div>
<div id='defaultMap' class='form-group' title="Shows whether to show a satellite image or standard google road map as the default on your page. Visitors will have the option to change this. Note that satellite images load slower. ">
<label for="map">Default map</label>
<div class='radio-group'>
@ -138,7 +138,7 @@
</div>
</div>
</div>
<div id='defaultZoom' class='form-group' title="Shows the initial map zoom level on your page. A higher number means more zoom. Note that the size of the viewing window will also have an effect on how much of the map a visitor can see. ">
<label for="map">Default zoom</label>
<select name="zoom">
@ -164,40 +164,40 @@
<option {% if user.settings.defaultZoom==20 %}selected {% endif %}value="20">20 Buildings</option>
</select>
</div>
<div id='showSpeed' class='form-group' title="{% if not user.isPro %}PRO ONLY! {% endif %}Shows a spedometer on the map.">
<label for="showSpeed">Show speed{% if not user.isPro %} <span class='red'>(PRO)</span>{% endif %}</label>
<input name="showSpeed" type="checkbox" {% if not user.isPro %}disabled {% elif user.settings.showSpeed %}checked{% else %}{% endif %}>
</div>
<div id='showAltitude' class='form-group' title="{% if not user.isPro %}PRO ONLY! {% endif %}Shows the current elevation on the map. ">
<label for="showAlt">Show altitude{% if not user.isPro %} <span class='red'>(PRO)</span>{% endif %}</label>
<input name="showAlt" type="checkbox" {% if not user.isPro %}disabled {% elif user.settings.showAlt %}checked{% else %}{% endif %}>
</div>
<div id='showStreet' class='form-group' title="{% if not user.isPro %}PRO ONLY! {% endif %}Shows a Google street view image at or near your current location, oriented in the direction of travel. ">
<label for="showStreet">Show street view{% if not user.isPro %} <span class='red'>(PRO)</span>{% endif %}</label>
<input name="showStreet" type="checkbox" {% if not user.isPro %}disabled{% elif user.settings.showStreetview %}checked{% else %}{% endif %}>
</div>
<div id='submit-group' class='form-group flexbox' style="padding:0 0 60px; justify-content:space-around">
<input class='btn yellow' style="width:50%; background:#333" type="submit" value="Save">
<a href="#" class='btn'>cancel</a>
</div>
</form>
{% if not user.isPro %}<p style="clear:both">Want to try <a href="/settings/pro">Tracman Pro</a>? It's free during beta testing. </p>{% endif %}
<p style="clear:both">Would you like to <a href="https://github.com/Tracman-org/Server/issues/new">submit a suggestion or bug report</a>? </p>
</section>
{% endblock %}
{% block javascript %}
{{super()}}
<script>
// Delete account
function deleteAccount() {
if (confirm("Are you sure you want to delete your account? This CANNOT be undone! ")) {
@ -213,6 +213,6 @@
})
}
}
</script>
{% endblock %}

View File

@ -41,15 +41,15 @@
<link rel="icon apple-touch-icon" sizes="228x228" type="image/png" href="/static/img/icon/by/228.png">
<link rel="apple-touch-icon-precomposed" type="image/png" href="/static/img/icon/by/152.png">
<link rel="stylesheet" type="text/css" href="/static/css/base.min.css">
<link rel="stylesheet" type="text/css" href="/static/css/.base.min.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans:300,600">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Merriweather:300,700">
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
{% endblock %}
{% if not noHeader %}<link href="/static/css/header.min.css" rel="stylesheet">{% endif %}
{% if not noFooter %}<link href="/static/css/footer.css" rel="stylesheet">{% endif %}
{% if not noHeader %}<link href="/static/css/.header.min.css" rel="stylesheet">{% endif %}
{% if not noFooter %}<link href="/static/css/.footer.min.css" rel="stylesheet">{% endif %}
</head>
<body>

View File

@ -15,4 +15,4 @@
</div>
</footer>
<script src="/static/js/footer.min.js"></script>
<script src="/static/js/.footer.min.js"></script>

View File

@ -54,4 +54,4 @@
</div>
{% endfor %}
<script src="/static/js/header.min.js"></script>
<script src="/static/js/.header.min.js"></script>