Browse Source

publish muk_utils - 13.0

pull/31/head
MuK IT GmbH 5 years ago
parent
commit
e1067cbb5b
  1. 1
      muk_utils/__init__.py
  2. 1
      muk_utils/__manifest__.py
  3. 1
      muk_utils/actions/ir_attachment.xml
  4. 1
      muk_utils/models/__init__.py
  5. 1
      muk_utils/models/base.py
  6. 1
      muk_utils/models/ir_attachment.py
  7. 1
      muk_utils/models/ir_config_parameter.py
  8. 1
      muk_utils/models/mixins_groups.py
  9. 1
      muk_utils/models/mixins_hierarchy.py
  10. 1
      muk_utils/models/res_config_settings.py
  11. 1
      muk_utils/tests/__init__.py
  12. 1
      muk_utils/tests/test_attachment_migration.py
  13. 1
      muk_utils/tests/test_file_tools.py
  14. 1
      muk_utils/tests/test_http_tools.py
  15. 1
      muk_utils/tests/test_json_tools.py
  16. 1
      muk_utils/tests/test_search_childs.py
  17. 1
      muk_utils/tests/test_search_parents.py
  18. 1
      muk_utils/tests/test_security_helper.py
  19. 1
      muk_utils/tools/__init__.py
  20. 1
      muk_utils/tools/file.py
  21. 1
      muk_utils/tools/http.py
  22. 1
      muk_utils/tools/json.py
  23. 1
      muk_utils/tools/patch.py
  24. 1
      muk_utils/tools/security.py
  25. 1
      muk_utils/tools/utils.py
  26. 1
      muk_utils/views/ir_attachment.xml
  27. 1
      muk_utils/views/mixins_groups.xml
  28. 1
      muk_utils/views/res_config_settings.xml

1
muk_utils/__init__.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
from . import models, tools from . import models, tools

1
muk_utils/__manifest__.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
{ {

1
muk_utils/actions/ir_attachment.xml

@ -19,6 +19,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
--> -->
<odoo> <odoo>

1
muk_utils/models/__init__.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
from . import ( from . import (

1
muk_utils/models/base.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import logging import logging

1
muk_utils/models/ir_attachment.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import logging import logging

1
muk_utils/models/ir_config_parameter.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
from odoo import api, models from odoo import api, models

1
muk_utils/models/mixins_groups.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
from odoo import api, fields, models from odoo import api, fields, models

1
muk_utils/models/mixins_hierarchy.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import functools import functools

1
muk_utils/models/res_config_settings.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
from odoo import fields, models from odoo import fields, models

1
muk_utils/tests/__init__.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
from . import ( from . import (

1
muk_utils/tests/test_attachment_migration.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import logging import logging

1
muk_utils/tests/test_file_tools.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import logging import logging

1
muk_utils/tests/test_http_tools.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import base64 import base64

1
muk_utils/tests/test_json_tools.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import json import json

1
muk_utils/tests/test_search_childs.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import logging import logging

1
muk_utils/tests/test_search_parents.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import logging import logging

1
muk_utils/tests/test_security_helper.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import logging import logging

1
muk_utils/tools/__init__.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
from . import file, http, json, patch, security from . import file, http, json, patch, security

1
muk_utils/tools/file.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import mimetypes import mimetypes

1
muk_utils/tools/http.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import base64 import base64

1
muk_utils/tools/json.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import datetime import datetime

1
muk_utils/tools/patch.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################

1
muk_utils/tools/security.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################
import random import random

1
muk_utils/tools/utils.py

@ -17,6 +17,7 @@
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
#
################################################################################### ###################################################################################

1
muk_utils/views/ir_attachment.xml

@ -19,6 +19,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
--> -->
<odoo> <odoo>

1
muk_utils/views/mixins_groups.xml

@ -19,6 +19,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
--> -->
<odoo> <odoo>

1
muk_utils/views/res_config_settings.xml

@ -19,6 +19,7 @@
You should have received a copy of the GNU Lesser General Public License You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
--> -->
<odoo> <odoo>

Loading…
Cancel
Save