This commit is contained in:
rolux 2011-11-04 12:13:45 +00:00
commit 7c9337d6c4
5 changed files with 23 additions and 14 deletions

View File

@ -47,7 +47,7 @@ def log(request):
l.save()
response = json_response()
return render_to_json_response(response)
actions.register(log)
actions.register(log, cache=False)
@admin_required_json

View File

@ -10,6 +10,5 @@ django-celery>2.1.1
#-e git+https://github.com/django-extensions/django-extensions.git#egg=django_extensions
#use fork fixing some postgresql issues
-e git://github.com/bit/django-extensions.git#egg=django_extensions
-e bzr+http://firefogg.org/dev/python-firefogg/#egg=python-firefogg
-e git+git://github.com/dcramer/django-devserver#egg=django_devserver
gunicorn

View File

@ -115,7 +115,6 @@ appPanel
loadingScreen.style.backgroundColor = theme == 'classic'
? 'rgb(224, 224, 224)' : 'rgb(32, 32, 32)';
loadingScreen.style.zIndex = '1001';
Ox.print(images)
loadingScreen.appendChild(images.logo);
loadingScreen.appendChild(images.reflection);
loadingScreen.appendChild(gradient);
@ -138,7 +137,7 @@ appPanel
theme: theme
},
Geo: {}
}, callback)
}, callback);
}
function loadPandora(browserSupported) {
@ -237,7 +236,6 @@ appPanel
}) : null;
})
});
pandora.site.listSettings = {};
Ox.map(pandora.site.user.ui, function(val, key) {
if (/^list[A-Z]/.test(key)) {

View File

@ -115,6 +115,7 @@ pandora.URL = (function() {
Ox.print('SET STATE:', state)
var find, previousUI = pandora.UI.getPrevious();
pandora.user.ui._list = pandora.getListsState(pandora.user.ui.find);
pandora.user.ui._groupsState = pandora.getGroupsState(pandora.user.ui.find);
pandora.user.ui._findState = pandora.getFindState(pandora.user.ui.find);
@ -122,9 +123,6 @@ pandora.URL = (function() {
if (pandora.user.ui.showHome) {
pandora.$ui.home = pandora.ui.home().showScreen();
pandora.user.ui._list = pandora.getListsState(pandora.user.ui.find);
pandora.user.ui._groupsState = pandora.getGroupsState(pandora.user.ui.find);
pandora.user.ui._findState = pandora.getFindState(pandora.user.ui.find);
} else {
/*
pandora.UI.set({

View File

@ -1,18 +1,31 @@
#!/bin/bash
pandora_repos=http://code.0x2620.org/pandora/
oxjs_repos=http://code.0x2620.org/oxjs/
python_ox_repos=http://code.0x2620.org/python-ox/
cd `dirname $0`
base=`pwd`
current=`bzr revno`
bzr pull http://code.0x2620.org/pandora/
bzr pull $pandora_repos
new=`bzr revno`
cd static/oxjs
current=$current`bzr revno`
bzr pull http://code.0x2620.org/oxjs/
new=$new`bzr revno`
cd $base
if [ -e static/oxjs ]; then
cd static/oxjs
current=$current`bzr revno`
bzr pull $oxjs_repos
new=$new`bzr revno`
else
cd static
bzr branch $oxjs_repos
cd oxjs
new=$new`bzr revno`
fi
cd $base
if [ -e src/python-ox ]; then
cd src/python-ox
current=$current`bzr revno`
bzr pull http://code.0x2620.org/python-ox/
bzr pull $python_ox_repos
new=$new`bzr revno`
fi
cd $base
@ -20,4 +33,5 @@ if [ $current -ne $new ]; then
cd pandora
./manage.py update_static
./manage.py compile_pyc
./manage.py sqldiff -a | grep -v BEGIN | grep -v COMMIT
fi