This commit is contained in:
Shuhao Wu 2013-07-03 10:45:21 -07:00
Родитель 07bb026095
Коммит f5d85a7dfa
7 изменённых файлов: 14 добавлений и 3 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -5,3 +5,4 @@ docs/_build
static/js/app.min.js
static/css/app.min.css
static/js/locales.js
commit.txt

4
deploy.sh Executable file
Просмотреть файл

@ -0,0 +1,4 @@
#!/bin/bash
git rev-parse HEAD > commit.txt
yes n | stackato update

Просмотреть файл

@ -21,7 +21,11 @@ MANIFEST_FILE_LOCATION = os.path.join(APP_FOLDER, 'manifest.webapp')
PRODUCTION_JS_FILE = os.path.join(STATIC_FOLDER, 'js', 'app.min.js')
PRODUCTION_CSS_FILE = os.path.join(STATIC_FOLDER, 'css', 'app.min.css')
COMMIT_SHA = subprocess.check_output("git rev-parse HEAD", shell=True).strip()
if os.path.isfile(os.path.join(APP_FOLDER, 'commit.txt')):
with open(os.path.join(APP_FOLDER, 'commit.txt')) as f:
COMMIT_SHA = f.read().strip()
else:
COMMIT_SHA = subprocess.check_output("git rev-parse HEAD", shell=True).strip()
try:
from settings_local import *

Просмотреть файл

@ -8,7 +8,9 @@ processes:
mem: 64M
instances: 1
services: {}
services:
{}
ignores: [".git", "settings_local.py", "*.pyc", "*komodoproject", "*sublime*"]
hooks:

Просмотреть файл

@ -1052,7 +1052,7 @@ body[role="application"] .button input {
/* Spinner */
progress:not([value]) {
background: url(/static/img/progress_activity/ui/activity.png) no-repeat center center / 100% auto;
background: url(/static/img/progress_activity/ui/spinner.png) no-repeat center center / 100% auto;
animation: 0.9s rotate infinite steps(30);
width: 2.9rem;
height: 2.9rem;

Двоичные данные
static/img/progress_activity/ui/activity.png

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 3.7 KiB

После

Ширина:  |  Высота:  |  Размер: 967 B

Двоичные данные
static/img/progress_activity/ui/spinner.png Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 3.7 KiB