mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
Merge pull request #22 from p1otr/master
use stdlib's json module if simplejson is missing
This commit is contained in:
commit
04a266729e
5
fabfile.py
vendored
5
fabfile.py
vendored
@ -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
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
5
menu.py
5
menu.py
@ -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
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user