Mercurial > libervia-desktop-kivy
annotate doc/make.bat @ 404:f7476818f9fb
core (common): JidSelector + behaviors various improvments:
- renamed *Behaviour => *Behavior to be consistent with Kivy + moved to new
"core.behaviors" modules
- use a dedicated property in ContactItem for notification counter (which is now named
"badge")
- in JidSelector, well-known strings now create use a dedicated layout, add separator
(except if new `add_separators` property is set to False), and are added to attribute of
the same name
- a new `item_class` property is now used to indicate the class to instanciate for items
(by default it's a ContactItem)
- FilterBahavior.do_filter now expect the parent layout instead of directly the children,
this is to allow a FilterBahavior to manage several children layout at once (used with
JidSelector)
- core.utils has been removed, as the behavior there has been moved to core.behaviors
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 12 Feb 2020 20:02:58 +0100 |
parents | aafd814e34b5 |
children |
rev | line source |
---|---|
307 | 1 @ECHO OFF |
2 | |
3 pushd %~dp0 | |
4 | |
5 REM Command file for Sphinx documentation | |
6 | |
7 if "%SPHINXBUILD%" == "" ( | |
8 set SPHINXBUILD=sphinx-build | |
9 ) | |
10 set SOURCEDIR=. | |
11 set BUILDDIR=.build | |
12 | |
13 if "%1" == "" goto help | |
14 | |
15 %SPHINXBUILD% >NUL 2>NUL | |
16 if errorlevel 9009 ( | |
17 echo. | |
18 echo.The 'sphinx-build' command was not found. Make sure you have Sphinx | |
19 echo.installed, then set the SPHINXBUILD environment variable to point | |
20 echo.to the full path of the 'sphinx-build' executable. Alternatively you | |
21 echo.may add the Sphinx directory to PATH. | |
22 echo. | |
23 echo.If you don't have Sphinx installed, grab it from | |
24 echo.http://sphinx-doc.org/ | |
25 exit /b 1 | |
26 ) | |
27 | |
28 %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% | |
29 goto end | |
30 | |
31 :help | |
32 %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% | |
33 | |
34 :end | |
35 popd |