Freeze leaflet to 0.7
This commit is contained in:
parent
35ff54c093
commit
57199fd290
2 changed files with 2 additions and 3 deletions
4
fabfile.py
vendored
4
fabfile.py
vendored
|
@ -238,7 +238,7 @@ def collect_remote_statics():
|
|||
remote_static_dir = '{project_dir}/{project_name}/remote_static'.format(**env)
|
||||
run_as_umap('mkdir -p {0}'.format(remote_static_dir))
|
||||
remote_repositories = {
|
||||
'leaflet': "git://github.com/Leaflet/Leaflet.git@master",
|
||||
'leaflet': "git://github.com/Leaflet/Leaflet.git@master#v0.7",
|
||||
'draw': "git://github.com/Leaflet/Leaflet.draw.git@master",
|
||||
'hash': "git://github.com/mlevans/leaflet-hash.git@master",
|
||||
'storage': 'git://github.com/yohanboniface/Leaflet.Storage.git@master',
|
||||
|
@ -265,7 +265,7 @@ def collect_remote_statics():
|
|||
exists = run_as_umap('if [ -d "{0}" ]; then echo 1; fi'.format(subdir))
|
||||
if exists:
|
||||
with cd(subdir):
|
||||
run_as_umap('git pull origin {0}'.format(branch))
|
||||
run_as_umap('git pull origin {0} --tags'.format(branch))
|
||||
else:
|
||||
run_as_umap('git clone {0} {1}'.format(repository, subdir))
|
||||
with cd(subdir):
|
||||
|
|
|
@ -33,7 +33,6 @@ CHARSET = "utf-8"
|
|||
|
||||
from sesql.fields import *
|
||||
from sesql.sources import *
|
||||
from django.db.models import Q
|
||||
from leaflet_storage import models
|
||||
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue