diff --git a/HISTORY.rst b/HISTORY.rst index 8da213fc35..598f07411d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -30,6 +30,7 @@ * Add automatic adjustment of HTML body on navigation bar changes. Closes GitLab issue #643. Thanks to Light Templar (@LightTemplar) for the report. +* Unify all line endings to be Linux style. 3.2.6 (2019-07-10) ================== diff --git a/docs/releases/3.2.7.rst b/docs/releases/3.2.7.rst index 392a04b688..632d35b643 100644 --- a/docs/releases/3.2.7.rst +++ b/docs/releases/3.2.7.rst @@ -38,6 +38,7 @@ Changes - Add automatic adjustment of HTML body on navigation bar changes. Closes GitLab issue #643. Thanks to Light Templar (@LightTemplar) for the report. +- Unify all line endings to be Linux style. Removals -------- diff --git a/mayan/apps/appearance/templates/appearance/about.html b/mayan/apps/appearance/templates/appearance/about.html index 2bb43b1117..3e10465a32 100644 --- a/mayan/apps/appearance/templates/appearance/about.html +++ b/mayan/apps/appearance/templates/appearance/about.html @@ -1,156 +1,156 @@ -{% extends 'appearance/base.html' %} - -{% load i18n %} -{% load static %} - -{% load appearance_tags %} -{% load common_tags %} -{% load smart_settings_tags %} - -{% block title %}{% trans 'About' %}{% endblock %} - -{% block stylesheets %} - -{% endblock stylesheets %} - -{% block content %} - {% project_information '__build_string__' as build_number %} - {% smart_setting 'COMMON_PROJECT_TITLE' as setting_project_title %} - {% project_information '__title__' as project_title %} - - {% get_icon 'mayan.apps.common.icons.icon_documentation' as icon_documentation %} - {% get_icon 'mayan.apps.common.icons.icon_forum' as icon_forum %} - {% get_icon 'mayan.apps.common.icons.icon_social_facebook' as icon_social_facebook %} - {% get_icon 'mayan.apps.common.icons.icon_social_paypal' as icon_social_paypal %} - {% get_icon 'mayan.apps.common.icons.icon_social_twitter' as icon_social_twitter %} - {% get_icon 'mayan.apps.common.icons.icon_social_instagram' as icon_social_instagram %} - {% get_icon 'mayan.apps.common.icons.icon_source_code' as icon_source_code %} - {% get_icon 'mayan.apps.common.icons.icon_wiki' as icon_wiki %} - -
- {% blocktrans with setting_project_title as setting_project_title and project_title as project_title %} - {{ setting_project_title }} is based on {{ project_title }} - {% endblocktrans %} -
- {% endif %} -{% trans 'Version' %} {% project_information '__version__' %}
- {% if build_number %} -{% blocktrans with build_number as build_number %}Build number: {{ build_number }}{% endblocktrans %}
- {% endif %} -- {% project_information '__description__' as project_description %} - {% trans project_description %} -
- -- {% project_information '__website__' %} -
- -- {% project_information '__license__' as license_information %} - {% trans 'Released under the license:' %} {% trans license_information %} -
- -{% project_information '__title__' %}
- -- {% blocktrans with project_title as project_title %} - {{ project_title }} is a free and open-source software brought to you with by Roberto Rosario and contributors. - {% endblocktrans %} -
- -- {% blocktrans with project_title as project_title %} - It takes great effort to make {{ project_title }} as feature-rich as it is. We need all the help we can get! - {% endblocktrans %} -
- -- {% blocktrans with project_title as project_title and icon_social_paypal as icon_social_paypal%} - If you use {{ project_title }} please consider making a donation {{ icon_social_paypal }} - {% 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 }}. - {% endblocktrans %} -
- -- {% blocktrans with icon_documentation as icon_documentation and icon_wiki as icon_wiki %} - For questions check the Documentation {{ icon_documentation }} or the Wiki {{ icon_wiki }}. - {% endblocktrans %} -
- -- {% blocktrans with icon_forum as icon_forum and icon_source_code as icon_source_code %} - If you found a bug or have a feature idea, visit the Forum {{ icon_forum }} or open a ticket in the Source code repository {{ icon_source_code }}. - {% endblocktrans %} -
-- {% blocktrans with project_title as project_title and icon_twitter as icon_twitter and icon_facebook as icon_facebook and icon_instagram as icon_instagram %} - Spread the word. Talk to your friends and colleagues about how awesome {{ project_title }} is! - Follow us on Twitter {{ icon_social_twitter }}, Facebook {{ icon_social_facebook }}, or Instagram {{ icon_social_instagram }} - {% endblocktrans %} -
-+ {% blocktrans with setting_project_title as setting_project_title and project_title as project_title %} + {{ setting_project_title }} is based on {{ project_title }} + {% endblocktrans %} +
+ {% endif %} +{% trans 'Version' %} {% project_information '__version__' %}
+ {% if build_number %} +{% blocktrans with build_number as build_number %}Build number: {{ build_number }}{% endblocktrans %}
+ {% endif %} ++ {% project_information '__description__' as project_description %} + {% trans project_description %} +
+ ++ {% project_information '__website__' %} +
+ ++ {% project_information '__license__' as license_information %} + {% trans 'Released under the license:' %} {% trans license_information %} +
+ +{% project_information '__title__' %}
+ ++ {% blocktrans with project_title as project_title %} + {{ project_title }} is a free and open-source software brought to you with by Roberto Rosario and contributors. + {% endblocktrans %} +
+ ++ {% blocktrans with project_title as project_title %} + It takes great effort to make {{ project_title }} as feature-rich as it is. We need all the help we can get! + {% endblocktrans %} +
+ ++ {% blocktrans with project_title as project_title and icon_social_paypal as icon_social_paypal%} + If you use {{ project_title }} please consider making a donation {{ icon_social_paypal }} + {% 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 }}. + {% endblocktrans %} +
+ ++ {% blocktrans with icon_documentation as icon_documentation and icon_wiki as icon_wiki %} + For questions check the Documentation {{ icon_documentation }} or the Wiki {{ icon_wiki }}. + {% endblocktrans %} +
+ ++ {% blocktrans with icon_forum as icon_forum and icon_source_code as icon_source_code %} + If you found a bug or have a feature idea, visit the Forum {{ icon_forum }} or open a ticket in the Source code repository {{ icon_source_code }}. + {% endblocktrans %} +
++ {% blocktrans with project_title as project_title and icon_twitter as icon_twitter and icon_facebook as icon_facebook and icon_instagram as icon_instagram %} + Spread the word. Talk to your friends and colleagues about how awesome {{ project_title }} is! + Follow us on Twitter {{ icon_social_twitter }}, Facebook {{ icon_social_facebook }}, or Instagram {{ icon_social_instagram }} + {% endblocktrans %} +
+{% trans 'Warning' %} {{ check_sqlite }}
-{% trans 'Warning' %} {% trans 'Settings updated, restart your installation for changes to take proper effect.' %}
-{% trans 'Warning' %} {{ check_sqlite }}
+{% trans 'Warning' %} {% trans 'Settings updated, restart your installation for changes to take proper effect.' %}
+{{ missing.description }}
- - {% endfor %} -{{ missing.description }}
+ + {% endfor %} +{% blocktrans %}You have just finished installing {{ project_title }}, congratulations!{% endblocktrans %}
-{% trans 'Login using the following credentials:' %}
-{% blocktrans with autoadmin_properties.account as account %}Username: {{ account }}{% endblocktrans %}
-{% blocktrans with autoadmin_properties.account.email as email %}Email: {{ email }}{% endblocktrans %}
-{% blocktrans with autoadmin_properties.password as password %}Password: {{ password }}{% endblocktrans %}
-{% trans 'Be sure to change the password to increase security and to disable this message.' %}
-{% blocktrans %}You have just finished installing {{ project_title }}, congratulations!{% endblocktrans %}
+{% trans 'Login using the following credentials:' %}
+{% blocktrans with autoadmin_properties.account as account %}Username: {{ account }}{% endblocktrans %}
+{% blocktrans with autoadmin_properties.account.email as email %}Email: {{ email }}{% endblocktrans %}
+{% blocktrans with autoadmin_properties.password as password %}Password: {{ password }}{% endblocktrans %}
+{% trans 'Be sure to change the password to increase security and to disable this message.' %}
+