web/views/wdoc.py
changeset 8190 2a3c1b787688
parent 6996 86214f0da14f
child 8632 fa044b9157d7
equal deleted inserted replaced
8189:2ee0ef069fa7 8190:2a3c1b787688
     1 # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     1 # copyright 2003-2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
     2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
     2 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
     3 #
     3 #
     4 # This file is part of CubicWeb.
     4 # This file is part of CubicWeb.
     5 #
     5 #
     6 # CubicWeb is free software: you can redistribute it and/or modify it under the
     6 # CubicWeb is free software: you can redistribute it and/or modify it under the
    25 from bisect import bisect_right
    25 from bisect import bisect_right
    26 from datetime import date
    26 from datetime import date
    27 
    27 
    28 from logilab.common.changelog import ChangeLog
    28 from logilab.common.changelog import ChangeLog
    29 from logilab.common.date import strptime, todate
    29 from logilab.common.date import strptime, todate
       
    30 from logilab.common.registry import yes
    30 from logilab.mtconverter import CHARSET_DECL_RGX
    31 from logilab.mtconverter import CHARSET_DECL_RGX
    31 
    32 
    32 from cubicweb.selectors import match_form_params, yes
    33 from cubicweb.predicates import match_form_params
    33 from cubicweb.view import StartupView
    34 from cubicweb.view import StartupView
    34 from cubicweb.uilib import rest_publish
    35 from cubicweb.uilib import rest_publish
    35 from cubicweb.web import NotFound, action
    36 from cubicweb.web import NotFound, action
    36 _ = unicode
    37 _ = unicode
    37 
    38