From 8e34bc02b3f69927d601044beac073a9ff4e9e64 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 27 Aug 2019 18:59:08 -0400 Subject: [PATCH 01/12] Add automatic adjustment of HTML body padding Closes GitLab issue #643. Thanks to Light Templar (@LightTemplar) for the report. Signed-off-by: Roberto Rosario --- HISTORY.rst | 3 +++ docs/releases/3.2.7.rst | 5 +++++ .../static/appearance/js/mayan_app.js | 18 +++++++++++++++++- .../appearance/templates/appearance/base.html | 2 ++ .../appearance/templates/appearance/root.html | 6 ++++++ 5 files changed, 33 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 67dd94f896..8da213fc35 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -27,6 +27,9 @@ for the report. * Rename the MAYAN_USER_GUID environment variable to MAYAN_USER_GID. +* Add automatic adjustment of HTML body on navigation + bar changes. Closes GitLab issue #643. Thanks to + Light Templar (@LightTemplar) for the report. 3.2.6 (2019-07-10) ================== diff --git a/docs/releases/3.2.7.rst b/docs/releases/3.2.7.rst index 7dadb0c199..392a04b688 100644 --- a/docs/releases/3.2.7.rst +++ b/docs/releases/3.2.7.rst @@ -35,6 +35,9 @@ Changes - Rename the MAYAN_USER_GUID environment variable to MAYAN_USER_GID. - Backport individual index rebuild support. +- Add automatic adjustment of HTML body on navigation + bar changes. Closes GitLab issue #643. Thanks to + Light Templar (@LightTemplar) for the report. Removals -------- @@ -127,11 +130,13 @@ Backward incompatible changes Bugs fixed or issues closed --------------------------- +- :gitlab-issue:`643` The "Actions" button won't show up, if window size between 992 and 1248 px - :gitlab-issue:`650` Permission denied when MAYAN_USER_UID and MAYAN_USER_GUID are set - :gitlab-issue:`652` MAYAN_USER_GUID cannot be set to specific values - :gitlab-issue:`654` Internal Server Error, Document Checkout - :gitlab-issue:`655` Index setup tree view shows two times the "enabled" field instead of "Link documents" - :gitlab-issue:`657` Mailer password length restriction is too short - :forum-topic:`1039` Re: /api/documents/{id}/cabinets returns 500 +- :forum-topic:`1050` edit/delete sub-cabinet .. _PyPI: https://pypi.python.org/pypi/mayan-edms/ diff --git a/mayan/apps/appearance/static/appearance/js/mayan_app.js b/mayan/apps/appearance/static/appearance/js/mayan_app.js index 4011ce59ca..fd65b1a6e6 100644 --- a/mayan/apps/appearance/static/appearance/js/mayan_app.js +++ b/mayan/apps/appearance/static/appearance/js/mayan_app.js @@ -60,6 +60,13 @@ class MayanApp { } } + doBodyAdjust () { + // Adjust the height of the body-spacer to move content elements + // up or down when the navbar changes size. + const navbarSize = 60; + $('.body-spacer').css('height', $('.navbar').height() - navbarSize); + } + doRefreshAJAXMenu (options) { $.ajax({ complete: function() { @@ -72,7 +79,7 @@ class MayanApp { $(options.menuSelector).html(data.html); options.app.ajaxMenuHashes[data.name] = data.hex_hash; if (options.callback !== undefined) { - options.callback(); + options.callback(options); } } }, @@ -156,6 +163,7 @@ class MayanApp { this.setupAJAXSpinner(); this.setupAutoSubmit(); + this.setupBodyAdjust(); this.setupFormHotkeys(); this.setupFullHeightResizing(); this.setupItemsSelector(); @@ -196,6 +204,14 @@ class MayanApp { }); } + setupBodyAdjust () { + var self = this; + + this.window.resize(function() { + self.doBodyAdjust(); + }); + } + setupFormHotkeys () { $('body').on('keypress', '.form-hotkey-enter', function (e) { if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) { diff --git a/mayan/apps/appearance/templates/appearance/base.html b/mayan/apps/appearance/templates/appearance/base.html index 09228b5fb5..1af9f0358c 100644 --- a/mayan/apps/appearance/templates/appearance/base.html +++ b/mayan/apps/appearance/templates/appearance/base.html @@ -55,6 +55,7 @@ {% navigation_resolve_menus names='object,secondary' sort_results=True as action_menus_link_results %} {% if action_menus_link_results %} - {% endif %} - {% block messages %} - {% endblock %} - - {% smart_settings_check_changed as settings_changed %} - {% if settings_changed %} -
- -

{% trans 'Warning' %} {% trans 'Settings updated, restart your installation for changes to take proper effect.' %}

-
- {% endif %} - - - - {% navigation_resolve_menus names='facet,list facet' sort_results=True as facet_menus_link_results %} - -
- - - {% if facet_menus_link_results %} - - {% endif %} -
- -{% endif %} - - -{% block javascript %}{% endblock %} - - +{% load i18n %} +{% load static %} + +{% load common_tags %} +{% load navigation_tags %} +{% load smart_settings_tags %} + + + +{% block stylesheets %}{% endblock %} + +{% if appearance_type == 'plain' %} + {% block content_plain %}{% endblock %} +{% else %} +
+
+
+ {% common_check_sqlite as check_sqlite %} + {% if common_check_sqlite %} +
+ +

{% trans 'Warning' %} {{ check_sqlite }}

+
+ {% endif %} + {% block messages %} + {% endblock %} + + {% smart_settings_check_changed as settings_changed %} + {% if settings_changed %} +
+ +

{% trans 'Warning' %} {% trans 'Settings updated, restart your installation for changes to take proper effect.' %}

+
+ {% endif %} +
+
+ + {% navigation_resolve_menus names='facet,list facet' sort_results=True as facet_menus_link_results %} + +
+ + + {% if facet_menus_link_results %} + + {% endif %} +
+
+{% endif %} + + +{% block javascript %}{% endblock %} + + diff --git a/mayan/apps/appearance/templates/appearance/home.html b/mayan/apps/appearance/templates/appearance/home.html index dc0b693aa7..9c7bc68cc8 100644 --- a/mayan/apps/appearance/templates/appearance/home.html +++ b/mayan/apps/appearance/templates/appearance/home.html @@ -1,49 +1,49 @@ -{% extends 'appearance/base.html' %} - -{% load i18n %} -{% load static %} - -{% load common_tags %} -{% load dashboards_tags %} -{% load navigation_tags %} - -{% block title %}{% trans 'Dashboard' %}{% endblock %} - -{% block javascript %} - -{% endblock javascript %} - -{% block content %} -
-
- {% if missing_list %} -
-
-

{% trans 'Getting started' %}

-
-
- {% trans 'Before you can fully use Mayan EDMS you need the following:' %} - -
- {% for missing in missing_list %} - -

{{ missing.label }}

-

{{ missing.description }}

-
- {% endfor %} -
-
-
- {% endif %} -
-
- - {% include 'dynamic_search/search_box.html' %} - - {% render_dashboard 'main' %} - -{% endblock %} +{% extends 'appearance/base.html' %} + +{% load i18n %} +{% load static %} + +{% load common_tags %} +{% load dashboards_tags %} +{% load navigation_tags %} + +{% block title %}{% trans 'Dashboard' %}{% endblock %} + +{% block javascript %} + +{% endblock javascript %} + +{% block content %} +
+
+ {% if missing_list %} +
+
+

{% trans 'Getting started' %}

+
+
+ {% trans 'Before you can fully use Mayan EDMS you need the following:' %} + +
+ {% for missing in missing_list %} + +

{{ missing.label }}

+

{{ missing.description }}

+
+ {% endfor %} +
+
+
+ {% endif %} +
+
+ + {% include 'dynamic_search/search_box.html' %} + + {% render_dashboard 'main' %} + +{% endblock %} diff --git a/mayan/apps/authentication/templates/authentication/login.html b/mayan/apps/authentication/templates/authentication/login.html index dcbe3ed42d..0d3fc49492 100644 --- a/mayan/apps/authentication/templates/authentication/login.html +++ b/mayan/apps/authentication/templates/authentication/login.html @@ -1,46 +1,46 @@ -{% extends 'appearance/base_plain.html' %} - -{% load i18n %} -{% load static %} - -{% load autoadmin_tags %} -{% load common_tags %} -{% load motd_tags %} -{% load smart_settings_tags %} - -{% block base_title %}{% trans 'Login' %}{% endblock %} - -{% block project_name %}{% endblock %} - -{% block content_plain %} - {% autoadmin_partial %} - {% motd %} - -
-
-
-
-

 

-
-
-

{% trans 'Sign in' %}

-
- -
-
-
-{% endblock %} +{% extends 'appearance/base_plain.html' %} + +{% load i18n %} +{% load static %} + +{% load autoadmin_tags %} +{% load common_tags %} +{% load motd_tags %} +{% load smart_settings_tags %} + +{% block base_title %}{% trans 'Login' %}{% endblock %} + +{% block project_name %}{% endblock %} + +{% block content_plain %} + {% autoadmin_partial %} + {% motd %} + +
+
+
+
+

 

+
+
+

{% trans 'Sign in' %}

+
+ +
+
+
+{% endblock %} diff --git a/mayan/apps/autoadmin/templates/autoadmin/credentials.html b/mayan/apps/autoadmin/templates/autoadmin/credentials.html index 7e89a5be15..3a258c8034 100755 --- a/mayan/apps/autoadmin/templates/autoadmin/credentials.html +++ b/mayan/apps/autoadmin/templates/autoadmin/credentials.html @@ -1,27 +1,27 @@ -{% load i18n %} - -{% load smart_settings_tags %} - -{% if autoadmin_properties.account %} -
-
-
-
-
-

{% trans 'First time login' %}

-
-
- -
-
-
-
-{% endif %} +{% load i18n %} + +{% load smart_settings_tags %} + +{% if autoadmin_properties.account %} +
+
+
+
+
+

{% trans 'First time login' %}

+
+
+ +
+
+
+
+{% endif %} From 649ef8151c08ec93cc70f1d5447d8c9f716c6aad Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 27 Aug 2019 19:21:06 -0400 Subject: [PATCH 03/12] Don't show system alerts under floating elements Signed-off-by: Roberto Rosario --- HISTORY.rst | 2 + docs/releases/3.2.7.rst | 2 + .../appearance/templates/appearance/base.html | 44 +++++++++---------- 3 files changed, 26 insertions(+), 22 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 598f07411d..8ab54d9c12 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -31,6 +31,8 @@ bar changes. Closes GitLab issue #643. Thanks to Light Templar (@LightTemplar) for the report. * Unify all line endings to be Linux style. +* Make sure system alerts don't appear under + floating elements. 3.2.6 (2019-07-10) ================== diff --git a/docs/releases/3.2.7.rst b/docs/releases/3.2.7.rst index 632d35b643..325836f0ad 100644 --- a/docs/releases/3.2.7.rst +++ b/docs/releases/3.2.7.rst @@ -39,6 +39,8 @@ Changes bar changes. Closes GitLab issue #643. Thanks to Light Templar (@LightTemplar) for the report. - Unify all line endings to be Linux style. +- Make sure system alerts don't appear under + floating elements. Removals -------- diff --git a/mayan/apps/appearance/templates/appearance/base.html b/mayan/apps/appearance/templates/appearance/base.html index 63cc89add7..a959bb2e93 100644 --- a/mayan/apps/appearance/templates/appearance/base.html +++ b/mayan/apps/appearance/templates/appearance/base.html @@ -23,32 +23,32 @@ {% block content_plain %}{% endblock %} {% else %}
-
-
- {% common_check_sqlite as check_sqlite %} - {% if common_check_sqlite %} -
- -

{% trans 'Warning' %} {{ check_sqlite }}

-
- {% endif %} - {% block messages %} - {% endblock %} - - {% smart_settings_check_changed as settings_changed %} - {% if settings_changed %} -
- -

{% trans 'Warning' %} {% trans 'Settings updated, restart your installation for changes to take proper effect.' %}

-
- {% endif %} -
-
- {% navigation_resolve_menus names='facet,list facet' sort_results=True as facet_menus_link_results %}
+

Book

+ +The pre-release version of the book "Exploring Mayan EDMS" available now at a discounted price! + + + +Limited quantities. Buyers of the pre-release will get the full version for free when it is ready. + +The link is https://sellfy.com/p/um2fkx/ +

Installation

The easiest way to use Mayan EDMS is by using the official From 3ad035adcb4dd1fe40b3afa700acfbb48fd6d12a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 27 Aug 2019 22:35:58 -0400 Subject: [PATCH 05/12] Add center book image Signed-off-by: Roberto Rosario --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7a265298ae..2b4a435120 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +[![Donation](https://img.shields.io/badge/Donation-PayPal-brightgreen)](https://paypal.me/MayanEDMS) [![pypi][pypi]][pypi-url] [![builds][builds]][builds-url] [![coverage][cover]][cover-url] @@ -5,7 +6,7 @@ ![license][license] [![Docker pulls](https://img.shields.io/docker/pulls/mayanedms/mayanedms.svg?maxAge=3600)](https://hub.docker.com/r/mayanedms/mayanedms/) [![Docker Stars](https://img.shields.io/docker/stars/mayanedms/mayanedms.svg?maxAge=3600)](https://hub.docker.com/r/mayanedms/mayanedms/) -[![Docker layers](https://images.microbadger.com/badges/image/mayanedms/mayanedms.svg)](https://microbadger.com/images/mayanedms/mayanedms) + [pypi]: http://img.shields.io/pypi/v/mayan-edms.svg [pypi-url]: http://badge.fury.io/py/mayan-edms @@ -47,7 +48,11 @@ The pre-release version of the book "Exploring Mayan EDMS" available now at a discounted price! - +

+ + + +

Limited quantities. Buyers of the pre-release will get the full version for free when it is ready. From f303cdfe9555f651d4b0bcab4299ecc2b61148a7 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 27 Aug 2019 22:43:53 -0400 Subject: [PATCH 06/12] Update book links Signed-off-by: Roberto Rosario --- README.md | 3 +-- README.rst | 14 +++++++++++++- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2b4a435120..37026453b4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ -[![Donation](https://img.shields.io/badge/Donation-PayPal-brightgreen)](https://paypal.me/MayanEDMS) +[![Donation](https://img.shields.io/badge/donation-PayPal-brightgreen)](https://paypal.me/MayanEDMS) [![pypi][pypi]][pypi-url] [![builds][builds]][builds-url] -[![coverage][cover]][cover-url] ![python][python] ![license][license] [![Docker pulls](https://img.shields.io/docker/pulls/mayanedms/mayanedms.svg?maxAge=3600)](https://hub.docker.com/r/mayanedms/mayanedms/) diff --git a/README.rst b/README.rst index 2066833da6..25498d500c 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -|pypi| |builds| |coverage| |python| |license| |docker_pulls| |docker_stars| |docker_layers| +|donation| |pypi| |builds| |coverage| |python| |license| |docker_pulls| |docker_stars| |docker_layers| .. image:: https://gitlab.com/mayan-edms/mayan-edms/raw/master/docs/_static/mayan_logo.png @@ -25,6 +25,16 @@ at: https://docs.mayan-edms.com/topics/installation.html .. _Docker: https://www.docker.com/ +The pre-release version of the book "Exploring Mayan EDMS" available now at a discounted price! + +.. image:: https://camo.githubusercontent.com/89d2fe787507c9247aa7bb406e2682b53eb7a5f9/68747470733a2f2f64313273776274773731397934732e636c6f756466726f6e742e6e65742f696d616765732f76365270785734302f615030714b4c6a6b50694175585a6859754234352f774441554c417a4679782e6a7065673f773d353438 + :align: center + :width: 300 + :target: https://sellfy.com/p/um2fkx/ + +Limited quantities. Buyers of the pre-release will get the full version for free when it is ready. +Click the image or visit: https://sellfy.com/p/um2fkx/ + Hardware requirements - 2 Gigabytes of RAM (1 Gigabyte if OCR is turned off). @@ -44,6 +54,8 @@ Important links - `Videos `__ +.. |donation| image:: https://img.shields.io/badge/donation-PayPal-brightgreen + :target: https://paypal.me/MayanEDMS .. |pypi| image:: http://img.shields.io/pypi/v/mayan-edms.svg :target: http://badge.fury.io/py/mayan-edms .. |builds| image:: https://gitlab.com/mayan-edms/mayan-edms/badges/master/build.svg From 54769bf22ad8d138bc6f5eb5506bbea42a1df821 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 28 Aug 2019 03:25:29 -0400 Subject: [PATCH 07/12] Adjust body after new AJAX content Signed-off-by: Roberto Rosario --- mayan/apps/appearance/templates/appearance/base.html | 2 +- mayan/apps/appearance/templates/appearance/root.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/apps/appearance/templates/appearance/base.html b/mayan/apps/appearance/templates/appearance/base.html index a959bb2e93..46056cf83a 100644 --- a/mayan/apps/appearance/templates/appearance/base.html +++ b/mayan/apps/appearance/templates/appearance/base.html @@ -30,7 +30,7 @@
{% common_check_sqlite as check_sqlite %} - {% if common_check_sqlite or 1 %} + {% if common_check_sqlite %}

{% trans 'Warning' %} {{ check_sqlite }}

diff --git a/mayan/apps/appearance/templates/appearance/root.html b/mayan/apps/appearance/templates/appearance/root.html index 2da57630c3..ca6373f6c0 100644 --- a/mayan/apps/appearance/templates/appearance/root.html +++ b/mayan/apps/appearance/templates/appearance/root.html @@ -117,11 +117,11 @@ MayanImage.intialize({ templateInvalidDocument: '{% spaceless %}{% include "documents/invalid_document.html" %}{% endspaceless %}' }); + app.doBodyAdjust(); app.doToastrMessages(); app.resizeFullHeight(); app.setupSelect2(); app.setupScrollView(); - } jQuery(document).ready(function() { From fce0601d2521b060f7cbc68bc7c1fe39742f8901 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 28 Aug 2019 17:20:31 -0400 Subject: [PATCH 08/12] Set release date Signed-off-by: Roberto Rosario --- HISTORY.rst | 2 +- docs/releases/3.2.7.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8ab54d9c12..20ee9db2e5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,4 +1,4 @@ -3.2.7 (2019-08-XX) +3.2.7 (2019-08-28) ================== * Fix checkout form bug. Thanks to Lucius Schaerer (@lschaer1) for the report. diff --git a/docs/releases/3.2.7.rst b/docs/releases/3.2.7.rst index 325836f0ad..2054f37b80 100644 --- a/docs/releases/3.2.7.rst +++ b/docs/releases/3.2.7.rst @@ -1,7 +1,7 @@ Version 3.2.7 ============= -Released: August XX, 2019 +Released: August 28, 2019 Changes From 04b19f8d2edd38dfaa8e814e9989da5e960e0587 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 28 Aug 2019 17:29:43 -0400 Subject: [PATCH 09/12] Add book link Signed-off-by: Roberto Rosario --- .../apps/appearance/templates/appearance/about.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/mayan/apps/appearance/templates/appearance/about.html b/mayan/apps/appearance/templates/appearance/about.html index 3e10465a32..183955fc3f 100644 --- a/mayan/apps/appearance/templates/appearance/about.html +++ b/mayan/apps/appearance/templates/appearance/about.html @@ -117,6 +117,18 @@ {% endblocktrans %}

+

+ {% blocktrans with icon_social_paypal as icon_social_paypal%} + You can also donate directly to the creator and lead developer. {{ icon_social_paypal }} + {% endblocktrans %} +

+ +

+ {% blocktrans with icon_social_paypal as icon_social_paypal%} + Besides donations you can also support the project by purchasing a copy of the book "Exploring Mayan EDMS" by Roberto Rosario.
The book is available on pre-release format at a discounted price for a limited time. + {% endblocktrans %} +

+

{% blocktrans with icon_documentation as icon_documentation and icon_wiki as icon_wiki %} The complete list of changes is available via the Release notes {{ icon_documentation }} or the short version Changelog {{ icon_documentation }}. From 734ca02a955fd11b6f03c6935bbc40b9cd45634d Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 28 Aug 2019 17:29:56 -0400 Subject: [PATCH 10/12] Warning cleanup Signed-off-by: Roberto Rosario --- mayan/apps/document_indexing/tests/test_views.py | 1 - 1 file changed, 1 deletion(-) diff --git a/mayan/apps/document_indexing/tests/test_views.py b/mayan/apps/document_indexing/tests/test_views.py index c7e163d76c..6eac0dedb1 100644 --- a/mayan/apps/document_indexing/tests/test_views.py +++ b/mayan/apps/document_indexing/tests/test_views.py @@ -90,7 +90,6 @@ class IndexInstaceViewTestCase( link_documents=True ) - def test_index_rebuild_view_no_permission(self): self.upload_document() self._create_test_index() From 373a712669da523550943c0c9116e1d945a306e7 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 28 Aug 2019 17:31:08 -0400 Subject: [PATCH 11/12] Bump version to 3.2.7 Signed-off-by: Roberto Rosario --- docker/rootfs/version | 2 +- mayan/__init__.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker/rootfs/version b/docker/rootfs/version index 34cde5690e..406ebcbd95 100755 --- a/docker/rootfs/version +++ b/docker/rootfs/version @@ -1 +1 @@ -3.2.6 +3.2.7 diff --git a/mayan/__init__.py b/mayan/__init__.py index 5c740e43d9..b0a5bc98a8 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -1,9 +1,9 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' -__version__ = '3.2.6' -__build__ = 0x030206 -__build_string__ = 'v3.2.6_Wed Jul 10 03:18:15 2019 -0400' +__version__ = '3.2.7' +__build__ = 0x030207 +__build_string__ = 'v3.2.6-39-g734ca02a95_Wed Aug 28 17:29:56 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com' From b329ed7618b5ed6e8dba81bb39c614df64418318 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 28 Aug 2019 17:32:09 -0400 Subject: [PATCH 12/12] Update build number Signed-off-by: Roberto Rosario --- mayan/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/__init__.py b/mayan/__init__.py index b0a5bc98a8..761d9b1094 100644 --- a/mayan/__init__.py +++ b/mayan/__init__.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals __title__ = 'Mayan EDMS' __version__ = '3.2.7' __build__ = 0x030207 -__build_string__ = 'v3.2.6-39-g734ca02a95_Wed Aug 28 17:29:56 2019 -0400' +__build_string__ = 'v3.2.7_Wed Aug 28 17:31:08 2019 -0400' __django_version__ = '1.11' __author__ = 'Roberto Rosario' __author_email__ = 'roberto.rosario@mayan-edms.com'