# HG changeset patch # User Sylvain Thénault # Date 1485528795 -3600 # Node ID 83a921bae21c7b86e507666a09e562d8482ac4ea # Parent fcbd6b251d81832c25cd56df4ab1b2e40ce91966 [pkg] Fix some error on building documentation diff -r fcbd6b251d81 -r 83a921bae21c cubicweb/pyramid/core.py --- a/cubicweb/pyramid/core.py Fri Jan 27 16:26:09 2017 +0100 +++ b/cubicweb/pyramid/core.py Fri Jan 27 15:53:15 2017 +0100 @@ -209,7 +209,7 @@ :param request: A pyramid request :param vid: A CubicWeb view id - :param **kwargs: Keyword arguments to select and instanciate the view + :param kwargs: Keyword arguments to select and instanciate the view :returns: The rendered view content """ vreg = request.registry['cubicweb.registry'] diff -r fcbd6b251d81 -r 83a921bae21c cubicweb/web/formwidgets.py --- a/cubicweb/web/formwidgets.py Fri Jan 27 16:26:09 2017 +0100 +++ b/cubicweb/web/formwidgets.py Fri Jan 27 15:53:15 2017 +0100 @@ -671,9 +671,12 @@ choose a date anterior(/posterior) to this DatePicker. example: - start and end are two JQueryDatePicker and start must always be before end + + start and end are two JQueryDatePicker and start must always be before end:: + affk.set_field_kwargs(etype, 'start_date', widget=JQueryDatePicker(min_of='end_date')) affk.set_field_kwargs(etype, 'end_date', widget=JQueryDatePicker(max_of='start_date')) + That way, on change of end(/start) value a new max(/min) will be set for start(/end) The invalid dates will be gray colored in the datepicker """ diff -r fcbd6b251d81 -r 83a921bae21c doc/api/pyramid/authplugin.rst --- a/doc/api/pyramid/authplugin.rst Fri Jan 27 16:26:09 2017 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ -.. _authplugin_module: - -:mod:`cubicweb.pyramid.authplugin` ----------------------------------- - -.. automodule:: cubicweb.pyramid.authplugin - - .. autoclass:: DirectAuthentifier - :show-inheritance: - :members: diff -r fcbd6b251d81 -r 83a921bae21c doc/api/pyramid/tools.rst --- a/doc/api/pyramid/tools.rst Fri Jan 27 16:26:09 2017 +0100 +++ b/doc/api/pyramid/tools.rst Fri Jan 27 15:53:15 2017 +0100 @@ -1,7 +1,7 @@ .. _tools_module: :mod:`cubicweb.pyramid.tools` ----------------------------- +----------------------------- .. automodule:: cubicweb.pyramid.tools diff -r fcbd6b251d81 -r 83a921bae21c doc/index.rst --- a/doc/index.rst Fri Jan 27 16:26:09 2017 +0100 +++ b/doc/index.rst Fri Jan 27 15:53:15 2017 +0100 @@ -108,7 +108,7 @@ .. toctree:: :maxdepth: 1 - js_api/index + book/en/devweb/js_api/index Developpers ~~~~~~~~~~~