pkgsrc/www/py-django2/PLIST

5051 lines
291 KiB
Text
Raw Normal View History

@comment $NetBSD: PLIST,v 1.7 2019/07/01 18:26:22 adam Exp $
bin/django-admin-${PYVERSSUFFIX}
bin/django-admin-${PYVERSSUFFIX}.py
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/django/__init__.py
${PYSITELIB}/django/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/__init__.pyo
${PYSITELIB}/django/__main__.py
${PYSITELIB}/django/__main__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/__main__.pyo
${PYSITELIB}/django/apps/__init__.py
${PYSITELIB}/django/apps/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/apps/__init__.pyo
${PYSITELIB}/django/apps/config.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/apps/config.pyc
${PYSITELIB}/django/apps/config.pyo
${PYSITELIB}/django/apps/registry.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/apps/registry.pyc
${PYSITELIB}/django/apps/registry.pyo
${PYSITELIB}/django/bin/django-admin.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/bin/django-admin.pyc
${PYSITELIB}/django/bin/django-admin.pyo
${PYSITELIB}/django/conf/__init__.py
${PYSITELIB}/django/conf/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/__init__.pyo
${PYSITELIB}/django/conf/app_template/__init__.py-tpl
${PYSITELIB}/django/conf/app_template/admin.py-tpl
${PYSITELIB}/django/conf/app_template/apps.py-tpl
${PYSITELIB}/django/conf/app_template/migrations/__init__.py-tpl
${PYSITELIB}/django/conf/app_template/models.py-tpl
${PYSITELIB}/django/conf/app_template/tests.py-tpl
${PYSITELIB}/django/conf/app_template/views.py-tpl
${PYSITELIB}/django/conf/global_settings.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/global_settings.pyc
${PYSITELIB}/django/conf/global_settings.pyo
${PYSITELIB}/django/conf/locale/__init__.py
${PYSITELIB}/django/conf/locale/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/__init__.pyo
${PYSITELIB}/django/conf/locale/af/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/af/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ar/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ar/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ar/__init__.py
${PYSITELIB}/django/conf/locale/ar/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ar/__init__.pyo
${PYSITELIB}/django/conf/locale/ar/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ar/formats.pyc
${PYSITELIB}/django/conf/locale/ar/formats.pyo
${PYSITELIB}/django/conf/locale/ast/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ast/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/az/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/az/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/az/__init__.py
${PYSITELIB}/django/conf/locale/az/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/az/__init__.pyo
${PYSITELIB}/django/conf/locale/az/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/az/formats.pyc
${PYSITELIB}/django/conf/locale/az/formats.pyo
${PYSITELIB}/django/conf/locale/be/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/be/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/bg/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/bg/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/bg/__init__.py
${PYSITELIB}/django/conf/locale/bg/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/bg/__init__.pyo
${PYSITELIB}/django/conf/locale/bg/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/bg/formats.pyc
${PYSITELIB}/django/conf/locale/bg/formats.pyo
${PYSITELIB}/django/conf/locale/bn/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/bn/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/bn/__init__.py
${PYSITELIB}/django/conf/locale/bn/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/bn/__init__.pyo
${PYSITELIB}/django/conf/locale/bn/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/bn/formats.pyc
${PYSITELIB}/django/conf/locale/bn/formats.pyo
${PYSITELIB}/django/conf/locale/br/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/br/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/bs/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/bs/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/bs/__init__.py
${PYSITELIB}/django/conf/locale/bs/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/bs/__init__.pyo
${PYSITELIB}/django/conf/locale/bs/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/bs/formats.pyc
${PYSITELIB}/django/conf/locale/bs/formats.pyo
${PYSITELIB}/django/conf/locale/ca/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ca/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ca/__init__.py
${PYSITELIB}/django/conf/locale/ca/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ca/__init__.pyo
${PYSITELIB}/django/conf/locale/ca/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ca/formats.pyc
${PYSITELIB}/django/conf/locale/ca/formats.pyo
${PYSITELIB}/django/conf/locale/cs/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/cs/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/cs/__init__.py
${PYSITELIB}/django/conf/locale/cs/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/cs/__init__.pyo
${PYSITELIB}/django/conf/locale/cs/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/cs/formats.pyc
${PYSITELIB}/django/conf/locale/cs/formats.pyo
${PYSITELIB}/django/conf/locale/cy/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/cy/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/cy/__init__.py
${PYSITELIB}/django/conf/locale/cy/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/cy/__init__.pyo
${PYSITELIB}/django/conf/locale/cy/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/cy/formats.pyc
${PYSITELIB}/django/conf/locale/cy/formats.pyo
${PYSITELIB}/django/conf/locale/da/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/da/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/da/__init__.py
${PYSITELIB}/django/conf/locale/da/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/da/__init__.pyo
${PYSITELIB}/django/conf/locale/da/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/da/formats.pyc
${PYSITELIB}/django/conf/locale/da/formats.pyo
${PYSITELIB}/django/conf/locale/de/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/de/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/de/__init__.py
${PYSITELIB}/django/conf/locale/de/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/de/__init__.pyo
${PYSITELIB}/django/conf/locale/de/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/de/formats.pyc
${PYSITELIB}/django/conf/locale/de/formats.pyo
${PYSITELIB}/django/conf/locale/de_CH/__init__.py
${PYSITELIB}/django/conf/locale/de_CH/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/de_CH/__init__.pyo
${PYSITELIB}/django/conf/locale/de_CH/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/de_CH/formats.pyc
${PYSITELIB}/django/conf/locale/de_CH/formats.pyo
${PYSITELIB}/django/conf/locale/dsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/dsb/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/el/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/el/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/el/__init__.py
${PYSITELIB}/django/conf/locale/el/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/el/__init__.pyo
${PYSITELIB}/django/conf/locale/el/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/el/formats.pyc
${PYSITELIB}/django/conf/locale/el/formats.pyo
${PYSITELIB}/django/conf/locale/en/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/en/__init__.py
${PYSITELIB}/django/conf/locale/en/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/en/__init__.pyo
${PYSITELIB}/django/conf/locale/en/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/en/formats.pyc
${PYSITELIB}/django/conf/locale/en/formats.pyo
${PYSITELIB}/django/conf/locale/en_AU/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/en_AU/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/en_AU/__init__.py
${PYSITELIB}/django/conf/locale/en_AU/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/en_AU/__init__.pyo
${PYSITELIB}/django/conf/locale/en_AU/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/en_AU/formats.pyc
${PYSITELIB}/django/conf/locale/en_AU/formats.pyo
${PYSITELIB}/django/conf/locale/en_GB/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/en_GB/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/en_GB/__init__.py
${PYSITELIB}/django/conf/locale/en_GB/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/en_GB/__init__.pyo
${PYSITELIB}/django/conf/locale/en_GB/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/en_GB/formats.pyc
${PYSITELIB}/django/conf/locale/en_GB/formats.pyo
${PYSITELIB}/django/conf/locale/eo/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/eo/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/eo/__init__.py
${PYSITELIB}/django/conf/locale/eo/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/eo/__init__.pyo
${PYSITELIB}/django/conf/locale/eo/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/eo/formats.pyc
${PYSITELIB}/django/conf/locale/eo/formats.pyo
${PYSITELIB}/django/conf/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/es/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/es/__init__.py
${PYSITELIB}/django/conf/locale/es/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/es/__init__.pyo
${PYSITELIB}/django/conf/locale/es/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/es/formats.pyc
${PYSITELIB}/django/conf/locale/es/formats.pyo
${PYSITELIB}/django/conf/locale/es_AR/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/es_AR/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/es_AR/__init__.py
${PYSITELIB}/django/conf/locale/es_AR/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/es_AR/__init__.pyo
${PYSITELIB}/django/conf/locale/es_AR/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/es_AR/formats.pyc
${PYSITELIB}/django/conf/locale/es_AR/formats.pyo
${PYSITELIB}/django/conf/locale/es_CO/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/es_CO/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/es_CO/__init__.py
${PYSITELIB}/django/conf/locale/es_CO/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/es_CO/__init__.pyo
${PYSITELIB}/django/conf/locale/es_CO/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/es_CO/formats.pyc
${PYSITELIB}/django/conf/locale/es_CO/formats.pyo
${PYSITELIB}/django/conf/locale/es_MX/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/es_MX/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/es_MX/__init__.py
${PYSITELIB}/django/conf/locale/es_MX/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/es_MX/__init__.pyo
${PYSITELIB}/django/conf/locale/es_MX/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/es_MX/formats.pyc
${PYSITELIB}/django/conf/locale/es_MX/formats.pyo
${PYSITELIB}/django/conf/locale/es_NI/__init__.py
${PYSITELIB}/django/conf/locale/es_NI/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/es_NI/__init__.pyo
${PYSITELIB}/django/conf/locale/es_NI/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/es_NI/formats.pyc
${PYSITELIB}/django/conf/locale/es_NI/formats.pyo
${PYSITELIB}/django/conf/locale/es_PR/__init__.py
${PYSITELIB}/django/conf/locale/es_PR/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/es_PR/__init__.pyo
${PYSITELIB}/django/conf/locale/es_PR/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/es_PR/formats.pyc
${PYSITELIB}/django/conf/locale/es_PR/formats.pyo
${PYSITELIB}/django/conf/locale/es_VE/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/es_VE/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/et/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/et/__init__.py
${PYSITELIB}/django/conf/locale/et/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/et/__init__.pyo
${PYSITELIB}/django/conf/locale/et/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/et/formats.pyc
${PYSITELIB}/django/conf/locale/et/formats.pyo
${PYSITELIB}/django/conf/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/eu/__init__.py
${PYSITELIB}/django/conf/locale/eu/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/eu/__init__.pyo
${PYSITELIB}/django/conf/locale/eu/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/eu/formats.pyc
${PYSITELIB}/django/conf/locale/eu/formats.pyo
${PYSITELIB}/django/conf/locale/fa/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/fa/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/fa/__init__.py
${PYSITELIB}/django/conf/locale/fa/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/fa/__init__.pyo
${PYSITELIB}/django/conf/locale/fa/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/fa/formats.pyc
${PYSITELIB}/django/conf/locale/fa/formats.pyo
${PYSITELIB}/django/conf/locale/fi/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/fi/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/fi/__init__.py
${PYSITELIB}/django/conf/locale/fi/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/fi/__init__.pyo
${PYSITELIB}/django/conf/locale/fi/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/fi/formats.pyc
${PYSITELIB}/django/conf/locale/fi/formats.pyo
${PYSITELIB}/django/conf/locale/fr/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/fr/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/fr/__init__.py
${PYSITELIB}/django/conf/locale/fr/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/fr/__init__.pyo
${PYSITELIB}/django/conf/locale/fr/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/fr/formats.pyc
${PYSITELIB}/django/conf/locale/fr/formats.pyo
${PYSITELIB}/django/conf/locale/fy/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/fy/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/fy/__init__.py
${PYSITELIB}/django/conf/locale/fy/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/fy/__init__.pyo
${PYSITELIB}/django/conf/locale/fy/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/fy/formats.pyc
${PYSITELIB}/django/conf/locale/fy/formats.pyo
${PYSITELIB}/django/conf/locale/ga/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ga/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ga/__init__.py
${PYSITELIB}/django/conf/locale/ga/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ga/__init__.pyo
${PYSITELIB}/django/conf/locale/ga/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ga/formats.pyc
${PYSITELIB}/django/conf/locale/ga/formats.pyo
${PYSITELIB}/django/conf/locale/gd/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/gd/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/gd/__init__.py
${PYSITELIB}/django/conf/locale/gd/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/gd/__init__.pyo
${PYSITELIB}/django/conf/locale/gd/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/gd/formats.pyc
${PYSITELIB}/django/conf/locale/gd/formats.pyo
${PYSITELIB}/django/conf/locale/gl/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/gl/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/gl/__init__.py
${PYSITELIB}/django/conf/locale/gl/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/gl/__init__.pyo
${PYSITELIB}/django/conf/locale/gl/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/gl/formats.pyc
${PYSITELIB}/django/conf/locale/gl/formats.pyo
${PYSITELIB}/django/conf/locale/he/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/he/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/he/__init__.py
${PYSITELIB}/django/conf/locale/he/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/he/__init__.pyo
${PYSITELIB}/django/conf/locale/he/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/he/formats.pyc
${PYSITELIB}/django/conf/locale/he/formats.pyo
${PYSITELIB}/django/conf/locale/hi/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/hi/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/hi/__init__.py
${PYSITELIB}/django/conf/locale/hi/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/hi/__init__.pyo
${PYSITELIB}/django/conf/locale/hi/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/hi/formats.pyc
${PYSITELIB}/django/conf/locale/hi/formats.pyo
${PYSITELIB}/django/conf/locale/hr/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/hr/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/hr/__init__.py
${PYSITELIB}/django/conf/locale/hr/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/hr/__init__.pyo
${PYSITELIB}/django/conf/locale/hr/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/hr/formats.pyc
${PYSITELIB}/django/conf/locale/hr/formats.pyo
${PYSITELIB}/django/conf/locale/hsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/hsb/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/hu/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/hu/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/hu/__init__.py
${PYSITELIB}/django/conf/locale/hu/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/hu/__init__.pyo
${PYSITELIB}/django/conf/locale/hu/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/hu/formats.pyc
${PYSITELIB}/django/conf/locale/hu/formats.pyo
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/conf/locale/hy/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/hy/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ia/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ia/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/id/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/id/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/id/__init__.py
${PYSITELIB}/django/conf/locale/id/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/id/__init__.pyo
${PYSITELIB}/django/conf/locale/id/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/id/formats.pyc
${PYSITELIB}/django/conf/locale/id/formats.pyo
${PYSITELIB}/django/conf/locale/io/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/io/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/is/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/is/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/is/__init__.py
${PYSITELIB}/django/conf/locale/is/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/is/__init__.pyo
${PYSITELIB}/django/conf/locale/is/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/is/formats.pyc
${PYSITELIB}/django/conf/locale/is/formats.pyo
${PYSITELIB}/django/conf/locale/it/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/it/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/it/__init__.py
${PYSITELIB}/django/conf/locale/it/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/it/__init__.pyo
${PYSITELIB}/django/conf/locale/it/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/it/formats.pyc
${PYSITELIB}/django/conf/locale/it/formats.pyo
${PYSITELIB}/django/conf/locale/ja/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ja/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ja/__init__.py
${PYSITELIB}/django/conf/locale/ja/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ja/__init__.pyo
${PYSITELIB}/django/conf/locale/ja/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ja/formats.pyc
${PYSITELIB}/django/conf/locale/ja/formats.pyo
${PYSITELIB}/django/conf/locale/ka/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ka/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ka/__init__.py
${PYSITELIB}/django/conf/locale/ka/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ka/__init__.pyo
${PYSITELIB}/django/conf/locale/ka/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ka/formats.pyc
${PYSITELIB}/django/conf/locale/ka/formats.pyo
${PYSITELIB}/django/conf/locale/kab/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/kab/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/kk/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/kk/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/km/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/km/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/km/__init__.py
${PYSITELIB}/django/conf/locale/km/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/km/__init__.pyo
${PYSITELIB}/django/conf/locale/km/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/km/formats.pyc
${PYSITELIB}/django/conf/locale/km/formats.pyo
${PYSITELIB}/django/conf/locale/kn/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/kn/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/kn/__init__.py
${PYSITELIB}/django/conf/locale/kn/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/kn/__init__.pyo
${PYSITELIB}/django/conf/locale/kn/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/kn/formats.pyc
${PYSITELIB}/django/conf/locale/kn/formats.pyo
${PYSITELIB}/django/conf/locale/ko/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ko/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ko/__init__.py
${PYSITELIB}/django/conf/locale/ko/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ko/__init__.pyo
${PYSITELIB}/django/conf/locale/ko/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ko/formats.pyc
${PYSITELIB}/django/conf/locale/ko/formats.pyo
${PYSITELIB}/django/conf/locale/lb/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/lb/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/lt/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/lt/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/lt/__init__.py
${PYSITELIB}/django/conf/locale/lt/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/lt/__init__.pyo
${PYSITELIB}/django/conf/locale/lt/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/lt/formats.pyc
${PYSITELIB}/django/conf/locale/lt/formats.pyo
${PYSITELIB}/django/conf/locale/lv/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/lv/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/lv/__init__.py
${PYSITELIB}/django/conf/locale/lv/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/lv/__init__.pyo
${PYSITELIB}/django/conf/locale/lv/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/lv/formats.pyc
${PYSITELIB}/django/conf/locale/lv/formats.pyo
${PYSITELIB}/django/conf/locale/mk/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/mk/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/mk/__init__.py
${PYSITELIB}/django/conf/locale/mk/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/mk/__init__.pyo
${PYSITELIB}/django/conf/locale/mk/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/mk/formats.pyc
${PYSITELIB}/django/conf/locale/mk/formats.pyo
${PYSITELIB}/django/conf/locale/ml/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ml/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ml/__init__.py
${PYSITELIB}/django/conf/locale/ml/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ml/__init__.pyo
${PYSITELIB}/django/conf/locale/ml/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ml/formats.pyc
${PYSITELIB}/django/conf/locale/ml/formats.pyo
${PYSITELIB}/django/conf/locale/mn/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/mn/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/mn/__init__.py
${PYSITELIB}/django/conf/locale/mn/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/mn/__init__.pyo
${PYSITELIB}/django/conf/locale/mn/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/mn/formats.pyc
${PYSITELIB}/django/conf/locale/mn/formats.pyo
${PYSITELIB}/django/conf/locale/mr/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/mr/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/my/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/my/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/nb/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/nb/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/nb/__init__.py
${PYSITELIB}/django/conf/locale/nb/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/nb/__init__.pyo
${PYSITELIB}/django/conf/locale/nb/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/nb/formats.pyc
${PYSITELIB}/django/conf/locale/nb/formats.pyo
${PYSITELIB}/django/conf/locale/ne/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ne/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/nl/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/nl/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/nl/__init__.py
${PYSITELIB}/django/conf/locale/nl/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/nl/__init__.pyo
${PYSITELIB}/django/conf/locale/nl/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/nl/formats.pyc
${PYSITELIB}/django/conf/locale/nl/formats.pyo
${PYSITELIB}/django/conf/locale/nn/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/nn/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/nn/__init__.py
${PYSITELIB}/django/conf/locale/nn/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/nn/__init__.pyo
${PYSITELIB}/django/conf/locale/nn/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/nn/formats.pyc
${PYSITELIB}/django/conf/locale/nn/formats.pyo
${PYSITELIB}/django/conf/locale/os/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/os/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/pa/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/pa/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/pl/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/pl/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/pl/__init__.py
${PYSITELIB}/django/conf/locale/pl/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/pl/__init__.pyo
${PYSITELIB}/django/conf/locale/pl/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/pl/formats.pyc
${PYSITELIB}/django/conf/locale/pl/formats.pyo
${PYSITELIB}/django/conf/locale/pt/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/pt/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/pt/__init__.py
${PYSITELIB}/django/conf/locale/pt/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/pt/__init__.pyo
${PYSITELIB}/django/conf/locale/pt/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/pt/formats.pyc
${PYSITELIB}/django/conf/locale/pt/formats.pyo
${PYSITELIB}/django/conf/locale/pt_BR/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/pt_BR/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/pt_BR/__init__.py
${PYSITELIB}/django/conf/locale/pt_BR/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/pt_BR/__init__.pyo
${PYSITELIB}/django/conf/locale/pt_BR/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/pt_BR/formats.pyc
${PYSITELIB}/django/conf/locale/pt_BR/formats.pyo
${PYSITELIB}/django/conf/locale/ro/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ro/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ro/__init__.py
${PYSITELIB}/django/conf/locale/ro/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ro/__init__.pyo
${PYSITELIB}/django/conf/locale/ro/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ro/formats.pyc
${PYSITELIB}/django/conf/locale/ro/formats.pyo
${PYSITELIB}/django/conf/locale/ru/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ru/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ru/__init__.py
${PYSITELIB}/django/conf/locale/ru/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ru/__init__.pyo
${PYSITELIB}/django/conf/locale/ru/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ru/formats.pyc
${PYSITELIB}/django/conf/locale/ru/formats.pyo
${PYSITELIB}/django/conf/locale/sk/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/sk/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/sk/__init__.py
${PYSITELIB}/django/conf/locale/sk/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/sk/__init__.pyo
${PYSITELIB}/django/conf/locale/sk/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/sk/formats.pyc
${PYSITELIB}/django/conf/locale/sk/formats.pyo
${PYSITELIB}/django/conf/locale/sl/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/sl/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/sl/__init__.py
${PYSITELIB}/django/conf/locale/sl/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/sl/__init__.pyo
${PYSITELIB}/django/conf/locale/sl/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/sl/formats.pyc
${PYSITELIB}/django/conf/locale/sl/formats.pyo
${PYSITELIB}/django/conf/locale/sq/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/sq/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/sq/__init__.py
${PYSITELIB}/django/conf/locale/sq/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/sq/__init__.pyo
${PYSITELIB}/django/conf/locale/sq/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/sq/formats.pyc
${PYSITELIB}/django/conf/locale/sq/formats.pyo
${PYSITELIB}/django/conf/locale/sr/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/sr/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/sr/__init__.py
${PYSITELIB}/django/conf/locale/sr/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/sr/__init__.pyo
${PYSITELIB}/django/conf/locale/sr/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/sr/formats.pyc
${PYSITELIB}/django/conf/locale/sr/formats.pyo
${PYSITELIB}/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/sr_Latn/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/sr_Latn/__init__.py
${PYSITELIB}/django/conf/locale/sr_Latn/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/sr_Latn/__init__.pyo
${PYSITELIB}/django/conf/locale/sr_Latn/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/sr_Latn/formats.pyc
${PYSITELIB}/django/conf/locale/sr_Latn/formats.pyo
${PYSITELIB}/django/conf/locale/sv/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/sv/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/sv/__init__.py
${PYSITELIB}/django/conf/locale/sv/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/sv/__init__.pyo
${PYSITELIB}/django/conf/locale/sv/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/sv/formats.pyc
${PYSITELIB}/django/conf/locale/sv/formats.pyo
${PYSITELIB}/django/conf/locale/sw/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/sw/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ta/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ta/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/ta/__init__.py
${PYSITELIB}/django/conf/locale/ta/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ta/__init__.pyo
${PYSITELIB}/django/conf/locale/ta/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/ta/formats.pyc
${PYSITELIB}/django/conf/locale/ta/formats.pyo
${PYSITELIB}/django/conf/locale/te/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/te/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/te/__init__.py
${PYSITELIB}/django/conf/locale/te/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/te/__init__.pyo
${PYSITELIB}/django/conf/locale/te/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/te/formats.pyc
${PYSITELIB}/django/conf/locale/te/formats.pyo
${PYSITELIB}/django/conf/locale/th/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/th/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/th/__init__.py
${PYSITELIB}/django/conf/locale/th/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/th/__init__.pyo
${PYSITELIB}/django/conf/locale/th/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/th/formats.pyc
${PYSITELIB}/django/conf/locale/th/formats.pyo
${PYSITELIB}/django/conf/locale/tr/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/tr/__init__.py
${PYSITELIB}/django/conf/locale/tr/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/tr/__init__.pyo
${PYSITELIB}/django/conf/locale/tr/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/tr/formats.pyc
${PYSITELIB}/django/conf/locale/tr/formats.pyo
${PYSITELIB}/django/conf/locale/tt/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/tt/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/udm/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/udm/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/uk/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/uk/__init__.py
${PYSITELIB}/django/conf/locale/uk/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/uk/__init__.pyo
${PYSITELIB}/django/conf/locale/uk/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/uk/formats.pyc
${PYSITELIB}/django/conf/locale/uk/formats.pyo
${PYSITELIB}/django/conf/locale/ur/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/ur/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/vi/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/vi/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/vi/__init__.py
${PYSITELIB}/django/conf/locale/vi/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/vi/__init__.pyo
${PYSITELIB}/django/conf/locale/vi/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/vi/formats.pyc
${PYSITELIB}/django/conf/locale/vi/formats.pyo
${PYSITELIB}/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/zh_Hans/__init__.py
${PYSITELIB}/django/conf/locale/zh_Hans/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/zh_Hans/__init__.pyo
${PYSITELIB}/django/conf/locale/zh_Hans/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/zh_Hans/formats.pyc
${PYSITELIB}/django/conf/locale/zh_Hans/formats.pyo
${PYSITELIB}/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/django/conf/locale/zh_Hant/LC_MESSAGES/django.po
${PYSITELIB}/django/conf/locale/zh_Hant/__init__.py
${PYSITELIB}/django/conf/locale/zh_Hant/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/zh_Hant/__init__.pyo
${PYSITELIB}/django/conf/locale/zh_Hant/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/locale/zh_Hant/formats.pyc
${PYSITELIB}/django/conf/locale/zh_Hant/formats.pyo
${PYSITELIB}/django/conf/project_template/manage.py-tpl
${PYSITELIB}/django/conf/project_template/project_name/__init__.py-tpl
${PYSITELIB}/django/conf/project_template/project_name/settings.py-tpl
${PYSITELIB}/django/conf/project_template/project_name/urls.py-tpl
${PYSITELIB}/django/conf/project_template/project_name/wsgi.py-tpl
${PYSITELIB}/django/conf/urls/__init__.py
${PYSITELIB}/django/conf/urls/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/urls/__init__.pyo
${PYSITELIB}/django/conf/urls/i18n.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/urls/i18n.pyc
${PYSITELIB}/django/conf/urls/i18n.pyo
${PYSITELIB}/django/conf/urls/static.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/conf/urls/static.pyc
${PYSITELIB}/django/conf/urls/static.pyo
${PYSITELIB}/django/contrib/__init__.py
${PYSITELIB}/django/contrib/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/__init__.pyo
${PYSITELIB}/django/contrib/admin/__init__.py
${PYSITELIB}/django/contrib/admin/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/__init__.pyo
${PYSITELIB}/django/contrib/admin/actions.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/actions.pyc
${PYSITELIB}/django/contrib/admin/actions.pyo
${PYSITELIB}/django/contrib/admin/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/apps.pyc
${PYSITELIB}/django/contrib/admin/apps.pyo
${PYSITELIB}/django/contrib/admin/checks.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/checks.pyc
${PYSITELIB}/django/contrib/admin/checks.pyo
${PYSITELIB}/django/contrib/admin/decorators.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/decorators.pyc
${PYSITELIB}/django/contrib/admin/decorators.pyo
${PYSITELIB}/django/contrib/admin/exceptions.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/exceptions.pyc
${PYSITELIB}/django/contrib/admin/exceptions.pyo
${PYSITELIB}/django/contrib/admin/filters.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/filters.pyc
${PYSITELIB}/django/contrib/admin/filters.pyo
${PYSITELIB}/django/contrib/admin/forms.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/forms.pyc
${PYSITELIB}/django/contrib/admin/forms.pyo
${PYSITELIB}/django/contrib/admin/helpers.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/helpers.pyc
${PYSITELIB}/django/contrib/admin/helpers.pyo
${PYSITELIB}/django/contrib/admin/locale/af/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/af/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/af/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/af/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/am/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/am/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ar/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ar/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ast/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ast/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/az/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/az/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/be/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/be/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/be/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/be/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/bg/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/bg/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/bn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/bn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/br/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/br/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/br/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/br/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/bs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/bs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ca/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/cs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/cy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/cy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/da/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/da/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/de/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/de/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/dsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/el/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/el/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/en/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/en_AU/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/en_AU/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/eo/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/eo/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/es/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/es_CO/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/es_CO/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/es_VE/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/es_VE/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/et/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/fa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/fi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/fi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/fr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/fy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/fy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ga/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ga/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/gd/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/gd/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/gl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/gl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/he/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/he/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/hi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/hi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/hr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/hr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/hsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/hu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/contrib/admin/locale/hy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/hy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ia/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ia/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/id/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/id/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/io/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/io/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/io/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/io/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/is/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/is/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/it/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/it/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ja/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ka/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ka/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/kab/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/kab/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/kk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/kk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/km/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/km/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/kn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/kn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ko/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/lb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/lb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/lt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/lv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/mk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/mk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ml/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ml/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/mn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/mr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/mr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/my/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/my/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/my/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/my/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/nb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ne/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ne/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/nl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/nl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/nn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/nn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/os/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/os/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/os/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/os/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/pa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/pl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/pt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/pt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ro/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ru/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/sk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/sk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/sl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/sl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/sq/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/sr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/sv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/sv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/sw/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/sw/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ta/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ta/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/te/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/te/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/th/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/th/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/tt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/tt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/udm/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/udm/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/uk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/ur/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/ur/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/vi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/vi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.mo
${PYSITELIB}/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.po
${PYSITELIB}/django/contrib/admin/migrations/0001_initial.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/migrations/0001_initial.pyc
${PYSITELIB}/django/contrib/admin/migrations/0001_initial.pyo
${PYSITELIB}/django/contrib/admin/migrations/0002_logentry_remove_auto_add.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/migrations/0002_logentry_remove_auto_add.pyc
${PYSITELIB}/django/contrib/admin/migrations/0002_logentry_remove_auto_add.pyo
${PYSITELIB}/django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.py
${PYSITELIB}/django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.pyc
${PYSITELIB}/django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.pyo
${PYSITELIB}/django/contrib/admin/migrations/__init__.py
${PYSITELIB}/django/contrib/admin/migrations/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/migrations/__init__.pyo
${PYSITELIB}/django/contrib/admin/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/models.pyc
${PYSITELIB}/django/contrib/admin/models.pyo
${PYSITELIB}/django/contrib/admin/options.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/options.pyc
${PYSITELIB}/django/contrib/admin/options.pyo
${PYSITELIB}/django/contrib/admin/sites.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/sites.pyc
${PYSITELIB}/django/contrib/admin/sites.pyo
${PYSITELIB}/django/contrib/admin/static/admin/css/autocomplete.css
${PYSITELIB}/django/contrib/admin/static/admin/css/base.css
${PYSITELIB}/django/contrib/admin/static/admin/css/changelists.css
${PYSITELIB}/django/contrib/admin/static/admin/css/dashboard.css
${PYSITELIB}/django/contrib/admin/static/admin/css/fonts.css
${PYSITELIB}/django/contrib/admin/static/admin/css/forms.css
${PYSITELIB}/django/contrib/admin/static/admin/css/login.css
${PYSITELIB}/django/contrib/admin/static/admin/css/responsive.css
${PYSITELIB}/django/contrib/admin/static/admin/css/responsive_rtl.css
${PYSITELIB}/django/contrib/admin/static/admin/css/rtl.css
${PYSITELIB}/django/contrib/admin/static/admin/css/vendor/select2/LICENSE-SELECT2.md
${PYSITELIB}/django/contrib/admin/static/admin/css/vendor/select2/select2.css
${PYSITELIB}/django/contrib/admin/static/admin/css/vendor/select2/select2.min.css
${PYSITELIB}/django/contrib/admin/static/admin/css/widgets.css
${PYSITELIB}/django/contrib/admin/static/admin/fonts/LICENSE.txt
${PYSITELIB}/django/contrib/admin/static/admin/fonts/README.txt
${PYSITELIB}/django/contrib/admin/static/admin/fonts/Roboto-Bold-webfont.woff
${PYSITELIB}/django/contrib/admin/static/admin/fonts/Roboto-Light-webfont.woff
${PYSITELIB}/django/contrib/admin/static/admin/fonts/Roboto-Regular-webfont.woff
${PYSITELIB}/django/contrib/admin/static/admin/img/LICENSE
${PYSITELIB}/django/contrib/admin/static/admin/img/README.txt
${PYSITELIB}/django/contrib/admin/static/admin/img/calendar-icons.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/gis/move_vertex_off.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/gis/move_vertex_on.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/icon-addlink.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/icon-alert.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/icon-calendar.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/icon-changelink.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/icon-clock.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/icon-deletelink.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/icon-no.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/icon-unknown-alt.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/icon-unknown.svg
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/static/admin/img/icon-viewlink.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/icon-yes.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/inline-delete.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/search.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/selector-icons.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/sorting-icons.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/tooltag-add.svg
${PYSITELIB}/django/contrib/admin/static/admin/img/tooltag-arrowright.svg
${PYSITELIB}/django/contrib/admin/static/admin/js/SelectBox.js
${PYSITELIB}/django/contrib/admin/static/admin/js/SelectFilter2.js
${PYSITELIB}/django/contrib/admin/static/admin/js/actions.js
${PYSITELIB}/django/contrib/admin/static/admin/js/actions.min.js
${PYSITELIB}/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js
${PYSITELIB}/django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js
${PYSITELIB}/django/contrib/admin/static/admin/js/autocomplete.js
${PYSITELIB}/django/contrib/admin/static/admin/js/calendar.js
${PYSITELIB}/django/contrib/admin/static/admin/js/cancel.js
${PYSITELIB}/django/contrib/admin/static/admin/js/change_form.js
${PYSITELIB}/django/contrib/admin/static/admin/js/collapse.js
${PYSITELIB}/django/contrib/admin/static/admin/js/collapse.min.js
${PYSITELIB}/django/contrib/admin/static/admin/js/core.js
${PYSITELIB}/django/contrib/admin/static/admin/js/inlines.js
${PYSITELIB}/django/contrib/admin/static/admin/js/inlines.min.js
${PYSITELIB}/django/contrib/admin/static/admin/js/jquery.init.js
${PYSITELIB}/django/contrib/admin/static/admin/js/popup_response.js
${PYSITELIB}/django/contrib/admin/static/admin/js/prepopulate.js
${PYSITELIB}/django/contrib/admin/static/admin/js/prepopulate.min.js
${PYSITELIB}/django/contrib/admin/static/admin/js/prepopulate_init.js
${PYSITELIB}/django/contrib/admin/static/admin/js/timeparse.js
${PYSITELIB}/django/contrib/admin/static/admin/js/urlify.js
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/jquery/jquery.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/ar.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/az.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/bg.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/ca.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/cs.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/da.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/de.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/el.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/en.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/es.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/et.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/eu.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/fa.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/fi.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/fr.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/gl.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/he.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/hi.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/hr.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/hu.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/id.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/is.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/it.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/ja.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/km.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/ko.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/lt.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/lv.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/mk.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/ms.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/nb.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/nl.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/pl.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/pt-BR.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/pt.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/ro.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/ru.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/sk.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/sr-Cyrl.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/sr.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/sv.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/th.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/tr.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/uk.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/vi.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-CN.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-TW.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/select2.full.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/select2/select2.full.min.js
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.js
${PYSITELIB}/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.min.js
${PYSITELIB}/django/contrib/admin/templates/admin/404.html
${PYSITELIB}/django/contrib/admin/templates/admin/500.html
${PYSITELIB}/django/contrib/admin/templates/admin/actions.html
${PYSITELIB}/django/contrib/admin/templates/admin/app_index.html
${PYSITELIB}/django/contrib/admin/templates/admin/auth/user/add_form.html
${PYSITELIB}/django/contrib/admin/templates/admin/auth/user/change_password.html
${PYSITELIB}/django/contrib/admin/templates/admin/base.html
${PYSITELIB}/django/contrib/admin/templates/admin/base_site.html
${PYSITELIB}/django/contrib/admin/templates/admin/change_form.html
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/templates/admin/change_form_object_tools.html
${PYSITELIB}/django/contrib/admin/templates/admin/change_list.html
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/templates/admin/change_list_object_tools.html
${PYSITELIB}/django/contrib/admin/templates/admin/change_list_results.html
${PYSITELIB}/django/contrib/admin/templates/admin/date_hierarchy.html
${PYSITELIB}/django/contrib/admin/templates/admin/delete_confirmation.html
${PYSITELIB}/django/contrib/admin/templates/admin/delete_selected_confirmation.html
${PYSITELIB}/django/contrib/admin/templates/admin/edit_inline/stacked.html
${PYSITELIB}/django/contrib/admin/templates/admin/edit_inline/tabular.html
${PYSITELIB}/django/contrib/admin/templates/admin/filter.html
${PYSITELIB}/django/contrib/admin/templates/admin/includes/fieldset.html
${PYSITELIB}/django/contrib/admin/templates/admin/includes/object_delete_summary.html
${PYSITELIB}/django/contrib/admin/templates/admin/index.html
${PYSITELIB}/django/contrib/admin/templates/admin/invalid_setup.html
${PYSITELIB}/django/contrib/admin/templates/admin/login.html
${PYSITELIB}/django/contrib/admin/templates/admin/object_history.html
${PYSITELIB}/django/contrib/admin/templates/admin/pagination.html
${PYSITELIB}/django/contrib/admin/templates/admin/popup_response.html
${PYSITELIB}/django/contrib/admin/templates/admin/prepopulated_fields_js.html
${PYSITELIB}/django/contrib/admin/templates/admin/search_form.html
${PYSITELIB}/django/contrib/admin/templates/admin/submit_line.html
${PYSITELIB}/django/contrib/admin/templates/admin/widgets/clearable_file_input.html
${PYSITELIB}/django/contrib/admin/templates/admin/widgets/foreign_key_raw_id.html
${PYSITELIB}/django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html
${PYSITELIB}/django/contrib/admin/templates/admin/widgets/radio.html
${PYSITELIB}/django/contrib/admin/templates/admin/widgets/related_widget_wrapper.html
${PYSITELIB}/django/contrib/admin/templates/admin/widgets/split_datetime.html
${PYSITELIB}/django/contrib/admin/templates/admin/widgets/url.html
${PYSITELIB}/django/contrib/admin/templates/registration/logged_out.html
${PYSITELIB}/django/contrib/admin/templates/registration/password_change_done.html
${PYSITELIB}/django/contrib/admin/templates/registration/password_change_form.html
${PYSITELIB}/django/contrib/admin/templates/registration/password_reset_complete.html
${PYSITELIB}/django/contrib/admin/templates/registration/password_reset_confirm.html
${PYSITELIB}/django/contrib/admin/templates/registration/password_reset_done.html
${PYSITELIB}/django/contrib/admin/templates/registration/password_reset_email.html
${PYSITELIB}/django/contrib/admin/templates/registration/password_reset_form.html
${PYSITELIB}/django/contrib/admin/templatetags/__init__.py
${PYSITELIB}/django/contrib/admin/templatetags/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/templatetags/__init__.pyo
${PYSITELIB}/django/contrib/admin/templatetags/admin_list.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/templatetags/admin_list.pyc
${PYSITELIB}/django/contrib/admin/templatetags/admin_list.pyo
${PYSITELIB}/django/contrib/admin/templatetags/admin_modify.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/templatetags/admin_modify.pyc
${PYSITELIB}/django/contrib/admin/templatetags/admin_modify.pyo
${PYSITELIB}/django/contrib/admin/templatetags/admin_static.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/templatetags/admin_static.pyc
${PYSITELIB}/django/contrib/admin/templatetags/admin_static.pyo
${PYSITELIB}/django/contrib/admin/templatetags/admin_urls.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/templatetags/admin_urls.pyc
${PYSITELIB}/django/contrib/admin/templatetags/admin_urls.pyo
${PYSITELIB}/django/contrib/admin/templatetags/base.py
${PYSITELIB}/django/contrib/admin/templatetags/base.pyc
${PYSITELIB}/django/contrib/admin/templatetags/base.pyo
${PYSITELIB}/django/contrib/admin/templatetags/log.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/templatetags/log.pyc
${PYSITELIB}/django/contrib/admin/templatetags/log.pyo
${PYSITELIB}/django/contrib/admin/tests.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/tests.pyc
${PYSITELIB}/django/contrib/admin/tests.pyo
${PYSITELIB}/django/contrib/admin/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/utils.pyc
${PYSITELIB}/django/contrib/admin/utils.pyo
${PYSITELIB}/django/contrib/admin/views/__init__.py
${PYSITELIB}/django/contrib/admin/views/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/views/__init__.pyo
${PYSITELIB}/django/contrib/admin/views/autocomplete.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/views/autocomplete.pyc
${PYSITELIB}/django/contrib/admin/views/autocomplete.pyo
${PYSITELIB}/django/contrib/admin/views/decorators.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/views/decorators.pyc
${PYSITELIB}/django/contrib/admin/views/decorators.pyo
${PYSITELIB}/django/contrib/admin/views/main.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/views/main.pyc
${PYSITELIB}/django/contrib/admin/views/main.pyo
${PYSITELIB}/django/contrib/admin/widgets.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admin/widgets.pyc
${PYSITELIB}/django/contrib/admin/widgets.pyo
${PYSITELIB}/django/contrib/admindocs/__init__.py
${PYSITELIB}/django/contrib/admindocs/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admindocs/__init__.pyo
${PYSITELIB}/django/contrib/admindocs/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admindocs/apps.pyc
${PYSITELIB}/django/contrib/admindocs/apps.pyo
${PYSITELIB}/django/contrib/admindocs/locale/af/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/af/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ast/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ast/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/az/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/be/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/be/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/br/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/br/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/da/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/de/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/el/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/eo/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/eo/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/es/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/fy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/fy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/gd/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/gd/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/he/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ia/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ia/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/id/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/io/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/io/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/is/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/it/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/kab/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/kab/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/kk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/kk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/km/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/lb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/lb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/mr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/mr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/my/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/my/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ne/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ne/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/os/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/os/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/sw/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/sw/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/te/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/th/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/tt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/tt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/udm/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/udm/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/admindocs/middleware.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admindocs/middleware.pyc
${PYSITELIB}/django/contrib/admindocs/middleware.pyo
${PYSITELIB}/django/contrib/admindocs/templates/admin_doc/bookmarklets.html
${PYSITELIB}/django/contrib/admindocs/templates/admin_doc/index.html
${PYSITELIB}/django/contrib/admindocs/templates/admin_doc/missing_docutils.html
${PYSITELIB}/django/contrib/admindocs/templates/admin_doc/model_detail.html
${PYSITELIB}/django/contrib/admindocs/templates/admin_doc/model_index.html
${PYSITELIB}/django/contrib/admindocs/templates/admin_doc/template_detail.html
${PYSITELIB}/django/contrib/admindocs/templates/admin_doc/template_filter_index.html
${PYSITELIB}/django/contrib/admindocs/templates/admin_doc/template_tag_index.html
${PYSITELIB}/django/contrib/admindocs/templates/admin_doc/view_detail.html
${PYSITELIB}/django/contrib/admindocs/templates/admin_doc/view_index.html
${PYSITELIB}/django/contrib/admindocs/urls.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admindocs/urls.pyc
${PYSITELIB}/django/contrib/admindocs/urls.pyo
${PYSITELIB}/django/contrib/admindocs/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admindocs/utils.pyc
${PYSITELIB}/django/contrib/admindocs/utils.pyo
${PYSITELIB}/django/contrib/admindocs/views.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/admindocs/views.pyc
${PYSITELIB}/django/contrib/admindocs/views.pyo
${PYSITELIB}/django/contrib/auth/__init__.py
${PYSITELIB}/django/contrib/auth/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/__init__.pyo
${PYSITELIB}/django/contrib/auth/admin.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/admin.pyc
${PYSITELIB}/django/contrib/auth/admin.pyo
${PYSITELIB}/django/contrib/auth/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/apps.pyc
${PYSITELIB}/django/contrib/auth/apps.pyo
${PYSITELIB}/django/contrib/auth/backends.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/backends.pyc
${PYSITELIB}/django/contrib/auth/backends.pyo
${PYSITELIB}/django/contrib/auth/base_user.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/base_user.pyc
${PYSITELIB}/django/contrib/auth/base_user.pyo
${PYSITELIB}/django/contrib/auth/checks.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/checks.pyc
${PYSITELIB}/django/contrib/auth/checks.pyo
${PYSITELIB}/django/contrib/auth/common-passwords.txt.gz
${PYSITELIB}/django/contrib/auth/context_processors.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/context_processors.pyc
${PYSITELIB}/django/contrib/auth/context_processors.pyo
${PYSITELIB}/django/contrib/auth/decorators.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/decorators.pyc
${PYSITELIB}/django/contrib/auth/decorators.pyo
${PYSITELIB}/django/contrib/auth/forms.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/forms.pyc
${PYSITELIB}/django/contrib/auth/forms.pyo
${PYSITELIB}/django/contrib/auth/handlers/__init__.py
${PYSITELIB}/django/contrib/auth/handlers/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/handlers/__init__.pyo
${PYSITELIB}/django/contrib/auth/handlers/modwsgi.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/handlers/modwsgi.pyc
${PYSITELIB}/django/contrib/auth/handlers/modwsgi.pyo
${PYSITELIB}/django/contrib/auth/hashers.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/hashers.pyc
${PYSITELIB}/django/contrib/auth/hashers.pyo
${PYSITELIB}/django/contrib/auth/locale/af/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/af/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ar/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ar/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ast/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ast/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/az/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/az/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/be/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/be/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/bg/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/bg/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/bn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/bn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/br/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/br/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/bs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/bs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ca/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ca/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/cs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/cs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/cy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/cy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/da/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/da/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/de/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/de/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/dsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/dsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/el/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/el/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/en/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/en_AU/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/en_AU/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/en_GB/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/en_GB/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/eo/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/eo/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/es/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/es_AR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/es_AR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/es_CO/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/es_CO/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/es_VE/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/es_VE/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/et/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/fa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/fa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/fi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/fi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/fr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/fr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/fy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/fy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ga/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ga/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/gd/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/gd/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/gl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/gl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/he/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/he/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/hi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/hi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/hr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/hr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/hsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/hsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/hu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/hu/LC_MESSAGES/django.po
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/contrib/auth/locale/hy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/hy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ia/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ia/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/id/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/id/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/io/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/io/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/is/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/is/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/it/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/it/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ja/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ja/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ka/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ka/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/kab/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/kab/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/kk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/kk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/km/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/km/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/kn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/kn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ko/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ko/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/lb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/lb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/lt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/lt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/lv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/lv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/mk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/mk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ml/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ml/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/mn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/mn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/mr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/mr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/my/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/my/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/nb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/nb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ne/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ne/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/nl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/nl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/nn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/nn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/os/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/os/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/pa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/pa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/pl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/pl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/pt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/pt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ro/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ro/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ru/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ru/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/sk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/sk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/sl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/sl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/sq/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/sq/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/sr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/sr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/sv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/sv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/sw/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/sw/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ta/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ta/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/te/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/te/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/th/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/th/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/tr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/tt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/tt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/udm/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/udm/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/uk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/ur/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/ur/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/vi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/vi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/auth/management/__init__.py
${PYSITELIB}/django/contrib/auth/management/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/management/__init__.pyo
${PYSITELIB}/django/contrib/auth/management/commands/changepassword.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/management/commands/changepassword.pyc
${PYSITELIB}/django/contrib/auth/management/commands/changepassword.pyo
${PYSITELIB}/django/contrib/auth/management/commands/createsuperuser.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/management/commands/createsuperuser.pyc
${PYSITELIB}/django/contrib/auth/management/commands/createsuperuser.pyo
${PYSITELIB}/django/contrib/auth/middleware.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/middleware.pyc
${PYSITELIB}/django/contrib/auth/middleware.pyo
${PYSITELIB}/django/contrib/auth/migrations/0001_initial.py
${PYSITELIB}/django/contrib/auth/migrations/0001_initial.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/migrations/0001_initial.pyo
${PYSITELIB}/django/contrib/auth/migrations/0002_alter_permission_name_max_length.py
${PYSITELIB}/django/contrib/auth/migrations/0002_alter_permission_name_max_length.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/migrations/0002_alter_permission_name_max_length.pyo
${PYSITELIB}/django/contrib/auth/migrations/0003_alter_user_email_max_length.py
${PYSITELIB}/django/contrib/auth/migrations/0003_alter_user_email_max_length.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/migrations/0003_alter_user_email_max_length.pyo
${PYSITELIB}/django/contrib/auth/migrations/0004_alter_user_username_opts.py
${PYSITELIB}/django/contrib/auth/migrations/0004_alter_user_username_opts.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/migrations/0004_alter_user_username_opts.pyo
${PYSITELIB}/django/contrib/auth/migrations/0005_alter_user_last_login_null.py
${PYSITELIB}/django/contrib/auth/migrations/0005_alter_user_last_login_null.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/migrations/0005_alter_user_last_login_null.pyo
${PYSITELIB}/django/contrib/auth/migrations/0006_require_contenttypes_0002.py
${PYSITELIB}/django/contrib/auth/migrations/0006_require_contenttypes_0002.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/migrations/0006_require_contenttypes_0002.pyo
${PYSITELIB}/django/contrib/auth/migrations/0007_alter_validators_add_error_messages.py
${PYSITELIB}/django/contrib/auth/migrations/0007_alter_validators_add_error_messages.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/migrations/0007_alter_validators_add_error_messages.pyo
${PYSITELIB}/django/contrib/auth/migrations/0008_alter_user_username_max_length.py
${PYSITELIB}/django/contrib/auth/migrations/0008_alter_user_username_max_length.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/migrations/0008_alter_user_username_max_length.pyo
${PYSITELIB}/django/contrib/auth/migrations/0009_alter_user_last_name_max_length.py
${PYSITELIB}/django/contrib/auth/migrations/0009_alter_user_last_name_max_length.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/migrations/0009_alter_user_last_name_max_length.pyo
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/contrib/auth/migrations/0010_alter_group_name_max_length.py
${PYSITELIB}/django/contrib/auth/migrations/0010_alter_group_name_max_length.pyc
${PYSITELIB}/django/contrib/auth/migrations/0010_alter_group_name_max_length.pyo
${PYSITELIB}/django/contrib/auth/migrations/0011_update_proxy_permissions.py
${PYSITELIB}/django/contrib/auth/migrations/0011_update_proxy_permissions.pyc
${PYSITELIB}/django/contrib/auth/migrations/0011_update_proxy_permissions.pyo
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/migrations/__init__.py
${PYSITELIB}/django/contrib/auth/migrations/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/migrations/__init__.pyo
${PYSITELIB}/django/contrib/auth/mixins.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/mixins.pyc
${PYSITELIB}/django/contrib/auth/mixins.pyo
${PYSITELIB}/django/contrib/auth/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/models.pyc
${PYSITELIB}/django/contrib/auth/models.pyo
${PYSITELIB}/django/contrib/auth/password_validation.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/password_validation.pyc
${PYSITELIB}/django/contrib/auth/password_validation.pyo
${PYSITELIB}/django/contrib/auth/signals.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/signals.pyc
${PYSITELIB}/django/contrib/auth/signals.pyo
${PYSITELIB}/django/contrib/auth/templates/auth/widgets/read_only_password_hash.html
${PYSITELIB}/django/contrib/auth/templates/registration/password_reset_subject.txt
${PYSITELIB}/django/contrib/auth/tokens.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/tokens.pyc
${PYSITELIB}/django/contrib/auth/tokens.pyo
${PYSITELIB}/django/contrib/auth/urls.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/urls.pyc
${PYSITELIB}/django/contrib/auth/urls.pyo
${PYSITELIB}/django/contrib/auth/validators.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/validators.pyc
${PYSITELIB}/django/contrib/auth/validators.pyo
${PYSITELIB}/django/contrib/auth/views.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/auth/views.pyc
${PYSITELIB}/django/contrib/auth/views.pyo
${PYSITELIB}/django/contrib/contenttypes/__init__.py
${PYSITELIB}/django/contrib/contenttypes/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/__init__.pyo
${PYSITELIB}/django/contrib/contenttypes/admin.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/admin.pyc
${PYSITELIB}/django/contrib/contenttypes/admin.pyo
${PYSITELIB}/django/contrib/contenttypes/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/apps.pyc
${PYSITELIB}/django/contrib/contenttypes/apps.pyo
${PYSITELIB}/django/contrib/contenttypes/checks.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/checks.pyc
${PYSITELIB}/django/contrib/contenttypes/checks.pyo
${PYSITELIB}/django/contrib/contenttypes/fields.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/fields.pyc
${PYSITELIB}/django/contrib/contenttypes/fields.pyo
${PYSITELIB}/django/contrib/contenttypes/forms.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/forms.pyc
${PYSITELIB}/django/contrib/contenttypes/forms.pyo
${PYSITELIB}/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.po
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/te/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/te/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/th/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/th/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/contenttypes/management/__init__.py
${PYSITELIB}/django/contrib/contenttypes/management/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/management/__init__.pyo
${PYSITELIB}/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.pyc
${PYSITELIB}/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.pyo
${PYSITELIB}/django/contrib/contenttypes/migrations/0001_initial.py
${PYSITELIB}/django/contrib/contenttypes/migrations/0001_initial.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/migrations/0001_initial.pyo
${PYSITELIB}/django/contrib/contenttypes/migrations/0002_remove_content_type_name.py
${PYSITELIB}/django/contrib/contenttypes/migrations/0002_remove_content_type_name.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/migrations/0002_remove_content_type_name.pyo
${PYSITELIB}/django/contrib/contenttypes/migrations/__init__.py
${PYSITELIB}/django/contrib/contenttypes/migrations/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/migrations/__init__.pyo
${PYSITELIB}/django/contrib/contenttypes/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/models.pyc
${PYSITELIB}/django/contrib/contenttypes/models.pyo
${PYSITELIB}/django/contrib/contenttypes/views.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/contenttypes/views.pyc
${PYSITELIB}/django/contrib/contenttypes/views.pyo
${PYSITELIB}/django/contrib/flatpages/__init__.py
${PYSITELIB}/django/contrib/flatpages/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/__init__.pyo
${PYSITELIB}/django/contrib/flatpages/admin.py
${PYSITELIB}/django/contrib/flatpages/admin.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/admin.pyo
${PYSITELIB}/django/contrib/flatpages/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/apps.pyc
${PYSITELIB}/django/contrib/flatpages/apps.pyo
${PYSITELIB}/django/contrib/flatpages/forms.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/forms.pyc
${PYSITELIB}/django/contrib/flatpages/forms.pyo
${PYSITELIB}/django/contrib/flatpages/locale/af/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/af/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ar/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ar/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ast/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ast/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/az/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/az/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/be/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/be/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/bg/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/bg/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/bn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/bn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/br/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/br/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/bs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/bs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ca/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ca/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/cs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/cs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/cy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/cy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/da/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/da/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/de/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/de/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/el/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/el/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/en/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/eo/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/eo/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/es/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/et/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/fa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/fa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/fi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/fi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/fr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/fr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/fy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/fy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ga/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ga/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/gd/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/gd/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/gl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/gl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/he/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/he/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/hi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/hi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/hr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/hr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/hu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/hu/LC_MESSAGES/django.po
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/contrib/flatpages/locale/hy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/hy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ia/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ia/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/id/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/id/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/io/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/io/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/is/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/is/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/it/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/it/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ja/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ja/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ka/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ka/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/kk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/kk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/km/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/km/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/kn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/kn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ko/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ko/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/lb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/lb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/lt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/lt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/lv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/lv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/mk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/mk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ml/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ml/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/mn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/mn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/mr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/mr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/my/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/my/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/nb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/nb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ne/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ne/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/nl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/nl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/nn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/nn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/os/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/os/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/pa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/pa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/pl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/pl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/pt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/pt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ro/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ro/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ru/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ru/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/sk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/sk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/sl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/sl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/sq/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/sq/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/sv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/sv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/sw/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/sw/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ta/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ta/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/te/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/te/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/th/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/th/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/tr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/tt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/tt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/udm/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/udm/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/uk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/ur/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/ur/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/vi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/vi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/flatpages/middleware.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/middleware.pyc
${PYSITELIB}/django/contrib/flatpages/middleware.pyo
${PYSITELIB}/django/contrib/flatpages/migrations/0001_initial.py
${PYSITELIB}/django/contrib/flatpages/migrations/0001_initial.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/migrations/0001_initial.pyo
${PYSITELIB}/django/contrib/flatpages/migrations/__init__.py
${PYSITELIB}/django/contrib/flatpages/migrations/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/migrations/__init__.pyo
${PYSITELIB}/django/contrib/flatpages/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/models.pyc
${PYSITELIB}/django/contrib/flatpages/models.pyo
${PYSITELIB}/django/contrib/flatpages/sitemaps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/sitemaps.pyc
${PYSITELIB}/django/contrib/flatpages/sitemaps.pyo
${PYSITELIB}/django/contrib/flatpages/templatetags/__init__.py
${PYSITELIB}/django/contrib/flatpages/templatetags/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/templatetags/__init__.pyo
${PYSITELIB}/django/contrib/flatpages/templatetags/flatpages.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/templatetags/flatpages.pyc
${PYSITELIB}/django/contrib/flatpages/templatetags/flatpages.pyo
${PYSITELIB}/django/contrib/flatpages/urls.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/urls.pyc
${PYSITELIB}/django/contrib/flatpages/urls.pyo
${PYSITELIB}/django/contrib/flatpages/views.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/flatpages/views.pyc
${PYSITELIB}/django/contrib/flatpages/views.pyo
${PYSITELIB}/django/contrib/gis/__init__.py
${PYSITELIB}/django/contrib/gis/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/__init__.pyo
${PYSITELIB}/django/contrib/gis/admin/__init__.py
${PYSITELIB}/django/contrib/gis/admin/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/admin/__init__.pyo
${PYSITELIB}/django/contrib/gis/admin/options.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/admin/options.pyc
${PYSITELIB}/django/contrib/gis/admin/options.pyo
${PYSITELIB}/django/contrib/gis/admin/widgets.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/admin/widgets.pyc
${PYSITELIB}/django/contrib/gis/admin/widgets.pyo
${PYSITELIB}/django/contrib/gis/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/apps.pyc
${PYSITELIB}/django/contrib/gis/apps.pyo
${PYSITELIB}/django/contrib/gis/db/__init__.py
${PYSITELIB}/django/contrib/gis/db/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/__init__.pyo
${PYSITELIB}/django/contrib/gis/db/backends/__init__.py
${PYSITELIB}/django/contrib/gis/db/backends/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/__init__.pyo
${PYSITELIB}/django/contrib/gis/db/backends/base/__init__.py
${PYSITELIB}/django/contrib/gis/db/backends/base/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/base/__init__.pyo
${PYSITELIB}/django/contrib/gis/db/backends/base/adapter.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/base/adapter.pyc
${PYSITELIB}/django/contrib/gis/db/backends/base/adapter.pyo
${PYSITELIB}/django/contrib/gis/db/backends/base/features.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/base/features.pyc
${PYSITELIB}/django/contrib/gis/db/backends/base/features.pyo
${PYSITELIB}/django/contrib/gis/db/backends/base/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/base/models.pyc
${PYSITELIB}/django/contrib/gis/db/backends/base/models.pyo
${PYSITELIB}/django/contrib/gis/db/backends/base/operations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/base/operations.pyc
${PYSITELIB}/django/contrib/gis/db/backends/base/operations.pyo
${PYSITELIB}/django/contrib/gis/db/backends/mysql/__init__.py
${PYSITELIB}/django/contrib/gis/db/backends/mysql/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/mysql/__init__.pyo
${PYSITELIB}/django/contrib/gis/db/backends/mysql/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/mysql/base.pyc
${PYSITELIB}/django/contrib/gis/db/backends/mysql/base.pyo
${PYSITELIB}/django/contrib/gis/db/backends/mysql/features.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/mysql/features.pyc
${PYSITELIB}/django/contrib/gis/db/backends/mysql/features.pyo
${PYSITELIB}/django/contrib/gis/db/backends/mysql/introspection.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/mysql/introspection.pyc
${PYSITELIB}/django/contrib/gis/db/backends/mysql/introspection.pyo
${PYSITELIB}/django/contrib/gis/db/backends/mysql/operations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/mysql/operations.pyc
${PYSITELIB}/django/contrib/gis/db/backends/mysql/operations.pyo
${PYSITELIB}/django/contrib/gis/db/backends/mysql/schema.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/mysql/schema.pyc
${PYSITELIB}/django/contrib/gis/db/backends/mysql/schema.pyo
${PYSITELIB}/django/contrib/gis/db/backends/oracle/__init__.py
${PYSITELIB}/django/contrib/gis/db/backends/oracle/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/oracle/__init__.pyo
${PYSITELIB}/django/contrib/gis/db/backends/oracle/adapter.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/oracle/adapter.pyc
${PYSITELIB}/django/contrib/gis/db/backends/oracle/adapter.pyo
${PYSITELIB}/django/contrib/gis/db/backends/oracle/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/oracle/base.pyc
${PYSITELIB}/django/contrib/gis/db/backends/oracle/base.pyo
${PYSITELIB}/django/contrib/gis/db/backends/oracle/features.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/oracle/features.pyc
${PYSITELIB}/django/contrib/gis/db/backends/oracle/features.pyo
${PYSITELIB}/django/contrib/gis/db/backends/oracle/introspection.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/oracle/introspection.pyc
${PYSITELIB}/django/contrib/gis/db/backends/oracle/introspection.pyo
${PYSITELIB}/django/contrib/gis/db/backends/oracle/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/oracle/models.pyc
${PYSITELIB}/django/contrib/gis/db/backends/oracle/models.pyo
${PYSITELIB}/django/contrib/gis/db/backends/oracle/operations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/oracle/operations.pyc
${PYSITELIB}/django/contrib/gis/db/backends/oracle/operations.pyo
${PYSITELIB}/django/contrib/gis/db/backends/oracle/schema.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/oracle/schema.pyc
${PYSITELIB}/django/contrib/gis/db/backends/oracle/schema.pyo
${PYSITELIB}/django/contrib/gis/db/backends/postgis/__init__.py
${PYSITELIB}/django/contrib/gis/db/backends/postgis/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/postgis/__init__.pyo
${PYSITELIB}/django/contrib/gis/db/backends/postgis/adapter.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/postgis/adapter.pyc
${PYSITELIB}/django/contrib/gis/db/backends/postgis/adapter.pyo
${PYSITELIB}/django/contrib/gis/db/backends/postgis/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/postgis/base.pyc
${PYSITELIB}/django/contrib/gis/db/backends/postgis/base.pyo
${PYSITELIB}/django/contrib/gis/db/backends/postgis/const.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/postgis/const.pyc
${PYSITELIB}/django/contrib/gis/db/backends/postgis/const.pyo
${PYSITELIB}/django/contrib/gis/db/backends/postgis/features.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/postgis/features.pyc
${PYSITELIB}/django/contrib/gis/db/backends/postgis/features.pyo
${PYSITELIB}/django/contrib/gis/db/backends/postgis/introspection.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/postgis/introspection.pyc
${PYSITELIB}/django/contrib/gis/db/backends/postgis/introspection.pyo
${PYSITELIB}/django/contrib/gis/db/backends/postgis/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/postgis/models.pyc
${PYSITELIB}/django/contrib/gis/db/backends/postgis/models.pyo
${PYSITELIB}/django/contrib/gis/db/backends/postgis/operations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/postgis/operations.pyc
${PYSITELIB}/django/contrib/gis/db/backends/postgis/operations.pyo
${PYSITELIB}/django/contrib/gis/db/backends/postgis/pgraster.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/postgis/pgraster.pyc
${PYSITELIB}/django/contrib/gis/db/backends/postgis/pgraster.pyo
${PYSITELIB}/django/contrib/gis/db/backends/postgis/schema.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/postgis/schema.pyc
${PYSITELIB}/django/contrib/gis/db/backends/postgis/schema.pyo
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/__init__.py
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/__init__.pyo
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/adapter.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/adapter.pyc
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/adapter.pyo
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/base.pyc
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/base.pyo
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/client.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/client.pyc
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/client.pyo
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/features.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/features.pyc
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/features.pyo
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/introspection.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/introspection.pyc
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/introspection.pyo
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/models.pyc
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/models.pyo
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/operations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/operations.pyc
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/operations.pyo
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/schema.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/schema.pyc
${PYSITELIB}/django/contrib/gis/db/backends/spatialite/schema.pyo
${PYSITELIB}/django/contrib/gis/db/backends/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/backends/utils.pyc
${PYSITELIB}/django/contrib/gis/db/backends/utils.pyo
${PYSITELIB}/django/contrib/gis/db/models/__init__.py
${PYSITELIB}/django/contrib/gis/db/models/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/models/__init__.pyo
${PYSITELIB}/django/contrib/gis/db/models/aggregates.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/models/aggregates.pyc
${PYSITELIB}/django/contrib/gis/db/models/aggregates.pyo
${PYSITELIB}/django/contrib/gis/db/models/fields.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/models/fields.pyc
${PYSITELIB}/django/contrib/gis/db/models/fields.pyo
${PYSITELIB}/django/contrib/gis/db/models/functions.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/models/functions.pyc
${PYSITELIB}/django/contrib/gis/db/models/functions.pyo
${PYSITELIB}/django/contrib/gis/db/models/lookups.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/models/lookups.pyc
${PYSITELIB}/django/contrib/gis/db/models/lookups.pyo
${PYSITELIB}/django/contrib/gis/db/models/proxy.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/models/proxy.pyc
${PYSITELIB}/django/contrib/gis/db/models/proxy.pyo
${PYSITELIB}/django/contrib/gis/db/models/sql/__init__.py
${PYSITELIB}/django/contrib/gis/db/models/sql/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/models/sql/__init__.pyo
${PYSITELIB}/django/contrib/gis/db/models/sql/conversion.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/db/models/sql/conversion.pyc
${PYSITELIB}/django/contrib/gis/db/models/sql/conversion.pyo
${PYSITELIB}/django/contrib/gis/feeds.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/feeds.pyc
${PYSITELIB}/django/contrib/gis/feeds.pyo
${PYSITELIB}/django/contrib/gis/forms/__init__.py
${PYSITELIB}/django/contrib/gis/forms/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/forms/__init__.pyo
${PYSITELIB}/django/contrib/gis/forms/fields.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/forms/fields.pyc
${PYSITELIB}/django/contrib/gis/forms/fields.pyo
${PYSITELIB}/django/contrib/gis/forms/widgets.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/forms/widgets.pyc
${PYSITELIB}/django/contrib/gis/forms/widgets.pyo
${PYSITELIB}/django/contrib/gis/gdal/LICENSE
${PYSITELIB}/django/contrib/gis/gdal/__init__.py
${PYSITELIB}/django/contrib/gis/gdal/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/__init__.pyo
${PYSITELIB}/django/contrib/gis/gdal/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/base.pyc
${PYSITELIB}/django/contrib/gis/gdal/base.pyo
${PYSITELIB}/django/contrib/gis/gdal/datasource.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/datasource.pyc
${PYSITELIB}/django/contrib/gis/gdal/datasource.pyo
${PYSITELIB}/django/contrib/gis/gdal/driver.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/driver.pyc
${PYSITELIB}/django/contrib/gis/gdal/driver.pyo
${PYSITELIB}/django/contrib/gis/gdal/envelope.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/envelope.pyc
${PYSITELIB}/django/contrib/gis/gdal/envelope.pyo
${PYSITELIB}/django/contrib/gis/gdal/error.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/error.pyc
${PYSITELIB}/django/contrib/gis/gdal/error.pyo
${PYSITELIB}/django/contrib/gis/gdal/feature.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/feature.pyc
${PYSITELIB}/django/contrib/gis/gdal/feature.pyo
${PYSITELIB}/django/contrib/gis/gdal/field.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/field.pyc
${PYSITELIB}/django/contrib/gis/gdal/field.pyo
${PYSITELIB}/django/contrib/gis/gdal/geometries.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/geometries.pyc
${PYSITELIB}/django/contrib/gis/gdal/geometries.pyo
${PYSITELIB}/django/contrib/gis/gdal/geomtype.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/geomtype.pyc
${PYSITELIB}/django/contrib/gis/gdal/geomtype.pyo
${PYSITELIB}/django/contrib/gis/gdal/layer.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/layer.pyc
${PYSITELIB}/django/contrib/gis/gdal/layer.pyo
${PYSITELIB}/django/contrib/gis/gdal/libgdal.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/libgdal.pyc
${PYSITELIB}/django/contrib/gis/gdal/libgdal.pyo
${PYSITELIB}/django/contrib/gis/gdal/prototypes/__init__.py
${PYSITELIB}/django/contrib/gis/gdal/prototypes/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/prototypes/__init__.pyo
${PYSITELIB}/django/contrib/gis/gdal/prototypes/ds.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/prototypes/ds.pyc
${PYSITELIB}/django/contrib/gis/gdal/prototypes/ds.pyo
${PYSITELIB}/django/contrib/gis/gdal/prototypes/errcheck.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/prototypes/errcheck.pyc
${PYSITELIB}/django/contrib/gis/gdal/prototypes/errcheck.pyo
${PYSITELIB}/django/contrib/gis/gdal/prototypes/generation.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/prototypes/generation.pyc
${PYSITELIB}/django/contrib/gis/gdal/prototypes/generation.pyo
${PYSITELIB}/django/contrib/gis/gdal/prototypes/geom.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/prototypes/geom.pyc
${PYSITELIB}/django/contrib/gis/gdal/prototypes/geom.pyo
${PYSITELIB}/django/contrib/gis/gdal/prototypes/raster.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/prototypes/raster.pyc
${PYSITELIB}/django/contrib/gis/gdal/prototypes/raster.pyo
${PYSITELIB}/django/contrib/gis/gdal/prototypes/srs.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/prototypes/srs.pyc
${PYSITELIB}/django/contrib/gis/gdal/prototypes/srs.pyo
${PYSITELIB}/django/contrib/gis/gdal/raster/__init__.py
${PYSITELIB}/django/contrib/gis/gdal/raster/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/raster/__init__.pyo
${PYSITELIB}/django/contrib/gis/gdal/raster/band.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/raster/band.pyc
${PYSITELIB}/django/contrib/gis/gdal/raster/band.pyo
${PYSITELIB}/django/contrib/gis/gdal/raster/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/raster/base.pyc
${PYSITELIB}/django/contrib/gis/gdal/raster/base.pyo
${PYSITELIB}/django/contrib/gis/gdal/raster/const.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/raster/const.pyc
${PYSITELIB}/django/contrib/gis/gdal/raster/const.pyo
${PYSITELIB}/django/contrib/gis/gdal/raster/source.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/raster/source.pyc
${PYSITELIB}/django/contrib/gis/gdal/raster/source.pyo
${PYSITELIB}/django/contrib/gis/gdal/srs.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/gdal/srs.pyc
${PYSITELIB}/django/contrib/gis/gdal/srs.pyo
${PYSITELIB}/django/contrib/gis/geoip2/__init__.py
${PYSITELIB}/django/contrib/gis/geoip2/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geoip2/__init__.pyo
${PYSITELIB}/django/contrib/gis/geoip2/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geoip2/base.pyc
${PYSITELIB}/django/contrib/gis/geoip2/base.pyo
${PYSITELIB}/django/contrib/gis/geoip2/resources.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geoip2/resources.pyc
${PYSITELIB}/django/contrib/gis/geoip2/resources.pyo
${PYSITELIB}/django/contrib/gis/geometry.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geometry.pyc
${PYSITELIB}/django/contrib/gis/geometry.pyo
${PYSITELIB}/django/contrib/gis/geos/LICENSE
${PYSITELIB}/django/contrib/gis/geos/__init__.py
${PYSITELIB}/django/contrib/gis/geos/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/__init__.pyo
${PYSITELIB}/django/contrib/gis/geos/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/base.pyc
${PYSITELIB}/django/contrib/gis/geos/base.pyo
${PYSITELIB}/django/contrib/gis/geos/collections.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/collections.pyc
${PYSITELIB}/django/contrib/gis/geos/collections.pyo
${PYSITELIB}/django/contrib/gis/geos/coordseq.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/coordseq.pyc
${PYSITELIB}/django/contrib/gis/geos/coordseq.pyo
${PYSITELIB}/django/contrib/gis/geos/error.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/error.pyc
${PYSITELIB}/django/contrib/gis/geos/error.pyo
${PYSITELIB}/django/contrib/gis/geos/factory.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/factory.pyc
${PYSITELIB}/django/contrib/gis/geos/factory.pyo
${PYSITELIB}/django/contrib/gis/geos/geometry.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/geometry.pyc
${PYSITELIB}/django/contrib/gis/geos/geometry.pyo
${PYSITELIB}/django/contrib/gis/geos/io.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/io.pyc
${PYSITELIB}/django/contrib/gis/geos/io.pyo
${PYSITELIB}/django/contrib/gis/geos/libgeos.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/libgeos.pyc
${PYSITELIB}/django/contrib/gis/geos/libgeos.pyo
${PYSITELIB}/django/contrib/gis/geos/linestring.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/linestring.pyc
${PYSITELIB}/django/contrib/gis/geos/linestring.pyo
${PYSITELIB}/django/contrib/gis/geos/mutable_list.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/mutable_list.pyc
${PYSITELIB}/django/contrib/gis/geos/mutable_list.pyo
${PYSITELIB}/django/contrib/gis/geos/point.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/point.pyc
${PYSITELIB}/django/contrib/gis/geos/point.pyo
${PYSITELIB}/django/contrib/gis/geos/polygon.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/polygon.pyc
${PYSITELIB}/django/contrib/gis/geos/polygon.pyo
${PYSITELIB}/django/contrib/gis/geos/prepared.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/prepared.pyc
${PYSITELIB}/django/contrib/gis/geos/prepared.pyo
${PYSITELIB}/django/contrib/gis/geos/prototypes/__init__.py
${PYSITELIB}/django/contrib/gis/geos/prototypes/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/prototypes/__init__.pyo
${PYSITELIB}/django/contrib/gis/geos/prototypes/coordseq.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/prototypes/coordseq.pyc
${PYSITELIB}/django/contrib/gis/geos/prototypes/coordseq.pyo
${PYSITELIB}/django/contrib/gis/geos/prototypes/errcheck.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/prototypes/errcheck.pyc
${PYSITELIB}/django/contrib/gis/geos/prototypes/errcheck.pyo
${PYSITELIB}/django/contrib/gis/geos/prototypes/geom.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/prototypes/geom.pyc
${PYSITELIB}/django/contrib/gis/geos/prototypes/geom.pyo
${PYSITELIB}/django/contrib/gis/geos/prototypes/io.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/prototypes/io.pyc
${PYSITELIB}/django/contrib/gis/geos/prototypes/io.pyo
${PYSITELIB}/django/contrib/gis/geos/prototypes/misc.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/prototypes/misc.pyc
${PYSITELIB}/django/contrib/gis/geos/prototypes/misc.pyo
${PYSITELIB}/django/contrib/gis/geos/prototypes/predicates.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/prototypes/predicates.pyc
${PYSITELIB}/django/contrib/gis/geos/prototypes/predicates.pyo
${PYSITELIB}/django/contrib/gis/geos/prototypes/prepared.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/prototypes/prepared.pyc
${PYSITELIB}/django/contrib/gis/geos/prototypes/prepared.pyo
${PYSITELIB}/django/contrib/gis/geos/prototypes/threadsafe.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/prototypes/threadsafe.pyc
${PYSITELIB}/django/contrib/gis/geos/prototypes/threadsafe.pyo
${PYSITELIB}/django/contrib/gis/geos/prototypes/topology.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/geos/prototypes/topology.pyc
${PYSITELIB}/django/contrib/gis/geos/prototypes/topology.pyo
${PYSITELIB}/django/contrib/gis/locale/af/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/af/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ar/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ar/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ast/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ast/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/az/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/az/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/be/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/be/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/bg/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/bg/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/bn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/bn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/br/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/br/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/bs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/bs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ca/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ca/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/cs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/cs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/cy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/cy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/da/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/da/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/de/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/de/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/dsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/dsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/el/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/el/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/en/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/eo/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/eo/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/es/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/et/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/fa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/fa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/fi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/fi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/fr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/fr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/fy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/fy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ga/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ga/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/gd/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/gd/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/gl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/gl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/he/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/he/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/hi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/hi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/hr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/hr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/hsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/hsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/hu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/hu/LC_MESSAGES/django.po
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/contrib/gis/locale/hy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/hy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ia/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ia/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/id/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/id/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/io/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/io/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/is/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/is/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/it/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/it/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ja/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ja/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ka/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ka/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/kk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/kk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/km/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/km/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/kn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/kn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ko/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ko/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/lb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/lb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/lt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/lt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/lv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/lv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/mk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/mk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ml/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ml/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/mn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/mn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/mr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/mr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/my/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/my/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/nb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/nb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ne/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ne/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/nl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/nl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/nn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/nn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/os/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/os/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/pa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/pa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/pl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/pl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/pt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/pt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ro/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ro/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ru/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ru/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/sk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/sk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/sl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/sl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/sq/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/sq/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/sr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/sr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/sv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/sv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/sw/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/sw/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ta/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ta/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/te/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/te/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/th/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/th/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/tr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/tt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/tt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/udm/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/udm/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/uk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/ur/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/ur/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/vi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/vi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/gis/management/commands/inspectdb.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/management/commands/inspectdb.pyc
${PYSITELIB}/django/contrib/gis/management/commands/inspectdb.pyo
${PYSITELIB}/django/contrib/gis/management/commands/ogrinspect.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/management/commands/ogrinspect.pyc
${PYSITELIB}/django/contrib/gis/management/commands/ogrinspect.pyo
${PYSITELIB}/django/contrib/gis/measure.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/measure.pyc
${PYSITELIB}/django/contrib/gis/measure.pyo
${PYSITELIB}/django/contrib/gis/ptr.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/ptr.pyc
${PYSITELIB}/django/contrib/gis/ptr.pyo
${PYSITELIB}/django/contrib/gis/serializers/__init__.py
${PYSITELIB}/django/contrib/gis/serializers/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/serializers/__init__.pyo
${PYSITELIB}/django/contrib/gis/serializers/geojson.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/serializers/geojson.pyc
${PYSITELIB}/django/contrib/gis/serializers/geojson.pyo
${PYSITELIB}/django/contrib/gis/shortcuts.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/shortcuts.pyc
${PYSITELIB}/django/contrib/gis/shortcuts.pyo
${PYSITELIB}/django/contrib/gis/sitemaps/__init__.py
${PYSITELIB}/django/contrib/gis/sitemaps/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/sitemaps/__init__.pyo
${PYSITELIB}/django/contrib/gis/sitemaps/kml.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/sitemaps/kml.pyc
${PYSITELIB}/django/contrib/gis/sitemaps/kml.pyo
${PYSITELIB}/django/contrib/gis/sitemaps/views.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/sitemaps/views.pyc
${PYSITELIB}/django/contrib/gis/sitemaps/views.pyo
${PYSITELIB}/django/contrib/gis/static/gis/css/ol3.css
${PYSITELIB}/django/contrib/gis/static/gis/img/draw_line_off.svg
${PYSITELIB}/django/contrib/gis/static/gis/img/draw_line_on.svg
${PYSITELIB}/django/contrib/gis/static/gis/img/draw_point_off.svg
${PYSITELIB}/django/contrib/gis/static/gis/img/draw_point_on.svg
${PYSITELIB}/django/contrib/gis/static/gis/img/draw_polygon_off.svg
${PYSITELIB}/django/contrib/gis/static/gis/img/draw_polygon_on.svg
${PYSITELIB}/django/contrib/gis/static/gis/js/OLMapWidget.js
${PYSITELIB}/django/contrib/gis/templates/gis/admin/openlayers.html
${PYSITELIB}/django/contrib/gis/templates/gis/admin/openlayers.js
${PYSITELIB}/django/contrib/gis/templates/gis/admin/osm.html
${PYSITELIB}/django/contrib/gis/templates/gis/admin/osm.js
${PYSITELIB}/django/contrib/gis/templates/gis/kml/base.kml
${PYSITELIB}/django/contrib/gis/templates/gis/kml/placemarks.kml
${PYSITELIB}/django/contrib/gis/templates/gis/openlayers-osm.html
${PYSITELIB}/django/contrib/gis/templates/gis/openlayers.html
${PYSITELIB}/django/contrib/gis/utils/__init__.py
${PYSITELIB}/django/contrib/gis/utils/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/utils/__init__.pyo
${PYSITELIB}/django/contrib/gis/utils/layermapping.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/utils/layermapping.pyc
${PYSITELIB}/django/contrib/gis/utils/layermapping.pyo
${PYSITELIB}/django/contrib/gis/utils/ogrinfo.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/utils/ogrinfo.pyc
${PYSITELIB}/django/contrib/gis/utils/ogrinfo.pyo
${PYSITELIB}/django/contrib/gis/utils/ogrinspect.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/utils/ogrinspect.pyc
${PYSITELIB}/django/contrib/gis/utils/ogrinspect.pyo
${PYSITELIB}/django/contrib/gis/utils/srs.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/utils/srs.pyc
${PYSITELIB}/django/contrib/gis/utils/srs.pyo
${PYSITELIB}/django/contrib/gis/views.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/gis/views.pyc
${PYSITELIB}/django/contrib/gis/views.pyo
${PYSITELIB}/django/contrib/humanize/__init__.py
${PYSITELIB}/django/contrib/humanize/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/humanize/__init__.pyo
${PYSITELIB}/django/contrib/humanize/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/humanize/apps.pyc
${PYSITELIB}/django/contrib/humanize/apps.pyo
${PYSITELIB}/django/contrib/humanize/locale/af/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/af/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ar/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ar/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ast/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ast/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/az/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/az/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/be/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/be/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/bg/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/bg/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/bn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/bn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/br/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/br/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/bs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/bs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ca/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ca/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/cs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/cs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/cy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/cy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/da/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/da/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/de/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/de/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/el/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/el/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/en/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/eo/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/eo/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/es/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/et/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/fa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/fa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/fi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/fi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/fr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/fr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/fy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/fy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ga/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ga/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/gd/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/gd/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/gl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/gl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/he/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/he/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/hi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/hi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/hr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/hr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/hu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/hu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/hy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/hy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ia/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ia/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/id/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/id/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/io/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/io/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/is/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/is/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/it/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/it/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ja/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ja/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ka/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ka/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/kk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/kk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/km/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/km/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/kn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/kn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ko/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ko/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/lb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/lb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/lt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/lt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/lv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/lv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/mk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/mk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ml/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ml/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/mn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/mn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/mr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/mr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ms/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ms/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/my/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/my/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/nb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/nb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ne/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ne/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/nl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/nl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/nn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/nn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/os/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/os/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/pa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/pa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/pl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/pl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/pt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/pt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ro/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ro/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ru/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ru/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/sk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/sk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/sl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/sl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/sq/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/sq/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/sr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/sr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/sv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/sv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/sw/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/sw/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ta/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ta/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/te/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/te/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/th/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/th/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/tr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/tt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/tt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/udm/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/udm/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/uk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/ur/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/ur/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/vi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/vi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/humanize/templatetags/__init__.py
${PYSITELIB}/django/contrib/humanize/templatetags/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/humanize/templatetags/__init__.pyo
${PYSITELIB}/django/contrib/humanize/templatetags/humanize.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/humanize/templatetags/humanize.pyc
${PYSITELIB}/django/contrib/humanize/templatetags/humanize.pyo
${PYSITELIB}/django/contrib/messages/__init__.py
${PYSITELIB}/django/contrib/messages/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/__init__.pyo
${PYSITELIB}/django/contrib/messages/api.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/api.pyc
${PYSITELIB}/django/contrib/messages/api.pyo
${PYSITELIB}/django/contrib/messages/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/apps.pyc
${PYSITELIB}/django/contrib/messages/apps.pyo
${PYSITELIB}/django/contrib/messages/constants.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/constants.pyc
${PYSITELIB}/django/contrib/messages/constants.pyo
${PYSITELIB}/django/contrib/messages/context_processors.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/context_processors.pyc
${PYSITELIB}/django/contrib/messages/context_processors.pyo
${PYSITELIB}/django/contrib/messages/middleware.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/middleware.pyc
${PYSITELIB}/django/contrib/messages/middleware.pyo
${PYSITELIB}/django/contrib/messages/storage/__init__.py
${PYSITELIB}/django/contrib/messages/storage/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/storage/__init__.pyo
${PYSITELIB}/django/contrib/messages/storage/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/storage/base.pyc
${PYSITELIB}/django/contrib/messages/storage/base.pyo
${PYSITELIB}/django/contrib/messages/storage/cookie.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/storage/cookie.pyc
${PYSITELIB}/django/contrib/messages/storage/cookie.pyo
${PYSITELIB}/django/contrib/messages/storage/fallback.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/storage/fallback.pyc
${PYSITELIB}/django/contrib/messages/storage/fallback.pyo
${PYSITELIB}/django/contrib/messages/storage/session.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/storage/session.pyc
${PYSITELIB}/django/contrib/messages/storage/session.pyo
${PYSITELIB}/django/contrib/messages/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/utils.pyc
${PYSITELIB}/django/contrib/messages/utils.pyo
${PYSITELIB}/django/contrib/messages/views.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/messages/views.pyc
${PYSITELIB}/django/contrib/messages/views.pyo
${PYSITELIB}/django/contrib/postgres/__init__.py
${PYSITELIB}/django/contrib/postgres/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/__init__.pyo
${PYSITELIB}/django/contrib/postgres/aggregates/__init__.py
${PYSITELIB}/django/contrib/postgres/aggregates/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/aggregates/__init__.pyo
${PYSITELIB}/django/contrib/postgres/aggregates/general.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/aggregates/general.pyc
${PYSITELIB}/django/contrib/postgres/aggregates/general.pyo
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/contrib/postgres/aggregates/mixins.py
${PYSITELIB}/django/contrib/postgres/aggregates/mixins.pyc
${PYSITELIB}/django/contrib/postgres/aggregates/mixins.pyo
${PYSITELIB}/django/contrib/postgres/aggregates/statistics.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/aggregates/statistics.pyc
${PYSITELIB}/django/contrib/postgres/aggregates/statistics.pyo
${PYSITELIB}/django/contrib/postgres/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/apps.pyc
${PYSITELIB}/django/contrib/postgres/apps.pyo
${PYSITELIB}/django/contrib/postgres/fields/__init__.py
${PYSITELIB}/django/contrib/postgres/fields/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/fields/__init__.pyo
${PYSITELIB}/django/contrib/postgres/fields/array.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/fields/array.pyc
${PYSITELIB}/django/contrib/postgres/fields/array.pyo
${PYSITELIB}/django/contrib/postgres/fields/citext.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/fields/citext.pyc
${PYSITELIB}/django/contrib/postgres/fields/citext.pyo
${PYSITELIB}/django/contrib/postgres/fields/hstore.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/fields/hstore.pyc
${PYSITELIB}/django/contrib/postgres/fields/hstore.pyo
${PYSITELIB}/django/contrib/postgres/fields/jsonb.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/fields/jsonb.pyc
${PYSITELIB}/django/contrib/postgres/fields/jsonb.pyo
${PYSITELIB}/django/contrib/postgres/fields/mixins.py
${PYSITELIB}/django/contrib/postgres/fields/mixins.pyc
${PYSITELIB}/django/contrib/postgres/fields/mixins.pyo
${PYSITELIB}/django/contrib/postgres/fields/ranges.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/fields/ranges.pyc
${PYSITELIB}/django/contrib/postgres/fields/ranges.pyo
${PYSITELIB}/django/contrib/postgres/fields/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/fields/utils.pyc
${PYSITELIB}/django/contrib/postgres/fields/utils.pyo
${PYSITELIB}/django/contrib/postgres/forms/__init__.py
${PYSITELIB}/django/contrib/postgres/forms/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/forms/__init__.pyo
${PYSITELIB}/django/contrib/postgres/forms/array.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/forms/array.pyc
${PYSITELIB}/django/contrib/postgres/forms/array.pyo
${PYSITELIB}/django/contrib/postgres/forms/hstore.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/forms/hstore.pyc
${PYSITELIB}/django/contrib/postgres/forms/hstore.pyo
${PYSITELIB}/django/contrib/postgres/forms/jsonb.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/forms/jsonb.pyc
${PYSITELIB}/django/contrib/postgres/forms/jsonb.pyo
${PYSITELIB}/django/contrib/postgres/forms/ranges.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/forms/ranges.pyc
${PYSITELIB}/django/contrib/postgres/forms/ranges.pyo
${PYSITELIB}/django/contrib/postgres/functions.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/functions.pyc
${PYSITELIB}/django/contrib/postgres/functions.pyo
${PYSITELIB}/django/contrib/postgres/indexes.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/indexes.pyc
${PYSITELIB}/django/contrib/postgres/indexes.pyo
${PYSITELIB}/django/contrib/postgres/jinja2/postgres/widgets/split_array.html
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/contrib/postgres/locale/af/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/af/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/ar/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/ar/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/az/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/az/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/be/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/be/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/bg/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/bg/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/ca/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/ca/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/cs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/cs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/da/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/da/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/de/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/de/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/el/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/el/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/en/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/eo/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/eo/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/es/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/et/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/fa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/fa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/fi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/fi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/fr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/fr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/gd/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/gd/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/gl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/gl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/he/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/he/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/hr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/hr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/hu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/hu/LC_MESSAGES/django.po
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/contrib/postgres/locale/hy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/hy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/ia/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/ia/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/id/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/id/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/is/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/is/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/it/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/it/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/ja/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/ja/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/ka/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/ka/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/kk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/kk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/ko/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/ko/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/lt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/lt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/lv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/lv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/mk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/mk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/mn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/mn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/nb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/nb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/ne/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/ne/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/nl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/nl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/pl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/pl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/pt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/pt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/ro/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/ro/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/ru/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/ru/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/sk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/sk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/sl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/sl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/sq/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/sq/LC_MESSAGES/django.po
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/locale/sr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/sr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/sv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/sv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/tr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/uk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/postgres/lookups.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/lookups.pyc
${PYSITELIB}/django/contrib/postgres/lookups.pyo
${PYSITELIB}/django/contrib/postgres/operations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/operations.pyc
${PYSITELIB}/django/contrib/postgres/operations.pyo
${PYSITELIB}/django/contrib/postgres/search.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/search.pyc
${PYSITELIB}/django/contrib/postgres/search.pyo
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/contrib/postgres/serializers.py
${PYSITELIB}/django/contrib/postgres/serializers.pyc
${PYSITELIB}/django/contrib/postgres/serializers.pyo
${PYSITELIB}/django/contrib/postgres/signals.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/signals.pyc
${PYSITELIB}/django/contrib/postgres/signals.pyo
${PYSITELIB}/django/contrib/postgres/templates/postgres/widgets/split_array.html
${PYSITELIB}/django/contrib/postgres/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/utils.pyc
${PYSITELIB}/django/contrib/postgres/utils.pyo
${PYSITELIB}/django/contrib/postgres/validators.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/postgres/validators.pyc
${PYSITELIB}/django/contrib/postgres/validators.pyo
${PYSITELIB}/django/contrib/redirects/__init__.py
${PYSITELIB}/django/contrib/redirects/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/redirects/__init__.pyo
${PYSITELIB}/django/contrib/redirects/admin.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/redirects/admin.pyc
${PYSITELIB}/django/contrib/redirects/admin.pyo
${PYSITELIB}/django/contrib/redirects/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/redirects/apps.pyc
${PYSITELIB}/django/contrib/redirects/apps.pyo
${PYSITELIB}/django/contrib/redirects/locale/af/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/af/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ar/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ar/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ast/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ast/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/az/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/az/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/be/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/be/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/bg/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/bg/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/bn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/bn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/br/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/br/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/bs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/bs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ca/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ca/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/cs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/cs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/cy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/cy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/da/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/da/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/de/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/de/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/dsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/dsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/el/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/el/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/en/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/eo/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/eo/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/es/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/et/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/fa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/fa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/fi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/fi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/fr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/fr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/fy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/fy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ga/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ga/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/gd/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/gd/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/gl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/gl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/he/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/he/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/hi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/hi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/hr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/hr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/hsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/hsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/hu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/hu/LC_MESSAGES/django.po
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/contrib/redirects/locale/hy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/hy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ia/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ia/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/id/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/id/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/io/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/io/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/is/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/is/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/it/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/it/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ja/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ja/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ka/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ka/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/kab/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/kab/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/kk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/kk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/km/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/km/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/kn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/kn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ko/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ko/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/lb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/lb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/lt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/lt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/lv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/lv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/mk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/mk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ml/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ml/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/mn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/mn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/mr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/mr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/my/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/my/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/nb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/nb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ne/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ne/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/nl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/nl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/nn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/nn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/os/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/os/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/pa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/pa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/pl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/pl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/pt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/pt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ro/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ro/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ru/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ru/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/sk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/sk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/sl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/sl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/sq/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/sq/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/sr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/sr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/sv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/sv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/sw/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/sw/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ta/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ta/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/te/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/te/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/th/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/th/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/tr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/tt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/tt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/udm/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/udm/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/uk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/ur/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/ur/LC_MESSAGES/django.po
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/uz/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/vi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/vi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/redirects/middleware.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/redirects/middleware.pyc
${PYSITELIB}/django/contrib/redirects/middleware.pyo
${PYSITELIB}/django/contrib/redirects/migrations/0001_initial.py
${PYSITELIB}/django/contrib/redirects/migrations/0001_initial.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/redirects/migrations/0001_initial.pyo
${PYSITELIB}/django/contrib/redirects/migrations/__init__.py
${PYSITELIB}/django/contrib/redirects/migrations/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/redirects/migrations/__init__.pyo
${PYSITELIB}/django/contrib/redirects/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/redirects/models.pyc
${PYSITELIB}/django/contrib/redirects/models.pyo
${PYSITELIB}/django/contrib/sessions/__init__.py
${PYSITELIB}/django/contrib/sessions/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/__init__.pyo
${PYSITELIB}/django/contrib/sessions/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/apps.pyc
${PYSITELIB}/django/contrib/sessions/apps.pyo
${PYSITELIB}/django/contrib/sessions/backends/__init__.py
${PYSITELIB}/django/contrib/sessions/backends/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/backends/__init__.pyo
${PYSITELIB}/django/contrib/sessions/backends/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/backends/base.pyc
${PYSITELIB}/django/contrib/sessions/backends/base.pyo
${PYSITELIB}/django/contrib/sessions/backends/cache.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/backends/cache.pyc
${PYSITELIB}/django/contrib/sessions/backends/cache.pyo
${PYSITELIB}/django/contrib/sessions/backends/cached_db.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/backends/cached_db.pyc
${PYSITELIB}/django/contrib/sessions/backends/cached_db.pyo
${PYSITELIB}/django/contrib/sessions/backends/db.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/backends/db.pyc
${PYSITELIB}/django/contrib/sessions/backends/db.pyo
${PYSITELIB}/django/contrib/sessions/backends/file.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/backends/file.pyc
${PYSITELIB}/django/contrib/sessions/backends/file.pyo
${PYSITELIB}/django/contrib/sessions/backends/signed_cookies.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/backends/signed_cookies.pyc
${PYSITELIB}/django/contrib/sessions/backends/signed_cookies.pyo
${PYSITELIB}/django/contrib/sessions/base_session.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/base_session.pyc
${PYSITELIB}/django/contrib/sessions/base_session.pyo
${PYSITELIB}/django/contrib/sessions/exceptions.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/exceptions.pyc
${PYSITELIB}/django/contrib/sessions/exceptions.pyo
${PYSITELIB}/django/contrib/sessions/locale/af/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/af/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ar/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ar/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ast/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ast/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/az/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/az/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/be/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/be/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/bg/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/bg/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/bn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/bn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/br/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/br/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/bs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/bs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ca/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ca/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/cs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/cs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/cy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/cy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/da/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/da/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/de/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/de/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/dsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/dsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/el/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/el/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/en/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/eo/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/eo/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/es/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/et/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/fa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/fa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/fi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/fi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/fr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/fr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/fy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/fy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ga/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ga/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/gd/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/gd/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/gl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/gl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/he/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/he/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/hi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/hi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/hr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/hr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/hsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/hsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/hu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/hu/LC_MESSAGES/django.po
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/contrib/sessions/locale/hy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/hy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ia/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ia/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/id/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/id/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/io/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/io/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/is/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/is/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/it/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/it/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ja/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ja/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ka/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ka/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/kab/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/kab/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/kk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/kk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/km/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/km/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/kn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/kn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ko/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ko/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/lb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/lb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/lt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/lt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/lv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/lv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/mk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/mk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ml/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ml/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/mn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/mn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/mr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/mr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/my/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/my/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/nb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/nb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ne/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ne/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/nl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/nl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/nn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/nn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/os/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/os/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/pa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/pa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/pl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/pl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/pt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/pt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ro/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ro/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ru/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ru/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/sk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/sk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/sl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/sl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/sq/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/sq/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/sr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/sr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/sv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/sv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/sw/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/sw/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ta/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ta/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/te/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/te/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/th/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/th/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/tr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/tt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/tt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/udm/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/udm/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/uk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/ur/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/ur/LC_MESSAGES/django.po
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/locale/uz/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/uz/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/vi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/vi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sessions/management/commands/clearsessions.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/management/commands/clearsessions.pyc
${PYSITELIB}/django/contrib/sessions/management/commands/clearsessions.pyo
${PYSITELIB}/django/contrib/sessions/middleware.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/middleware.pyc
${PYSITELIB}/django/contrib/sessions/middleware.pyo
${PYSITELIB}/django/contrib/sessions/migrations/0001_initial.py
${PYSITELIB}/django/contrib/sessions/migrations/0001_initial.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/migrations/0001_initial.pyo
${PYSITELIB}/django/contrib/sessions/migrations/__init__.py
${PYSITELIB}/django/contrib/sessions/migrations/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/migrations/__init__.pyo
${PYSITELIB}/django/contrib/sessions/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/models.pyc
${PYSITELIB}/django/contrib/sessions/models.pyo
${PYSITELIB}/django/contrib/sessions/serializers.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sessions/serializers.pyc
${PYSITELIB}/django/contrib/sessions/serializers.pyo
${PYSITELIB}/django/contrib/sitemaps/__init__.py
${PYSITELIB}/django/contrib/sitemaps/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sitemaps/__init__.pyo
${PYSITELIB}/django/contrib/sitemaps/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sitemaps/apps.pyc
${PYSITELIB}/django/contrib/sitemaps/apps.pyo
${PYSITELIB}/django/contrib/sitemaps/management/commands/ping_google.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sitemaps/management/commands/ping_google.pyc
${PYSITELIB}/django/contrib/sitemaps/management/commands/ping_google.pyo
${PYSITELIB}/django/contrib/sitemaps/templates/sitemap.xml
${PYSITELIB}/django/contrib/sitemaps/templates/sitemap_index.xml
${PYSITELIB}/django/contrib/sitemaps/views.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sitemaps/views.pyc
${PYSITELIB}/django/contrib/sitemaps/views.pyo
${PYSITELIB}/django/contrib/sites/__init__.py
${PYSITELIB}/django/contrib/sites/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/__init__.pyo
${PYSITELIB}/django/contrib/sites/admin.py
${PYSITELIB}/django/contrib/sites/admin.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/admin.pyo
${PYSITELIB}/django/contrib/sites/apps.py
${PYSITELIB}/django/contrib/sites/apps.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/apps.pyo
${PYSITELIB}/django/contrib/sites/locale/af/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/af/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ar/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ar/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ast/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ast/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/az/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/az/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/be/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/be/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/bg/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/bg/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/bn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/bn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/br/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/br/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/bs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/bs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ca/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ca/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/cs/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/cs/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/cy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/cy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/da/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/da/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/de/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/de/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/dsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/dsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/el/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/el/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/en/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/en/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/eo/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/eo/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/es/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/es/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/es_VE/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/es_VE/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/et/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/et/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/eu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/eu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/fa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/fa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/fi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/fi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/fr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/fr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/fy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/fy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ga/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ga/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/gd/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/gd/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/gl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/gl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/he/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/he/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/hi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/hi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/hr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/hr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/hsb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/hsb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/hu/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/hu/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/hy/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/hy/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ia/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ia/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/id/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/id/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/io/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/io/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/is/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/is/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/it/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/it/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ja/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ja/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ka/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ka/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/kab/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/kab/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/kk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/kk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/km/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/km/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/kn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/kn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ko/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ko/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/lb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/lb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/lt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/lt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/lv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/lv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/mk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/mk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ml/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ml/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/mn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/mn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/mr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/mr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/my/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/my/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/nb/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/nb/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ne/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ne/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/nl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/nl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/nn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/nn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/os/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/os/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/pa/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/pa/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/pl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/pl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/pt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/pt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ro/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ro/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ru/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ru/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/sk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/sk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/sl/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/sl/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/sq/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/sq/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/sr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/sr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/sv/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/sv/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/sw/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/sw/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ta/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ta/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/te/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/te/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/th/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/th/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/tr/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/tr/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/tt/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/tt/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/udm/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/udm/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/uk/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/uk/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/ur/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/ur/LC_MESSAGES/django.po
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/locale/uz/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/uz/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/vi/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/vi/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.mo
${PYSITELIB}/django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.po
${PYSITELIB}/django/contrib/sites/management.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/management.pyc
${PYSITELIB}/django/contrib/sites/management.pyo
${PYSITELIB}/django/contrib/sites/managers.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/managers.pyc
${PYSITELIB}/django/contrib/sites/managers.pyo
${PYSITELIB}/django/contrib/sites/middleware.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/middleware.pyc
${PYSITELIB}/django/contrib/sites/middleware.pyo
${PYSITELIB}/django/contrib/sites/migrations/0001_initial.py
${PYSITELIB}/django/contrib/sites/migrations/0001_initial.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/migrations/0001_initial.pyo
${PYSITELIB}/django/contrib/sites/migrations/0002_alter_domain_unique.py
${PYSITELIB}/django/contrib/sites/migrations/0002_alter_domain_unique.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/migrations/0002_alter_domain_unique.pyo
${PYSITELIB}/django/contrib/sites/migrations/__init__.py
${PYSITELIB}/django/contrib/sites/migrations/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/migrations/__init__.pyo
${PYSITELIB}/django/contrib/sites/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/models.pyc
${PYSITELIB}/django/contrib/sites/models.pyo
${PYSITELIB}/django/contrib/sites/requests.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/requests.pyc
${PYSITELIB}/django/contrib/sites/requests.pyo
${PYSITELIB}/django/contrib/sites/shortcuts.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/sites/shortcuts.pyc
${PYSITELIB}/django/contrib/sites/shortcuts.pyo
${PYSITELIB}/django/contrib/staticfiles/__init__.py
${PYSITELIB}/django/contrib/staticfiles/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/__init__.pyo
${PYSITELIB}/django/contrib/staticfiles/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/apps.pyc
${PYSITELIB}/django/contrib/staticfiles/apps.pyo
${PYSITELIB}/django/contrib/staticfiles/checks.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/checks.pyc
${PYSITELIB}/django/contrib/staticfiles/checks.pyo
${PYSITELIB}/django/contrib/staticfiles/finders.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/finders.pyc
${PYSITELIB}/django/contrib/staticfiles/finders.pyo
${PYSITELIB}/django/contrib/staticfiles/handlers.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/handlers.pyc
${PYSITELIB}/django/contrib/staticfiles/handlers.pyo
${PYSITELIB}/django/contrib/staticfiles/management/commands/collectstatic.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/management/commands/collectstatic.pyc
${PYSITELIB}/django/contrib/staticfiles/management/commands/collectstatic.pyo
${PYSITELIB}/django/contrib/staticfiles/management/commands/findstatic.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/management/commands/findstatic.pyc
${PYSITELIB}/django/contrib/staticfiles/management/commands/findstatic.pyo
${PYSITELIB}/django/contrib/staticfiles/management/commands/runserver.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/management/commands/runserver.pyc
${PYSITELIB}/django/contrib/staticfiles/management/commands/runserver.pyo
${PYSITELIB}/django/contrib/staticfiles/storage.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/storage.pyc
${PYSITELIB}/django/contrib/staticfiles/storage.pyo
${PYSITELIB}/django/contrib/staticfiles/templatetags/__init__.py
${PYSITELIB}/django/contrib/staticfiles/templatetags/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/templatetags/__init__.pyo
${PYSITELIB}/django/contrib/staticfiles/templatetags/staticfiles.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/templatetags/staticfiles.pyc
${PYSITELIB}/django/contrib/staticfiles/templatetags/staticfiles.pyo
${PYSITELIB}/django/contrib/staticfiles/testing.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/testing.pyc
${PYSITELIB}/django/contrib/staticfiles/testing.pyo
${PYSITELIB}/django/contrib/staticfiles/urls.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/urls.pyc
${PYSITELIB}/django/contrib/staticfiles/urls.pyo
${PYSITELIB}/django/contrib/staticfiles/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/utils.pyc
${PYSITELIB}/django/contrib/staticfiles/utils.pyo
${PYSITELIB}/django/contrib/staticfiles/views.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/staticfiles/views.pyc
${PYSITELIB}/django/contrib/staticfiles/views.pyo
${PYSITELIB}/django/contrib/syndication/__init__.py
${PYSITELIB}/django/contrib/syndication/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/syndication/__init__.pyo
${PYSITELIB}/django/contrib/syndication/apps.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/syndication/apps.pyc
${PYSITELIB}/django/contrib/syndication/apps.pyo
${PYSITELIB}/django/contrib/syndication/views.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/contrib/syndication/views.pyc
${PYSITELIB}/django/contrib/syndication/views.pyo
${PYSITELIB}/django/core/__init__.py
${PYSITELIB}/django/core/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/__init__.pyo
${PYSITELIB}/django/core/cache/__init__.py
${PYSITELIB}/django/core/cache/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/cache/__init__.pyo
${PYSITELIB}/django/core/cache/backends/__init__.py
${PYSITELIB}/django/core/cache/backends/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/cache/backends/__init__.pyo
${PYSITELIB}/django/core/cache/backends/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/cache/backends/base.pyc
${PYSITELIB}/django/core/cache/backends/base.pyo
${PYSITELIB}/django/core/cache/backends/db.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/cache/backends/db.pyc
${PYSITELIB}/django/core/cache/backends/db.pyo
${PYSITELIB}/django/core/cache/backends/dummy.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/cache/backends/dummy.pyc
${PYSITELIB}/django/core/cache/backends/dummy.pyo
${PYSITELIB}/django/core/cache/backends/filebased.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/cache/backends/filebased.pyc
${PYSITELIB}/django/core/cache/backends/filebased.pyo
${PYSITELIB}/django/core/cache/backends/locmem.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/cache/backends/locmem.pyc
${PYSITELIB}/django/core/cache/backends/locmem.pyo
${PYSITELIB}/django/core/cache/backends/memcached.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/cache/backends/memcached.pyc
${PYSITELIB}/django/core/cache/backends/memcached.pyo
${PYSITELIB}/django/core/cache/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/cache/utils.pyc
${PYSITELIB}/django/core/cache/utils.pyo
${PYSITELIB}/django/core/checks/__init__.py
${PYSITELIB}/django/core/checks/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/__init__.pyo
${PYSITELIB}/django/core/checks/caches.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/caches.pyc
${PYSITELIB}/django/core/checks/caches.pyo
${PYSITELIB}/django/core/checks/compatibility/__init__.py
${PYSITELIB}/django/core/checks/compatibility/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/compatibility/__init__.pyo
${PYSITELIB}/django/core/checks/database.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/database.pyc
${PYSITELIB}/django/core/checks/database.pyo
${PYSITELIB}/django/core/checks/messages.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/messages.pyc
${PYSITELIB}/django/core/checks/messages.pyo
${PYSITELIB}/django/core/checks/model_checks.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/model_checks.pyc
${PYSITELIB}/django/core/checks/model_checks.pyo
${PYSITELIB}/django/core/checks/registry.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/registry.pyc
${PYSITELIB}/django/core/checks/registry.pyo
${PYSITELIB}/django/core/checks/security/__init__.py
${PYSITELIB}/django/core/checks/security/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/security/__init__.pyo
${PYSITELIB}/django/core/checks/security/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/security/base.pyc
${PYSITELIB}/django/core/checks/security/base.pyo
${PYSITELIB}/django/core/checks/security/csrf.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/security/csrf.pyc
${PYSITELIB}/django/core/checks/security/csrf.pyo
${PYSITELIB}/django/core/checks/security/sessions.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/security/sessions.pyc
${PYSITELIB}/django/core/checks/security/sessions.pyo
${PYSITELIB}/django/core/checks/templates.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/templates.pyc
${PYSITELIB}/django/core/checks/templates.pyo
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/core/checks/translation.py
${PYSITELIB}/django/core/checks/translation.pyc
${PYSITELIB}/django/core/checks/translation.pyo
${PYSITELIB}/django/core/checks/urls.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/checks/urls.pyc
${PYSITELIB}/django/core/checks/urls.pyo
${PYSITELIB}/django/core/exceptions.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/exceptions.pyc
${PYSITELIB}/django/core/exceptions.pyo
${PYSITELIB}/django/core/files/__init__.py
${PYSITELIB}/django/core/files/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/files/__init__.pyo
${PYSITELIB}/django/core/files/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/files/base.pyc
${PYSITELIB}/django/core/files/base.pyo
${PYSITELIB}/django/core/files/images.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/files/images.pyc
${PYSITELIB}/django/core/files/images.pyo
${PYSITELIB}/django/core/files/locks.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/files/locks.pyc
${PYSITELIB}/django/core/files/locks.pyo
${PYSITELIB}/django/core/files/move.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/files/move.pyc
${PYSITELIB}/django/core/files/move.pyo
${PYSITELIB}/django/core/files/storage.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/files/storage.pyc
${PYSITELIB}/django/core/files/storage.pyo
${PYSITELIB}/django/core/files/temp.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/files/temp.pyc
${PYSITELIB}/django/core/files/temp.pyo
${PYSITELIB}/django/core/files/uploadedfile.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/files/uploadedfile.pyc
${PYSITELIB}/django/core/files/uploadedfile.pyo
${PYSITELIB}/django/core/files/uploadhandler.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/files/uploadhandler.pyc
${PYSITELIB}/django/core/files/uploadhandler.pyo
${PYSITELIB}/django/core/files/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/files/utils.pyc
${PYSITELIB}/django/core/files/utils.pyo
${PYSITELIB}/django/core/handlers/__init__.py
${PYSITELIB}/django/core/handlers/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/handlers/__init__.pyo
${PYSITELIB}/django/core/handlers/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/handlers/base.pyc
${PYSITELIB}/django/core/handlers/base.pyo
${PYSITELIB}/django/core/handlers/exception.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/handlers/exception.pyc
${PYSITELIB}/django/core/handlers/exception.pyo
${PYSITELIB}/django/core/handlers/wsgi.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/handlers/wsgi.pyc
${PYSITELIB}/django/core/handlers/wsgi.pyo
${PYSITELIB}/django/core/mail/__init__.py
${PYSITELIB}/django/core/mail/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/mail/__init__.pyo
${PYSITELIB}/django/core/mail/backends/__init__.py
${PYSITELIB}/django/core/mail/backends/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/mail/backends/__init__.pyo
${PYSITELIB}/django/core/mail/backends/base.py
${PYSITELIB}/django/core/mail/backends/base.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/mail/backends/base.pyo
${PYSITELIB}/django/core/mail/backends/console.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/mail/backends/console.pyc
${PYSITELIB}/django/core/mail/backends/console.pyo
${PYSITELIB}/django/core/mail/backends/dummy.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/mail/backends/dummy.pyc
${PYSITELIB}/django/core/mail/backends/dummy.pyo
${PYSITELIB}/django/core/mail/backends/filebased.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/mail/backends/filebased.pyc
${PYSITELIB}/django/core/mail/backends/filebased.pyo
${PYSITELIB}/django/core/mail/backends/locmem.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/mail/backends/locmem.pyc
${PYSITELIB}/django/core/mail/backends/locmem.pyo
${PYSITELIB}/django/core/mail/backends/smtp.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/mail/backends/smtp.pyc
${PYSITELIB}/django/core/mail/backends/smtp.pyo
${PYSITELIB}/django/core/mail/message.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/mail/message.pyc
${PYSITELIB}/django/core/mail/message.pyo
${PYSITELIB}/django/core/mail/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/mail/utils.pyc
${PYSITELIB}/django/core/mail/utils.pyo
${PYSITELIB}/django/core/management/__init__.py
${PYSITELIB}/django/core/management/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/__init__.pyo
${PYSITELIB}/django/core/management/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/base.pyc
${PYSITELIB}/django/core/management/base.pyo
${PYSITELIB}/django/core/management/color.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/color.pyc
${PYSITELIB}/django/core/management/color.pyo
${PYSITELIB}/django/core/management/commands/check.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/check.pyc
${PYSITELIB}/django/core/management/commands/check.pyo
${PYSITELIB}/django/core/management/commands/compilemessages.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/compilemessages.pyc
${PYSITELIB}/django/core/management/commands/compilemessages.pyo
${PYSITELIB}/django/core/management/commands/createcachetable.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/createcachetable.pyc
${PYSITELIB}/django/core/management/commands/createcachetable.pyo
${PYSITELIB}/django/core/management/commands/dbshell.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/dbshell.pyc
${PYSITELIB}/django/core/management/commands/dbshell.pyo
${PYSITELIB}/django/core/management/commands/diffsettings.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/diffsettings.pyc
${PYSITELIB}/django/core/management/commands/diffsettings.pyo
${PYSITELIB}/django/core/management/commands/dumpdata.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/dumpdata.pyc
${PYSITELIB}/django/core/management/commands/dumpdata.pyo
${PYSITELIB}/django/core/management/commands/flush.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/flush.pyc
${PYSITELIB}/django/core/management/commands/flush.pyo
${PYSITELIB}/django/core/management/commands/inspectdb.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/inspectdb.pyc
${PYSITELIB}/django/core/management/commands/inspectdb.pyo
${PYSITELIB}/django/core/management/commands/loaddata.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/loaddata.pyc
${PYSITELIB}/django/core/management/commands/loaddata.pyo
${PYSITELIB}/django/core/management/commands/makemessages.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/makemessages.pyc
${PYSITELIB}/django/core/management/commands/makemessages.pyo
${PYSITELIB}/django/core/management/commands/makemigrations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/makemigrations.pyc
${PYSITELIB}/django/core/management/commands/makemigrations.pyo
${PYSITELIB}/django/core/management/commands/migrate.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/migrate.pyc
${PYSITELIB}/django/core/management/commands/migrate.pyo
${PYSITELIB}/django/core/management/commands/runserver.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/runserver.pyc
${PYSITELIB}/django/core/management/commands/runserver.pyo
${PYSITELIB}/django/core/management/commands/sendtestemail.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/sendtestemail.pyc
${PYSITELIB}/django/core/management/commands/sendtestemail.pyo
${PYSITELIB}/django/core/management/commands/shell.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/shell.pyc
${PYSITELIB}/django/core/management/commands/shell.pyo
${PYSITELIB}/django/core/management/commands/showmigrations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/showmigrations.pyc
${PYSITELIB}/django/core/management/commands/showmigrations.pyo
${PYSITELIB}/django/core/management/commands/sqlflush.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/sqlflush.pyc
${PYSITELIB}/django/core/management/commands/sqlflush.pyo
${PYSITELIB}/django/core/management/commands/sqlmigrate.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/sqlmigrate.pyc
${PYSITELIB}/django/core/management/commands/sqlmigrate.pyo
${PYSITELIB}/django/core/management/commands/sqlsequencereset.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/sqlsequencereset.pyc
${PYSITELIB}/django/core/management/commands/sqlsequencereset.pyo
${PYSITELIB}/django/core/management/commands/squashmigrations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/squashmigrations.pyc
${PYSITELIB}/django/core/management/commands/squashmigrations.pyo
${PYSITELIB}/django/core/management/commands/startapp.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/startapp.pyc
${PYSITELIB}/django/core/management/commands/startapp.pyo
${PYSITELIB}/django/core/management/commands/startproject.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/startproject.pyc
${PYSITELIB}/django/core/management/commands/startproject.pyo
${PYSITELIB}/django/core/management/commands/test.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/test.pyc
${PYSITELIB}/django/core/management/commands/test.pyo
${PYSITELIB}/django/core/management/commands/testserver.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/commands/testserver.pyc
${PYSITELIB}/django/core/management/commands/testserver.pyo
${PYSITELIB}/django/core/management/sql.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/sql.pyc
${PYSITELIB}/django/core/management/sql.pyo
${PYSITELIB}/django/core/management/templates.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/templates.pyc
${PYSITELIB}/django/core/management/templates.pyo
${PYSITELIB}/django/core/management/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/management/utils.pyc
${PYSITELIB}/django/core/management/utils.pyo
${PYSITELIB}/django/core/paginator.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/paginator.pyc
${PYSITELIB}/django/core/paginator.pyo
${PYSITELIB}/django/core/serializers/__init__.py
${PYSITELIB}/django/core/serializers/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/serializers/__init__.pyo
${PYSITELIB}/django/core/serializers/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/serializers/base.pyc
${PYSITELIB}/django/core/serializers/base.pyo
${PYSITELIB}/django/core/serializers/json.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/serializers/json.pyc
${PYSITELIB}/django/core/serializers/json.pyo
${PYSITELIB}/django/core/serializers/python.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/serializers/python.pyc
${PYSITELIB}/django/core/serializers/python.pyo
${PYSITELIB}/django/core/serializers/pyyaml.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/serializers/pyyaml.pyc
${PYSITELIB}/django/core/serializers/pyyaml.pyo
${PYSITELIB}/django/core/serializers/xml_serializer.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/serializers/xml_serializer.pyc
${PYSITELIB}/django/core/serializers/xml_serializer.pyo
${PYSITELIB}/django/core/servers/__init__.py
${PYSITELIB}/django/core/servers/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/servers/__init__.pyo
${PYSITELIB}/django/core/servers/basehttp.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/servers/basehttp.pyc
${PYSITELIB}/django/core/servers/basehttp.pyo
${PYSITELIB}/django/core/signals.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/signals.pyc
${PYSITELIB}/django/core/signals.pyo
${PYSITELIB}/django/core/signing.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/signing.pyc
${PYSITELIB}/django/core/signing.pyo
${PYSITELIB}/django/core/validators.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/validators.pyc
${PYSITELIB}/django/core/validators.pyo
${PYSITELIB}/django/core/wsgi.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/core/wsgi.pyc
${PYSITELIB}/django/core/wsgi.pyo
${PYSITELIB}/django/db/__init__.py
${PYSITELIB}/django/db/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/__init__.pyo
${PYSITELIB}/django/db/backends/__init__.py
${PYSITELIB}/django/db/backends/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/__init__.pyo
${PYSITELIB}/django/db/backends/base/__init__.py
${PYSITELIB}/django/db/backends/base/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/base/__init__.pyo
${PYSITELIB}/django/db/backends/base/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/base/base.pyc
${PYSITELIB}/django/db/backends/base/base.pyo
${PYSITELIB}/django/db/backends/base/client.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/base/client.pyc
${PYSITELIB}/django/db/backends/base/client.pyo
${PYSITELIB}/django/db/backends/base/creation.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/base/creation.pyc
${PYSITELIB}/django/db/backends/base/creation.pyo
${PYSITELIB}/django/db/backends/base/features.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/base/features.pyc
${PYSITELIB}/django/db/backends/base/features.pyo
${PYSITELIB}/django/db/backends/base/introspection.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/base/introspection.pyc
${PYSITELIB}/django/db/backends/base/introspection.pyo
${PYSITELIB}/django/db/backends/base/operations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/base/operations.pyc
${PYSITELIB}/django/db/backends/base/operations.pyo
${PYSITELIB}/django/db/backends/base/schema.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/base/schema.pyc
${PYSITELIB}/django/db/backends/base/schema.pyo
${PYSITELIB}/django/db/backends/base/validation.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/base/validation.pyc
${PYSITELIB}/django/db/backends/base/validation.pyo
${PYSITELIB}/django/db/backends/ddl_references.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/ddl_references.pyc
${PYSITELIB}/django/db/backends/ddl_references.pyo
${PYSITELIB}/django/db/backends/dummy/__init__.py
${PYSITELIB}/django/db/backends/dummy/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/dummy/__init__.pyo
${PYSITELIB}/django/db/backends/dummy/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/dummy/base.pyc
${PYSITELIB}/django/db/backends/dummy/base.pyo
${PYSITELIB}/django/db/backends/dummy/features.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/dummy/features.pyc
${PYSITELIB}/django/db/backends/dummy/features.pyo
${PYSITELIB}/django/db/backends/mysql/__init__.py
${PYSITELIB}/django/db/backends/mysql/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/mysql/__init__.pyo
${PYSITELIB}/django/db/backends/mysql/base.py
${PYSITELIB}/django/db/backends/mysql/base.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/mysql/base.pyo
${PYSITELIB}/django/db/backends/mysql/client.py
${PYSITELIB}/django/db/backends/mysql/client.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/mysql/client.pyo
${PYSITELIB}/django/db/backends/mysql/compiler.py
${PYSITELIB}/django/db/backends/mysql/compiler.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/mysql/compiler.pyo
${PYSITELIB}/django/db/backends/mysql/creation.py
${PYSITELIB}/django/db/backends/mysql/creation.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/mysql/creation.pyo
${PYSITELIB}/django/db/backends/mysql/features.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/mysql/features.pyc
${PYSITELIB}/django/db/backends/mysql/features.pyo
${PYSITELIB}/django/db/backends/mysql/introspection.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/mysql/introspection.pyc
${PYSITELIB}/django/db/backends/mysql/introspection.pyo
${PYSITELIB}/django/db/backends/mysql/operations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/mysql/operations.pyc
${PYSITELIB}/django/db/backends/mysql/operations.pyo
${PYSITELIB}/django/db/backends/mysql/schema.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/mysql/schema.pyc
${PYSITELIB}/django/db/backends/mysql/schema.pyo
${PYSITELIB}/django/db/backends/mysql/validation.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/mysql/validation.pyc
${PYSITELIB}/django/db/backends/mysql/validation.pyo
${PYSITELIB}/django/db/backends/oracle/__init__.py
${PYSITELIB}/django/db/backends/oracle/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/oracle/__init__.pyo
${PYSITELIB}/django/db/backends/oracle/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/oracle/base.pyc
${PYSITELIB}/django/db/backends/oracle/base.pyo
${PYSITELIB}/django/db/backends/oracle/client.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/oracle/client.pyc
${PYSITELIB}/django/db/backends/oracle/client.pyo
${PYSITELIB}/django/db/backends/oracle/compiler.py
${PYSITELIB}/django/db/backends/oracle/compiler.pyc
${PYSITELIB}/django/db/backends/oracle/compiler.pyo
${PYSITELIB}/django/db/backends/oracle/creation.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/oracle/creation.pyc
${PYSITELIB}/django/db/backends/oracle/creation.pyo
${PYSITELIB}/django/db/backends/oracle/features.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/oracle/features.pyc
${PYSITELIB}/django/db/backends/oracle/features.pyo
${PYSITELIB}/django/db/backends/oracle/functions.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/oracle/functions.pyc
${PYSITELIB}/django/db/backends/oracle/functions.pyo
${PYSITELIB}/django/db/backends/oracle/introspection.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/oracle/introspection.pyc
${PYSITELIB}/django/db/backends/oracle/introspection.pyo
${PYSITELIB}/django/db/backends/oracle/operations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/oracle/operations.pyc
${PYSITELIB}/django/db/backends/oracle/operations.pyo
${PYSITELIB}/django/db/backends/oracle/schema.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/oracle/schema.pyc
${PYSITELIB}/django/db/backends/oracle/schema.pyo
${PYSITELIB}/django/db/backends/oracle/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/oracle/utils.pyc
${PYSITELIB}/django/db/backends/oracle/utils.pyo
${PYSITELIB}/django/db/backends/oracle/validation.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/oracle/validation.pyc
${PYSITELIB}/django/db/backends/oracle/validation.pyo
${PYSITELIB}/django/db/backends/postgresql/__init__.py
${PYSITELIB}/django/db/backends/postgresql/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql/__init__.pyo
${PYSITELIB}/django/db/backends/postgresql/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql/base.pyc
${PYSITELIB}/django/db/backends/postgresql/base.pyo
${PYSITELIB}/django/db/backends/postgresql/client.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql/client.pyc
${PYSITELIB}/django/db/backends/postgresql/client.pyo
${PYSITELIB}/django/db/backends/postgresql/creation.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql/creation.pyc
${PYSITELIB}/django/db/backends/postgresql/creation.pyo
${PYSITELIB}/django/db/backends/postgresql/features.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql/features.pyc
${PYSITELIB}/django/db/backends/postgresql/features.pyo
${PYSITELIB}/django/db/backends/postgresql/introspection.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql/introspection.pyc
${PYSITELIB}/django/db/backends/postgresql/introspection.pyo
${PYSITELIB}/django/db/backends/postgresql/operations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql/operations.pyc
${PYSITELIB}/django/db/backends/postgresql/operations.pyo
${PYSITELIB}/django/db/backends/postgresql/schema.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql/schema.pyc
${PYSITELIB}/django/db/backends/postgresql/schema.pyo
${PYSITELIB}/django/db/backends/postgresql/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql/utils.pyc
${PYSITELIB}/django/db/backends/postgresql/utils.pyo
${PYSITELIB}/django/db/backends/postgresql_psycopg2/__init__.py
${PYSITELIB}/django/db/backends/postgresql_psycopg2/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql_psycopg2/__init__.pyo
${PYSITELIB}/django/db/backends/postgresql_psycopg2/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql_psycopg2/base.pyc
${PYSITELIB}/django/db/backends/postgresql_psycopg2/base.pyo
${PYSITELIB}/django/db/backends/postgresql_psycopg2/client.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql_psycopg2/client.pyc
${PYSITELIB}/django/db/backends/postgresql_psycopg2/client.pyo
${PYSITELIB}/django/db/backends/postgresql_psycopg2/creation.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql_psycopg2/creation.pyc
${PYSITELIB}/django/db/backends/postgresql_psycopg2/creation.pyo
${PYSITELIB}/django/db/backends/postgresql_psycopg2/features.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql_psycopg2/features.pyc
${PYSITELIB}/django/db/backends/postgresql_psycopg2/features.pyo
${PYSITELIB}/django/db/backends/postgresql_psycopg2/introspection.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql_psycopg2/introspection.pyc
${PYSITELIB}/django/db/backends/postgresql_psycopg2/introspection.pyo
${PYSITELIB}/django/db/backends/postgresql_psycopg2/operations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql_psycopg2/operations.pyc
${PYSITELIB}/django/db/backends/postgresql_psycopg2/operations.pyo
${PYSITELIB}/django/db/backends/postgresql_psycopg2/schema.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql_psycopg2/schema.pyc
${PYSITELIB}/django/db/backends/postgresql_psycopg2/schema.pyo
${PYSITELIB}/django/db/backends/postgresql_psycopg2/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/postgresql_psycopg2/utils.pyc
${PYSITELIB}/django/db/backends/postgresql_psycopg2/utils.pyo
${PYSITELIB}/django/db/backends/signals.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/signals.pyc
${PYSITELIB}/django/db/backends/signals.pyo
${PYSITELIB}/django/db/backends/sqlite3/__init__.py
${PYSITELIB}/django/db/backends/sqlite3/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/sqlite3/__init__.pyo
${PYSITELIB}/django/db/backends/sqlite3/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/sqlite3/base.pyc
${PYSITELIB}/django/db/backends/sqlite3/base.pyo
${PYSITELIB}/django/db/backends/sqlite3/client.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/sqlite3/client.pyc
${PYSITELIB}/django/db/backends/sqlite3/client.pyo
${PYSITELIB}/django/db/backends/sqlite3/creation.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/sqlite3/creation.pyc
${PYSITELIB}/django/db/backends/sqlite3/creation.pyo
${PYSITELIB}/django/db/backends/sqlite3/features.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/sqlite3/features.pyc
${PYSITELIB}/django/db/backends/sqlite3/features.pyo
${PYSITELIB}/django/db/backends/sqlite3/introspection.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/sqlite3/introspection.pyc
${PYSITELIB}/django/db/backends/sqlite3/introspection.pyo
${PYSITELIB}/django/db/backends/sqlite3/operations.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/sqlite3/operations.pyc
${PYSITELIB}/django/db/backends/sqlite3/operations.pyo
${PYSITELIB}/django/db/backends/sqlite3/schema.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/sqlite3/schema.pyc
${PYSITELIB}/django/db/backends/sqlite3/schema.pyo
${PYSITELIB}/django/db/backends/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/backends/utils.pyc
${PYSITELIB}/django/db/backends/utils.pyo
${PYSITELIB}/django/db/migrations/__init__.py
${PYSITELIB}/django/db/migrations/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/__init__.pyo
${PYSITELIB}/django/db/migrations/autodetector.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/autodetector.pyc
${PYSITELIB}/django/db/migrations/autodetector.pyo
${PYSITELIB}/django/db/migrations/exceptions.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/exceptions.pyc
${PYSITELIB}/django/db/migrations/exceptions.pyo
${PYSITELIB}/django/db/migrations/executor.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/executor.pyc
${PYSITELIB}/django/db/migrations/executor.pyo
${PYSITELIB}/django/db/migrations/graph.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/graph.pyc
${PYSITELIB}/django/db/migrations/graph.pyo
${PYSITELIB}/django/db/migrations/loader.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/loader.pyc
${PYSITELIB}/django/db/migrations/loader.pyo
${PYSITELIB}/django/db/migrations/migration.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/migration.pyc
${PYSITELIB}/django/db/migrations/migration.pyo
${PYSITELIB}/django/db/migrations/operations/__init__.py
${PYSITELIB}/django/db/migrations/operations/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/operations/__init__.pyo
${PYSITELIB}/django/db/migrations/operations/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/operations/base.pyc
${PYSITELIB}/django/db/migrations/operations/base.pyo
${PYSITELIB}/django/db/migrations/operations/fields.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/operations/fields.pyc
${PYSITELIB}/django/db/migrations/operations/fields.pyo
${PYSITELIB}/django/db/migrations/operations/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/operations/models.pyc
${PYSITELIB}/django/db/migrations/operations/models.pyo
${PYSITELIB}/django/db/migrations/operations/special.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/operations/special.pyc
${PYSITELIB}/django/db/migrations/operations/special.pyo
${PYSITELIB}/django/db/migrations/operations/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/operations/utils.pyc
${PYSITELIB}/django/db/migrations/operations/utils.pyo
${PYSITELIB}/django/db/migrations/optimizer.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/optimizer.pyc
${PYSITELIB}/django/db/migrations/optimizer.pyo
${PYSITELIB}/django/db/migrations/questioner.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/questioner.pyc
${PYSITELIB}/django/db/migrations/questioner.pyo
${PYSITELIB}/django/db/migrations/recorder.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/recorder.pyc
${PYSITELIB}/django/db/migrations/recorder.pyo
${PYSITELIB}/django/db/migrations/serializer.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/serializer.pyc
${PYSITELIB}/django/db/migrations/serializer.pyo
${PYSITELIB}/django/db/migrations/state.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/state.pyc
${PYSITELIB}/django/db/migrations/state.pyo
${PYSITELIB}/django/db/migrations/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/utils.pyc
${PYSITELIB}/django/db/migrations/utils.pyo
${PYSITELIB}/django/db/migrations/writer.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/migrations/writer.pyc
${PYSITELIB}/django/db/migrations/writer.pyo
${PYSITELIB}/django/db/models/__init__.py
${PYSITELIB}/django/db/models/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/__init__.pyo
${PYSITELIB}/django/db/models/aggregates.py
${PYSITELIB}/django/db/models/aggregates.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/aggregates.pyo
${PYSITELIB}/django/db/models/base.py
${PYSITELIB}/django/db/models/base.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/base.pyo
${PYSITELIB}/django/db/models/constants.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/constants.pyc
${PYSITELIB}/django/db/models/constants.pyo
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/db/models/constraints.py
${PYSITELIB}/django/db/models/constraints.pyc
${PYSITELIB}/django/db/models/constraints.pyo
${PYSITELIB}/django/db/models/deletion.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/deletion.pyc
${PYSITELIB}/django/db/models/deletion.pyo
${PYSITELIB}/django/db/models/expressions.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/expressions.pyc
${PYSITELIB}/django/db/models/expressions.pyo
${PYSITELIB}/django/db/models/fields/__init__.py
${PYSITELIB}/django/db/models/fields/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/fields/__init__.pyo
${PYSITELIB}/django/db/models/fields/files.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/fields/files.pyc
${PYSITELIB}/django/db/models/fields/files.pyo
${PYSITELIB}/django/db/models/fields/mixins.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/fields/mixins.pyc
${PYSITELIB}/django/db/models/fields/mixins.pyo
${PYSITELIB}/django/db/models/fields/proxy.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/fields/proxy.pyc
${PYSITELIB}/django/db/models/fields/proxy.pyo
${PYSITELIB}/django/db/models/fields/related.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/fields/related.pyc
${PYSITELIB}/django/db/models/fields/related.pyo
${PYSITELIB}/django/db/models/fields/related_descriptors.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/fields/related_descriptors.pyc
${PYSITELIB}/django/db/models/fields/related_descriptors.pyo
${PYSITELIB}/django/db/models/fields/related_lookups.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/fields/related_lookups.pyc
${PYSITELIB}/django/db/models/fields/related_lookups.pyo
${PYSITELIB}/django/db/models/fields/reverse_related.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/fields/reverse_related.pyc
${PYSITELIB}/django/db/models/fields/reverse_related.pyo
${PYSITELIB}/django/db/models/functions/__init__.py
${PYSITELIB}/django/db/models/functions/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/functions/__init__.pyo
${PYSITELIB}/django/db/models/functions/comparison.py
${PYSITELIB}/django/db/models/functions/comparison.pyc
${PYSITELIB}/django/db/models/functions/comparison.pyo
${PYSITELIB}/django/db/models/functions/datetime.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/functions/datetime.pyc
${PYSITELIB}/django/db/models/functions/datetime.pyo
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/db/models/functions/math.py
${PYSITELIB}/django/db/models/functions/math.pyc
${PYSITELIB}/django/db/models/functions/math.pyo
${PYSITELIB}/django/db/models/functions/mixins.py
${PYSITELIB}/django/db/models/functions/mixins.pyc
${PYSITELIB}/django/db/models/functions/mixins.pyo
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/functions/text.py
${PYSITELIB}/django/db/models/functions/text.pyc
${PYSITELIB}/django/db/models/functions/text.pyo
${PYSITELIB}/django/db/models/functions/window.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/functions/window.pyc
${PYSITELIB}/django/db/models/functions/window.pyo
${PYSITELIB}/django/db/models/indexes.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/indexes.pyc
${PYSITELIB}/django/db/models/indexes.pyo
${PYSITELIB}/django/db/models/lookups.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/lookups.pyc
${PYSITELIB}/django/db/models/lookups.pyo
${PYSITELIB}/django/db/models/manager.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/manager.pyc
${PYSITELIB}/django/db/models/manager.pyo
${PYSITELIB}/django/db/models/options.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/options.pyc
${PYSITELIB}/django/db/models/options.pyo
${PYSITELIB}/django/db/models/query.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/query.pyc
${PYSITELIB}/django/db/models/query.pyo
${PYSITELIB}/django/db/models/query_utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/query_utils.pyc
${PYSITELIB}/django/db/models/query_utils.pyo
${PYSITELIB}/django/db/models/signals.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/signals.pyc
${PYSITELIB}/django/db/models/signals.pyo
${PYSITELIB}/django/db/models/sql/__init__.py
${PYSITELIB}/django/db/models/sql/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/sql/__init__.pyo
${PYSITELIB}/django/db/models/sql/compiler.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/sql/compiler.pyc
${PYSITELIB}/django/db/models/sql/compiler.pyo
${PYSITELIB}/django/db/models/sql/constants.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/sql/constants.pyc
${PYSITELIB}/django/db/models/sql/constants.pyo
${PYSITELIB}/django/db/models/sql/datastructures.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/sql/datastructures.pyc
${PYSITELIB}/django/db/models/sql/datastructures.pyo
${PYSITELIB}/django/db/models/sql/query.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/sql/query.pyc
${PYSITELIB}/django/db/models/sql/query.pyo
${PYSITELIB}/django/db/models/sql/subqueries.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/sql/subqueries.pyc
${PYSITELIB}/django/db/models/sql/subqueries.pyo
${PYSITELIB}/django/db/models/sql/where.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/sql/where.pyc
${PYSITELIB}/django/db/models/sql/where.pyo
${PYSITELIB}/django/db/models/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/models/utils.pyc
${PYSITELIB}/django/db/models/utils.pyo
${PYSITELIB}/django/db/transaction.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/transaction.pyc
${PYSITELIB}/django/db/transaction.pyo
${PYSITELIB}/django/db/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/db/utils.pyc
${PYSITELIB}/django/db/utils.pyo
${PYSITELIB}/django/dispatch/__init__.py
${PYSITELIB}/django/dispatch/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/dispatch/__init__.pyo
${PYSITELIB}/django/dispatch/dispatcher.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/dispatch/dispatcher.pyc
${PYSITELIB}/django/dispatch/dispatcher.pyo
${PYSITELIB}/django/dispatch/license.txt
${PYSITELIB}/django/forms/__init__.py
${PYSITELIB}/django/forms/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/forms/__init__.pyo
${PYSITELIB}/django/forms/boundfield.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/forms/boundfield.pyc
${PYSITELIB}/django/forms/boundfield.pyo
${PYSITELIB}/django/forms/fields.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/forms/fields.pyc
${PYSITELIB}/django/forms/fields.pyo
${PYSITELIB}/django/forms/forms.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/forms/forms.pyc
${PYSITELIB}/django/forms/forms.pyo
${PYSITELIB}/django/forms/formsets.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/forms/formsets.pyc
${PYSITELIB}/django/forms/formsets.pyo
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/attrs.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/checkbox.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/checkbox_option.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/checkbox_select.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/clearable_file_input.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/date.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/datetime.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/email.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/file.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/hidden.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/input.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/input_option.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/multiple_hidden.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/multiple_input.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/multiwidget.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/number.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/password.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/radio.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/radio_option.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/select.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/select_date.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/select_option.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/splitdatetime.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/splithiddendatetime.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/text.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/textarea.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/time.html
${PYSITELIB}/django/forms/jinja2/django/forms/widgets/url.html
${PYSITELIB}/django/forms/models.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/forms/models.pyc
${PYSITELIB}/django/forms/models.pyo
${PYSITELIB}/django/forms/renderers.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/forms/renderers.pyc
${PYSITELIB}/django/forms/renderers.pyo
${PYSITELIB}/django/forms/templates/django/forms/widgets/attrs.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/checkbox.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/checkbox_option.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/checkbox_select.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/clearable_file_input.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/date.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/datetime.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/email.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/file.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/hidden.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/input.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/input_option.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/multiple_hidden.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/multiple_input.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/multiwidget.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/number.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/password.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/radio.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/radio_option.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/select.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/select_date.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/select_option.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/splitdatetime.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/splithiddendatetime.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/text.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/textarea.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/time.html
${PYSITELIB}/django/forms/templates/django/forms/widgets/url.html
${PYSITELIB}/django/forms/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/forms/utils.pyc
${PYSITELIB}/django/forms/utils.pyo
${PYSITELIB}/django/forms/widgets.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/forms/widgets.pyc
${PYSITELIB}/django/forms/widgets.pyo
${PYSITELIB}/django/http/__init__.py
${PYSITELIB}/django/http/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/http/__init__.pyo
${PYSITELIB}/django/http/cookie.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/http/cookie.pyc
${PYSITELIB}/django/http/cookie.pyo
${PYSITELIB}/django/http/multipartparser.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/http/multipartparser.pyc
${PYSITELIB}/django/http/multipartparser.pyo
${PYSITELIB}/django/http/request.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/http/request.pyc
${PYSITELIB}/django/http/request.pyo
${PYSITELIB}/django/http/response.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/http/response.pyc
${PYSITELIB}/django/http/response.pyo
${PYSITELIB}/django/middleware/__init__.py
${PYSITELIB}/django/middleware/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/middleware/__init__.pyo
${PYSITELIB}/django/middleware/cache.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/middleware/cache.pyc
${PYSITELIB}/django/middleware/cache.pyo
${PYSITELIB}/django/middleware/clickjacking.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/middleware/clickjacking.pyc
${PYSITELIB}/django/middleware/clickjacking.pyo
${PYSITELIB}/django/middleware/common.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/middleware/common.pyc
${PYSITELIB}/django/middleware/common.pyo
${PYSITELIB}/django/middleware/csrf.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/middleware/csrf.pyc
${PYSITELIB}/django/middleware/csrf.pyo
${PYSITELIB}/django/middleware/gzip.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/middleware/gzip.pyc
${PYSITELIB}/django/middleware/gzip.pyo
${PYSITELIB}/django/middleware/http.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/middleware/http.pyc
${PYSITELIB}/django/middleware/http.pyo
${PYSITELIB}/django/middleware/locale.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/middleware/locale.pyc
${PYSITELIB}/django/middleware/locale.pyo
${PYSITELIB}/django/middleware/security.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/middleware/security.pyc
${PYSITELIB}/django/middleware/security.pyo
${PYSITELIB}/django/shortcuts.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/shortcuts.pyc
${PYSITELIB}/django/shortcuts.pyo
${PYSITELIB}/django/template/__init__.py
${PYSITELIB}/django/template/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/__init__.pyo
${PYSITELIB}/django/template/backends/__init__.py
${PYSITELIB}/django/template/backends/__init__.pyc
${PYSITELIB}/django/template/backends/__init__.pyo
${PYSITELIB}/django/template/backends/base.py
${PYSITELIB}/django/template/backends/base.pyc
${PYSITELIB}/django/template/backends/base.pyo
${PYSITELIB}/django/template/backends/django.py
${PYSITELIB}/django/template/backends/django.pyc
${PYSITELIB}/django/template/backends/django.pyo
${PYSITELIB}/django/template/backends/dummy.py
${PYSITELIB}/django/template/backends/dummy.pyc
${PYSITELIB}/django/template/backends/dummy.pyo
${PYSITELIB}/django/template/backends/jinja2.py
${PYSITELIB}/django/template/backends/jinja2.pyc
${PYSITELIB}/django/template/backends/jinja2.pyo
${PYSITELIB}/django/template/backends/utils.py
${PYSITELIB}/django/template/backends/utils.pyc
${PYSITELIB}/django/template/backends/utils.pyo
${PYSITELIB}/django/template/base.py
${PYSITELIB}/django/template/base.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/base.pyo
${PYSITELIB}/django/template/context.py
${PYSITELIB}/django/template/context.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/context.pyo
${PYSITELIB}/django/template/context_processors.py
${PYSITELIB}/django/template/context_processors.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/context_processors.pyo
${PYSITELIB}/django/template/defaultfilters.py
${PYSITELIB}/django/template/defaultfilters.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/defaultfilters.pyo
${PYSITELIB}/django/template/defaulttags.py
${PYSITELIB}/django/template/defaulttags.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/defaulttags.pyo
${PYSITELIB}/django/template/engine.py
${PYSITELIB}/django/template/engine.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/engine.pyo
${PYSITELIB}/django/template/exceptions.py
${PYSITELIB}/django/template/exceptions.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/exceptions.pyo
${PYSITELIB}/django/template/library.py
${PYSITELIB}/django/template/library.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/library.pyo
${PYSITELIB}/django/template/loader.py
${PYSITELIB}/django/template/loader.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/loader.pyo
${PYSITELIB}/django/template/loader_tags.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/loader_tags.pyc
${PYSITELIB}/django/template/loader_tags.pyo
${PYSITELIB}/django/template/loaders/__init__.py
${PYSITELIB}/django/template/loaders/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/loaders/__init__.pyo
${PYSITELIB}/django/template/loaders/app_directories.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/loaders/app_directories.pyc
${PYSITELIB}/django/template/loaders/app_directories.pyo
${PYSITELIB}/django/template/loaders/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/loaders/base.pyc
${PYSITELIB}/django/template/loaders/base.pyo
${PYSITELIB}/django/template/loaders/cached.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/loaders/cached.pyc
${PYSITELIB}/django/template/loaders/cached.pyo
${PYSITELIB}/django/template/loaders/filesystem.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/loaders/filesystem.pyc
${PYSITELIB}/django/template/loaders/filesystem.pyo
${PYSITELIB}/django/template/loaders/locmem.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/loaders/locmem.pyc
${PYSITELIB}/django/template/loaders/locmem.pyo
${PYSITELIB}/django/template/response.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/response.pyc
${PYSITELIB}/django/template/response.pyo
${PYSITELIB}/django/template/smartif.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/smartif.pyc
${PYSITELIB}/django/template/smartif.pyo
${PYSITELIB}/django/template/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/template/utils.pyc
${PYSITELIB}/django/template/utils.pyo
${PYSITELIB}/django/templatetags/__init__.py
${PYSITELIB}/django/templatetags/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/templatetags/__init__.pyo
${PYSITELIB}/django/templatetags/cache.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/templatetags/cache.pyc
${PYSITELIB}/django/templatetags/cache.pyo
${PYSITELIB}/django/templatetags/i18n.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/templatetags/i18n.pyc
${PYSITELIB}/django/templatetags/i18n.pyo
${PYSITELIB}/django/templatetags/l10n.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/templatetags/l10n.pyc
${PYSITELIB}/django/templatetags/l10n.pyo
${PYSITELIB}/django/templatetags/static.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/templatetags/static.pyc
${PYSITELIB}/django/templatetags/static.pyo
${PYSITELIB}/django/templatetags/tz.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/templatetags/tz.pyc
${PYSITELIB}/django/templatetags/tz.pyo
${PYSITELIB}/django/test/__init__.py
${PYSITELIB}/django/test/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/test/__init__.pyo
${PYSITELIB}/django/test/client.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/test/client.pyc
${PYSITELIB}/django/test/client.pyo
${PYSITELIB}/django/test/html.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/test/html.pyc
${PYSITELIB}/django/test/html.pyo
${PYSITELIB}/django/test/runner.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/test/runner.pyc
${PYSITELIB}/django/test/runner.pyo
${PYSITELIB}/django/test/selenium.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/test/selenium.pyc
${PYSITELIB}/django/test/selenium.pyo
${PYSITELIB}/django/test/signals.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/test/signals.pyc
${PYSITELIB}/django/test/signals.pyo
${PYSITELIB}/django/test/testcases.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/test/testcases.pyc
${PYSITELIB}/django/test/testcases.pyo
${PYSITELIB}/django/test/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/test/utils.pyc
${PYSITELIB}/django/test/utils.pyo
${PYSITELIB}/django/urls/__init__.py
${PYSITELIB}/django/urls/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/urls/__init__.pyo
${PYSITELIB}/django/urls/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/urls/base.pyc
${PYSITELIB}/django/urls/base.pyo
${PYSITELIB}/django/urls/conf.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/urls/conf.pyc
${PYSITELIB}/django/urls/conf.pyo
${PYSITELIB}/django/urls/converters.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/urls/converters.pyc
${PYSITELIB}/django/urls/converters.pyo
${PYSITELIB}/django/urls/exceptions.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/urls/exceptions.pyc
${PYSITELIB}/django/urls/exceptions.pyo
${PYSITELIB}/django/urls/resolvers.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/urls/resolvers.pyc
${PYSITELIB}/django/urls/resolvers.pyo
${PYSITELIB}/django/urls/utils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/urls/utils.pyc
${PYSITELIB}/django/urls/utils.pyo
${PYSITELIB}/django/utils/__init__.py
${PYSITELIB}/django/utils/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/__init__.pyo
${PYSITELIB}/django/utils/_os.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/_os.pyc
${PYSITELIB}/django/utils/_os.pyo
${PYSITELIB}/django/utils/archive.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/archive.pyc
${PYSITELIB}/django/utils/archive.pyo
${PYSITELIB}/django/utils/autoreload.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/autoreload.pyc
${PYSITELIB}/django/utils/autoreload.pyo
${PYSITELIB}/django/utils/baseconv.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/baseconv.pyc
${PYSITELIB}/django/utils/baseconv.pyo
${PYSITELIB}/django/utils/cache.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/cache.pyc
${PYSITELIB}/django/utils/cache.pyo
${PYSITELIB}/django/utils/crypto.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/crypto.pyc
${PYSITELIB}/django/utils/crypto.pyo
${PYSITELIB}/django/utils/datastructures.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/datastructures.pyc
${PYSITELIB}/django/utils/datastructures.pyo
${PYSITELIB}/django/utils/dateformat.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/dateformat.pyc
${PYSITELIB}/django/utils/dateformat.pyo
${PYSITELIB}/django/utils/dateparse.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/dateparse.pyc
${PYSITELIB}/django/utils/dateparse.pyo
${PYSITELIB}/django/utils/dates.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/dates.pyc
${PYSITELIB}/django/utils/dates.pyo
${PYSITELIB}/django/utils/datetime_safe.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/datetime_safe.pyc
${PYSITELIB}/django/utils/datetime_safe.pyo
${PYSITELIB}/django/utils/deconstruct.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/deconstruct.pyc
${PYSITELIB}/django/utils/deconstruct.pyo
${PYSITELIB}/django/utils/decorators.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/decorators.pyc
${PYSITELIB}/django/utils/decorators.pyo
${PYSITELIB}/django/utils/deprecation.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/deprecation.pyc
${PYSITELIB}/django/utils/deprecation.pyo
${PYSITELIB}/django/utils/duration.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/duration.pyc
${PYSITELIB}/django/utils/duration.pyo
${PYSITELIB}/django/utils/encoding.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/encoding.pyc
${PYSITELIB}/django/utils/encoding.pyo
${PYSITELIB}/django/utils/feedgenerator.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/feedgenerator.pyc
${PYSITELIB}/django/utils/feedgenerator.pyo
${PYSITELIB}/django/utils/formats.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/formats.pyc
${PYSITELIB}/django/utils/formats.pyo
${PYSITELIB}/django/utils/functional.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/functional.pyc
${PYSITELIB}/django/utils/functional.pyo
${PYSITELIB}/django/utils/hashable.py
${PYSITELIB}/django/utils/hashable.pyc
${PYSITELIB}/django/utils/hashable.pyo
${PYSITELIB}/django/utils/html.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/html.pyc
${PYSITELIB}/django/utils/html.pyo
${PYSITELIB}/django/utils/http.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/http.pyc
${PYSITELIB}/django/utils/http.pyo
${PYSITELIB}/django/utils/inspect.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/inspect.pyc
${PYSITELIB}/django/utils/inspect.pyo
${PYSITELIB}/django/utils/ipv6.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/ipv6.pyc
${PYSITELIB}/django/utils/ipv6.pyo
${PYSITELIB}/django/utils/itercompat.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/itercompat.pyc
${PYSITELIB}/django/utils/itercompat.pyo
${PYSITELIB}/django/utils/jslex.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/jslex.pyc
${PYSITELIB}/django/utils/jslex.pyo
${PYSITELIB}/django/utils/log.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/log.pyc
${PYSITELIB}/django/utils/log.pyo
${PYSITELIB}/django/utils/lorem_ipsum.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/lorem_ipsum.pyc
${PYSITELIB}/django/utils/lorem_ipsum.pyo
${PYSITELIB}/django/utils/lru_cache.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/lru_cache.pyc
${PYSITELIB}/django/utils/lru_cache.pyo
${PYSITELIB}/django/utils/module_loading.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/module_loading.pyc
${PYSITELIB}/django/utils/module_loading.pyo
${PYSITELIB}/django/utils/numberformat.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/numberformat.pyc
${PYSITELIB}/django/utils/numberformat.pyo
${PYSITELIB}/django/utils/regex_helper.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/regex_helper.pyc
${PYSITELIB}/django/utils/regex_helper.pyo
${PYSITELIB}/django/utils/safestring.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/safestring.pyc
${PYSITELIB}/django/utils/safestring.pyo
${PYSITELIB}/django/utils/six.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/six.pyc
${PYSITELIB}/django/utils/six.pyo
${PYSITELIB}/django/utils/termcolors.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/termcolors.pyc
${PYSITELIB}/django/utils/termcolors.pyo
${PYSITELIB}/django/utils/text.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/text.pyc
${PYSITELIB}/django/utils/text.pyo
${PYSITELIB}/django/utils/timesince.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/timesince.pyc
${PYSITELIB}/django/utils/timesince.pyo
${PYSITELIB}/django/utils/timezone.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/timezone.pyc
${PYSITELIB}/django/utils/timezone.pyo
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/utils/topological_sort.py
${PYSITELIB}/django/utils/topological_sort.pyc
${PYSITELIB}/django/utils/topological_sort.pyo
${PYSITELIB}/django/utils/translation/__init__.py
${PYSITELIB}/django/utils/translation/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/translation/__init__.pyo
py-django2: updated to 2.2.2 2.2.2: CVE-2019-12308: AdminURLFieldWidget XSS The clickable "Current URL" link generated by AdminURLFieldWidget displayed the provided value without validating it as a safe URL. Thus, an unvalidated value stored in the database, or a value provided as a URL query parameter payload, could result in an clickable JavaScript link. AdminURLFieldWidget now validates the provided value using URLValidator before displaying the clickable link. You may customise the validator by passing a validator_class kwarg to AdminURLFieldWidget.__init__(), e.g. when using ModelAdmin.formfield_overrides. 2.2.1: Bugfixes Fixed a regression in Django 2.1 that caused the incorrect quoting of database user password when using dbshell on Oracle Added compatibility for psycopg2 2.8 Fixed a regression in Django 2.2 that caused a crash when loading the template for the technical 500 debug page Fixed crash of ordering argument in ArrayAgg and StringAgg when it contains an expression with params Fixed a regression in Django 2.2 that caused a single instance fast-delete to not set the primary key to None Prevented makemigrations from generating infinite migrations for check constraints and partial indexes when condition contains a range object Reverted an optimization in Django 2.2 Fixed a regression in Django 2.2 where Paginator crashes if object_list is a queryset ordered or aggregated over a nested JSONField key transform Fixed a regression in Django 2.2 where IntegerField validation of database limits crashes if limit_value attribute in a custom validator is callable Fixed a regression in Django 2.2 where SearchVector generates SQL that is not indexable Fixed a regression in Django 2.2 that caused an exception to be raised when a custom error handler could not be imported Relaxed the system check added in Django 2.2 for the admin app’s dependencies to reallow use of SessionMiddleware subclasses, rather than requiring django.contrib.sessions to be in INSTALLED_APPS Increased the default timeout when using Watchman to 5 seconds to prevent falling back to StatReloader on larger projects and made it customizable via the DJANGO_WATCHMAN_TIMEOUT environment variable Fixed a regression in Django 2.2 that caused a crash when migrating permissions for proxy models if the target permissions already existed. For example, when a permission had been created manually or a model had been migrated from concrete to proxy Fixed a regression in Django 2.2 that caused a crash of runserver when URLConf modules raised exceptions Fixed a regression in Django 2.2 where changes were not reliably detected by auto-reloader when using StatReloader Fixed a migration crash on Oracle and PostgreSQL when adding a check constraint with a contains, startswith, or endswith lookup (or their case-insensitive variant) Fixed a migration crash on Oracle and SQLite when adding a check constraint with condition contains | (OR) operator Django 2.2.2 release notesDjango 2.2 release notes 2.2: This version has been designated as a long-term support (LTS) release, which means that security and data loss fixes will be applied for at least the next three years. It will also receive fixes for crashing bugs, major functionality bugs in newly-introduced features, and regressions from older versions of Django for the next eight months until December 2019. As always, the release notes cover the salmagundi of new features in detail, but a few highlights are: * HttpRequest.headers to allow simple access to a request’s headers. * Database-level constraints on models. * Watchman compatibility for runserver to improve the performance of watching a large number of files for changes.
2019-06-03 14:39:46 +02:00
${PYSITELIB}/django/utils/translation/reloader.py
${PYSITELIB}/django/utils/translation/reloader.pyc
${PYSITELIB}/django/utils/translation/reloader.pyo
${PYSITELIB}/django/utils/translation/template.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/translation/template.pyc
${PYSITELIB}/django/utils/translation/template.pyo
${PYSITELIB}/django/utils/translation/trans_null.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/translation/trans_null.pyc
${PYSITELIB}/django/utils/translation/trans_null.pyo
${PYSITELIB}/django/utils/translation/trans_real.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/translation/trans_real.pyc
${PYSITELIB}/django/utils/translation/trans_real.pyo
${PYSITELIB}/django/utils/tree.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/tree.pyc
${PYSITELIB}/django/utils/tree.pyo
${PYSITELIB}/django/utils/version.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/version.pyc
${PYSITELIB}/django/utils/version.pyo
${PYSITELIB}/django/utils/xmlutils.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/utils/xmlutils.pyc
${PYSITELIB}/django/utils/xmlutils.pyo
${PYSITELIB}/django/views/__init__.py
${PYSITELIB}/django/views/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/__init__.pyo
${PYSITELIB}/django/views/csrf.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/csrf.pyc
${PYSITELIB}/django/views/csrf.pyo
${PYSITELIB}/django/views/debug.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/debug.pyc
${PYSITELIB}/django/views/debug.pyo
${PYSITELIB}/django/views/decorators/__init__.py
${PYSITELIB}/django/views/decorators/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/decorators/__init__.pyo
${PYSITELIB}/django/views/decorators/cache.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/decorators/cache.pyc
${PYSITELIB}/django/views/decorators/cache.pyo
${PYSITELIB}/django/views/decorators/clickjacking.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/decorators/clickjacking.pyc
${PYSITELIB}/django/views/decorators/clickjacking.pyo
${PYSITELIB}/django/views/decorators/csrf.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/decorators/csrf.pyc
${PYSITELIB}/django/views/decorators/csrf.pyo
${PYSITELIB}/django/views/decorators/debug.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/decorators/debug.pyc
${PYSITELIB}/django/views/decorators/debug.pyo
${PYSITELIB}/django/views/decorators/gzip.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/decorators/gzip.pyc
${PYSITELIB}/django/views/decorators/gzip.pyo
${PYSITELIB}/django/views/decorators/http.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/decorators/http.pyc
${PYSITELIB}/django/views/decorators/http.pyo
${PYSITELIB}/django/views/decorators/vary.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/decorators/vary.pyc
${PYSITELIB}/django/views/decorators/vary.pyo
${PYSITELIB}/django/views/defaults.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/defaults.pyc
${PYSITELIB}/django/views/defaults.pyo
${PYSITELIB}/django/views/generic/__init__.py
${PYSITELIB}/django/views/generic/__init__.pyc
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/generic/__init__.pyo
${PYSITELIB}/django/views/generic/base.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/generic/base.pyc
${PYSITELIB}/django/views/generic/base.pyo
${PYSITELIB}/django/views/generic/dates.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/generic/dates.pyc
${PYSITELIB}/django/views/generic/dates.pyo
${PYSITELIB}/django/views/generic/detail.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/generic/detail.pyc
${PYSITELIB}/django/views/generic/detail.pyo
${PYSITELIB}/django/views/generic/edit.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/generic/edit.pyc
${PYSITELIB}/django/views/generic/edit.pyo
${PYSITELIB}/django/views/generic/list.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/generic/list.pyc
${PYSITELIB}/django/views/generic/list.pyo
${PYSITELIB}/django/views/i18n.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/i18n.pyc
${PYSITELIB}/django/views/i18n.pyo
${PYSITELIB}/django/views/static.py
py-django2: updated to 2.1 2.1: Model “view” permission django.contrib.admin ModelAdmin.search_fields now accepts any lookup such as field__exact. jQuery is upgraded from version 2.2.3 to 3.3.1. The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the “delete selected objects” action. You can now override the default admin site. The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page. The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression. The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the “delete selected” action. The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally). The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates. InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj. Admin actions may now specify permissions to limit their availability to certain users. django.contrib.auth createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks. UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model. django.contrib.gis The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer. OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1). django.contrib.sessions Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies. Cache The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one. The new touch() method of the low-level cache API updates the timeout of cache keys. CSRF Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies. Forms The widget for ImageField now renders with the HTML attribute accept="image/*". Internationalization Added the get_supported_language_variant() function. Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations. Management Commands The new inspectdb --include-views option allows creating models for database views. The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command’s options. Migrations Added support for serialization of functools.partialmethod objects. To support frozen environments, migrations may be loaded from .pyc files. Models Models can now use __init_subclass__() from PEP 487. A BinaryField may now be set to editable=True if you wish to include it in model forms. A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim. The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week. Query expressions can now be negated using a minus sign. QuerySet.order_by() and distinct(*fields) now support using field transforms. BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future. The new QuerySet.explain() method displays the database’s execution plan of a queryset’s query. QuerySet.raw() now supports prefetch_related(). Requests and Responses Added HttpRequest.get_full_path_info(). Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag. The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate. Templates The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.
2018-08-07 11:53:53 +02:00
${PYSITELIB}/django/views/static.pyc
${PYSITELIB}/django/views/static.pyo
${PYSITELIB}/django/views/templates/default_urlconf.html
${PYSITELIB}/django/views/templates/technical_404.html
${PYSITELIB}/django/views/templates/technical_500.html
${PYSITELIB}/django/views/templates/technical_500.txt