cubicweb/web/__init__.py
changeset 12567 26744ad37953
parent 12503 b01dd0ef43aa
equal deleted inserted replaced
12566:6b3523f81f42 12567:26744ad37953
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
    17 # with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
    18 """CubicWeb web client core. You'll need a apache-modpython or twisted
    18 """CubicWeb web client core. You'll need a apache-modpython or twisted
    19 publisher to get a full CubicWeb web application
    19 publisher to get a full CubicWeb web application
    20 """
    20 """
    21 
    21 
       
    22 from urllib.parse import quote as urlquote
    22 
    23 
    23 from cubicweb import _
    24 from cubicweb import _
    24 
       
    25 from six.moves.urllib.parse import quote as urlquote
       
    26 
       
    27 from cubicweb.web._exceptions import *
    25 from cubicweb.web._exceptions import *
    28 from cubicweb.utils import json_dumps
    26 from cubicweb.utils import json_dumps
    29 from cubicweb.uilib import eid_param
    27 from cubicweb.uilib import eid_param
    30 
    28 
    31 assert json_dumps is not None, 'no json module installed'
    29 assert json_dumps is not None, 'no json module installed'