From 418a3ac213f2b5c58d05bfb904116352c5a8e359 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 15 Oct 2015 14:54:22 -0400 Subject: [PATCH] Documentation updates. --- docs/topics/development.rst | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/topics/development.rst b/docs/topics/development.rst index 5e32e925de..38f57fa6df 100644 --- a/docs/topics/development.rst +++ b/docs/topics/development.rst @@ -161,8 +161,13 @@ Classes: Strings ~~~~~~~ -Quotation character used in **Mayan EDMS** for strings is the single quote. Double quote is used for multiline comments or HTML markup. +Quotation character used in **Mayan EDMS** for strings is the single quote. +Double quote is used for multiline comments or HTML markup. +Migrations +~~~~~~~~~~ +Migrations should do only one thing (eg: either create a table, move data to a +new table or remove an old table) to aid retrying on failure. General ~~~~~~~ @@ -287,7 +292,7 @@ Debugging **Mayan EDMS** makes extensive use of Django's new `logging capabilities`_. By default debug logging for all apps is turned on. If you wish to customize how logging is managed turn off automatic logging by setting -`COMMON_AUTO_LOGGING` to False and add the following lines to your +`COMMON_AUTO_LOGGING` to ``False`` and add the following lines to your ``settings/local.py`` file:: LOGGING = {