From aa69851938163da8e2acbdf4fb58d50268048234 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Sat, 18 Jul 2020 00:38:32 -0400 Subject: [PATCH] Update examples docs --- docs/examples/bundles_miniapp.rst | 3 --- docs/examples/chained_factories.rst | 2 -- docs/examples/factory_of_factories.rst | 2 -- docs/examples/movie_lister.rst | 6 ------ docs/examples/password_hashing_miniapp.rst | 1 - docs/examples/services_miniapp_v1.rst | 4 ---- docs/examples/services_miniapp_v2.rst | 4 ---- docs/examples/use_cases_miniapp.rst | 2 -- 8 files changed, 24 deletions(-) diff --git a/docs/examples/bundles_miniapp.rst b/docs/examples/bundles_miniapp.rst index ab543f97..4be60cb5 100644 --- a/docs/examples/bundles_miniapp.rst +++ b/docs/examples/bundles_miniapp.rst @@ -37,7 +37,6 @@ Listing of ``bundles/users/__init__.py``: .. literalinclude:: ../../examples/miniapps/bundles/bundles/users/__init__.py :language: python - :linenos: .. note:: @@ -47,7 +46,6 @@ Listing of ``bundles/photos/__init__.py``: .. literalinclude:: ../../examples/miniapps/bundles/bundles/photos/__init__.py :language: python - :linenos: .. note:: @@ -65,7 +63,6 @@ Listing of ``run.py``: .. literalinclude:: ../../examples/miniapps/bundles/run.py :language: python - :linenos: Links ~~~~~ diff --git a/docs/examples/chained_factories.rst b/docs/examples/chained_factories.rst index a260b746..6d20bc7a 100644 --- a/docs/examples/chained_factories.rst +++ b/docs/examples/chained_factories.rst @@ -10,14 +10,12 @@ Listing of ``data.py``, demonstrates sample classes structure: .. literalinclude:: ../../examples/miniapps/factory_patterns/data.py :language: python - :linenos: Listing of ``chained_factories.py``, demonstrates "Chained Factories" pattern and provide some explanation: .. literalinclude:: ../../examples/miniapps/factory_patterns/chained_factories.py :language: python - :linenos: .. disqus:: diff --git a/docs/examples/factory_of_factories.rst b/docs/examples/factory_of_factories.rst index adabd042..d3ef157b 100644 --- a/docs/examples/factory_of_factories.rst +++ b/docs/examples/factory_of_factories.rst @@ -9,14 +9,12 @@ Listing of ``data.py``, demonstrates sample classes structure: .. literalinclude:: ../../examples/miniapps/factory_patterns/data.py :language: python - :linenos: Listing of ``factory_of_factories.py``, demonstrates "Chained Factories" pattern and provide some explanation: .. literalinclude:: ../../examples/miniapps/factory_patterns/factory_of_factories.py :language: python - :linenos: .. disqus:: diff --git a/docs/examples/movie_lister.rst b/docs/examples/movie_lister.rst index 331c6abf..594a67f1 100644 --- a/docs/examples/movie_lister.rst +++ b/docs/examples/movie_lister.rst @@ -70,7 +70,6 @@ Listing of ``movies/__init__.py``: .. literalinclude:: ../../examples/miniapps/movie_lister/movies/__init__.py :language: python - :linenos: Example application ~~~~~~~~~~~~~~~~~~~ @@ -88,13 +87,11 @@ Listing of ``examples/main.py``: .. literalinclude:: ../../examples/miniapps/movie_lister/example/main.py :language: python - :linenos: Listing of ``examples/db.py``: .. literalinclude:: ../../examples/miniapps/movie_lister/example/db.py :language: python - :linenos: Csv application ~~~~~~~~~~~~~~~ @@ -103,7 +100,6 @@ Listing of ``app_csv.py``: .. literalinclude:: ../../examples/miniapps/movie_lister/app_csv.py :language: python - :linenos: Database application ~~~~~~~~~~~~~~~~~~~~ @@ -112,7 +108,6 @@ Listing of ``app_db.py``: .. literalinclude:: ../../examples/miniapps/movie_lister/app_db.py :language: python - :linenos: Csv and database application ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -121,7 +116,6 @@ Listing of ``app_db_csv.py``: .. literalinclude:: ../../examples/miniapps/movie_lister/app_db_csv.py :language: python - :linenos: .. disqus:: diff --git a/docs/examples/password_hashing_miniapp.rst b/docs/examples/password_hashing_miniapp.rst index 45eb1d4c..21177545 100644 --- a/docs/examples/password_hashing_miniapp.rst +++ b/docs/examples/password_hashing_miniapp.rst @@ -14,6 +14,5 @@ Listing of ``example.py``: .. literalinclude:: ../../examples/miniapps/password_hashing/example.py :language: python - :linenos: .. disqus:: diff --git a/docs/examples/services_miniapp_v1.rst b/docs/examples/services_miniapp_v1.rst index aa0df055..5277c56c 100644 --- a/docs/examples/services_miniapp_v1.rst +++ b/docs/examples/services_miniapp_v1.rst @@ -47,13 +47,11 @@ Listing of ``example/services.py``: .. literalinclude:: ../../examples/miniapps/services_v1/example/services.py :language: python - :linenos: Listing of ``example/main.py``: .. literalinclude:: ../../examples/miniapps/services_v1/example/main.py :language: python - :linenos: IoC containers ~~~~~~~~~~~~~~ @@ -62,7 +60,6 @@ Listing of ``containers.py``: .. literalinclude:: ../../examples/miniapps/services_v1/containers.py :language: python - :linenos: Run application ~~~~~~~~~~~~~~~ @@ -71,7 +68,6 @@ Listing of ``run.py``: .. literalinclude:: ../../examples/miniapps/services_v1/run.py :language: python - :linenos: .. disqus:: diff --git a/docs/examples/services_miniapp_v2.rst b/docs/examples/services_miniapp_v2.rst index b507c606..4c29fca7 100644 --- a/docs/examples/services_miniapp_v2.rst +++ b/docs/examples/services_miniapp_v2.rst @@ -47,13 +47,11 @@ Listing of ``example/services.py``: .. literalinclude:: ../../examples/miniapps/services_v2/example/services.py :language: python - :linenos: Listing of ``example/main.py``: .. literalinclude:: ../../examples/miniapps/services_v2/example/main.py :language: python - :linenos: IoC container ~~~~~~~~~~~~~ @@ -62,7 +60,6 @@ Listing of ``container.py``: .. literalinclude:: ../../examples/miniapps/services_v2/container.py :language: python - :linenos: Run application ~~~~~~~~~~~~~~~ @@ -71,7 +68,6 @@ Listing of ``run.py``: .. literalinclude:: ../../examples/miniapps/services_v2/run.py :language: python - :linenos: .. disqus:: diff --git a/docs/examples/use_cases_miniapp.rst b/docs/examples/use_cases_miniapp.rst index cf4a8ab4..03aa7150 100644 --- a/docs/examples/use_cases_miniapp.rst +++ b/docs/examples/use_cases_miniapp.rst @@ -29,7 +29,6 @@ Listing of ``use_cases/containers.py``: .. literalinclude:: ../../examples/miniapps/use_cases/containers.py :language: python - :linenos: Run application ~~~~~~~~~~~~~~~ @@ -38,7 +37,6 @@ Listing of ``run.py``: .. literalinclude:: ../../examples/miniapps/use_cases/run.py :language: python - :linenos: Instructions for running: