django-botmanager 0.2.14__tar.gz → 0.2.15__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. {django-botmanager-0.2.14/django_botmanager.egg-info → django-botmanager-0.2.15}/PKG-INFO +5 -3
  2. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/admin.py +3 -2
  3. {django-botmanager-0.2.14 → django-botmanager-0.2.15/django_botmanager.egg-info}/PKG-INFO +5 -3
  4. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/django_botmanager.egg-info/SOURCES.txt +1 -1
  5. django-botmanager-0.2.15/django_botmanager.egg-info/pbr.json +1 -0
  6. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/setup.py +1 -1
  7. django-botmanager-0.2.14/LICENSE +0 -24
  8. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/README.md +0 -0
  9. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/__init__.py +0 -0
  10. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/apps.py +0 -0
  11. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/basetask.py +0 -0
  12. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/management/__init__.py +0 -0
  13. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/management/commands/__init__.py +0 -0
  14. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/management/commands/bot_manager.py +0 -0
  15. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/migrations/0001_initial.py +0 -0
  16. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/migrations/0002_auto_20161208_1406.py +0 -0
  17. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/migrations/0003_auto_20161208_1529.py +0 -0
  18. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/migrations/0004_auto_20161219_1931.py +0 -0
  19. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/migrations/0005_task_parent.py +0 -0
  20. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/migrations/0006_task_priority.py +0 -0
  21. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/migrations/0007_task_is_persistent.py +0 -0
  22. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/migrations/0008_auto_20170331_1752.py +0 -0
  23. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/migrations/0009_task_extra_params.py +0 -0
  24. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/migrations/0010_auto_20170531_1321.py +0 -0
  25. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/migrations/0011_alter_task_create_dt_alter_task_id.py +0 -0
  26. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/migrations/__init__.py +0 -0
  27. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/models.py +0 -0
  28. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/settings.py +0 -0
  29. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/botmanager/utils.py +0 -0
  30. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/django_botmanager.egg-info/dependency_links.txt +0 -0
  31. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/django_botmanager.egg-info/requires.txt +0 -0
  32. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/django_botmanager.egg-info/top_level.txt +0 -0
  33. {django-botmanager-0.2.14 → django-botmanager-0.2.15}/setup.cfg +0 -0
@@ -1,8 +1,10 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 1.0
2
2
  Name: django-botmanager
3
- Version: 0.2.14
3
+ Version: 0.2.15
4
4
  Summary: Async tasks for django
5
5
  Home-page: https://github.com/dimoha/django-botmanager
6
6
  Author: Dimoha
7
7
  Author-email: dimoha@controlstyle.ru
8
- License-File: LICENSE
8
+ License: UNKNOWN
9
+ Description: UNKNOWN
10
+ Platform: UNKNOWN
@@ -1,6 +1,7 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  from django.contrib import admin
3
3
  from django.utils.html import escape
4
+ from django.utils.translation import gettext_lazy as _
4
5
  from botmanager.models import Task
5
6
 
6
7
 
@@ -28,12 +29,12 @@ class TaskAdmin(admin.ModelAdmin):
28
29
  else:
29
30
  return None
30
31
 
31
- error_field.short_description = u"Ошибка"
32
+ error_field.short_description = _("Ошибка")
32
33
  error_field.allow_tags = True
33
34
 
34
35
  def input_field(self, obj):
35
36
  return obj.input
36
37
 
37
- input_field.short_description = "Вводные данные"
38
+ input_field.short_description = _("Вводные данные")
38
39
 
39
40
  admin.site.register(Task, TaskAdmin)
@@ -1,8 +1,10 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 1.0
2
2
  Name: django-botmanager
3
- Version: 0.2.14
3
+ Version: 0.2.15
4
4
  Summary: Async tasks for django
5
5
  Home-page: https://github.com/dimoha/django-botmanager
6
6
  Author: Dimoha
7
7
  Author-email: dimoha@controlstyle.ru
8
- License-File: LICENSE
8
+ License: UNKNOWN
9
+ Description: UNKNOWN
10
+ Platform: UNKNOWN
@@ -1,4 +1,3 @@
1
- LICENSE
2
1
  README.md
3
2
  setup.py
4
3
  botmanager/__init__.py
@@ -26,5 +25,6 @@ botmanager/migrations/__init__.py
26
25
  django_botmanager.egg-info/PKG-INFO
27
26
  django_botmanager.egg-info/SOURCES.txt
28
27
  django_botmanager.egg-info/dependency_links.txt
28
+ django_botmanager.egg-info/pbr.json
29
29
  django_botmanager.egg-info/requires.txt
30
30
  django_botmanager.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ {"is_release": false, "git_version": "52264f9"}
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
3
3
 
4
4
  setup(
5
5
  name='django-botmanager',
6
- version='0.2.14',
6
+ version='0.2.15',
7
7
  description='Async tasks for django',
8
8
  author='Dimoha',
9
9
  author_email='dimoha@controlstyle.ru',
@@ -1,24 +0,0 @@
1
- Copyright (c) 2016-2017, Brytkov Dmitriy, Melnichuk Yaroslav
2
- All rights reserved.
3
-
4
- Redistribution and use in source and binary forms, with or without
5
- modification, are permitted provided that the following conditions are met:
6
-
7
- * Redistributions of source code must retain the above copyright notice, this
8
- list of conditions and the following disclaimer.
9
- * Redistributions in binary form must reproduce the above copyright notice,
10
- this list of conditions and the following disclaimer in the documentation
11
- and/or other materials provided with the distribution.
12
- * The names of its contributors may not be used to endorse or promote products
13
- derived from this software without specific prior written permission.
14
-
15
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
19
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
22
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.