Merge pull request #22 from p1otr/master

use stdlib's json module if simplejson is missing
This commit is contained in:
Nick Daly 2013-09-15 16:09:58 -07:00
commit 04a266729e
9 changed files with 36 additions and 9 deletions

5
fabfile.py vendored
View File

@ -7,7 +7,10 @@
# plinth box
import os,sys, subprocess
import simplejson as json
try:
import simplejson as json
except ImportError:
import json
import fabric.api
from fabric.api import local, env, cd, put, get, task

View File

@ -5,7 +5,10 @@ Author: Erez Shinan
Date : 31-May-2009
"""
import simplejson as json ## jlv replaced pickle with json
try:
import simplejson as json ## jlv replaced pickle with json
except ImportError:
import json
import UserDict
##import cPickle as pickle

View File

@ -1,5 +1,8 @@
import simplejson as json
from urlparse import urlparse
try:
import simplejson as json
except ImportError:
import json
import cherrypy
import cfg

View File

@ -1,5 +1,8 @@
import os
import simplejson as json
try:
import simplejson as json
except ImportError:
import json
import cherrypy
import cfg
from model import User

View File

@ -7,7 +7,10 @@ haven't figured that one all the way through yet.
import os, sys
import cherrypy
import simplejson as json
try:
import simplejson as json
except ImportError:
import json
from gettext import gettext as _
from plugin_mount import PagePlugin
from modules.auth import require

View File

@ -1,7 +1,10 @@
import os, subprocess
from socket import gethostname
import cherrypy
import simplejson as json
try:
import simplejson as json
except ImportError:
import json
from gettext import gettext as _
from filedict import FileDict
from modules.auth import require

View File

@ -1,6 +1,9 @@
import os
import cherrypy
import simplejson as json
try:
import simplejson as json
except ImportError:
import json
from gettext import gettext as _
from filedict import FileDict
from modules.auth import require

View File

@ -1,6 +1,9 @@
import os
import cherrypy
import simplejson as json
try:
import simplejson as json
except ImportError:
import json
from gettext import gettext as _
from filedict import FileDict
from auth import require

View File

@ -1,6 +1,9 @@
import os
import cherrypy
import simplejson as json
try:
import simplejson as json
except ImportError:
import json
from gettext import gettext as _
from filedict import FileDict
from modules.auth import require