removed db from git, updated settings and gitignore, fixes

* FIX: wrong timezone in settings.py
* FIX: removed console.log calls from js (exceptions in fx)
* UPDATE: git will ignore kdev4 files and k4ever.db
* UPDATE: removed database from git
master
Konrad Mohrfeldt 13 years ago
parent 5b3401ffdd
commit 6003472f33

3
.gitignore vendored

@ -5,3 +5,6 @@
*.class
*.bak
*~
k4ever/k4ever.db
*.kdev4
.kdev4

Binary file not shown.

@ -58,8 +58,6 @@ jQuery(document).ready(function($) {
if(lock && event.keyCode === 39) {
selected_item.addClass("load");
console.log(selected_item);
$.get("/api/store/buy/" + selection.value + "/", {
}, function(data, status) {

@ -29,7 +29,7 @@ DATABASES = {
# timezone as the operating system.
# If running in a Windows environment this must be set to the same as your
# system time zone.
TIME_ZONE = 'Germany/Berlin'
TIME_ZONE = 'Europe/Berlin'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html

Loading…
Cancel
Save