Mezzanine

Latest version: v6.0.0

Safety actively analyzes 628502 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 15 of 23

0.11.1

Not secure
-----------------------------

* Upgraded comment handling to work with new comment models in base blog importer. Fixes 59 - stephenmcd
* Only look for tags if it isn't going to throw an AtributeError - rich
* Only look for tags if it isn't going to throw an AttributeError - rich
* Split ``mezzanine.core.admin.DynamicInlineAdmin`` out into ``TabularDynamicInlineAdmin`` and ``StackedDynamicInlineAdmin`` - stephenmcd
* Fixed missing media from dynamic admin form - stephenmcd
* Added the template filter ``is_installed`` which can be used to test for values in the ``INSTALLED_APPS`` setting from within templates - stephenmcd
* Added ``is_installed`` for blog app around feed urls in mobile base template - stephenmcd
* Added integration with django's sitemaps app - stephenmcd
* Added handling in KeywordsWidget for the keywords field not existing in the request. Fixes 64 - stephenmcd
* Fixed issue where ``admin.StackedInlines`` would not display in the admin - Josh Cartmell
* Updated ``tinymce_setup.js`` to only initialize when TinyMCE is available - stephenmcd
* Updated ``dynamic_inline.js`` to support StackedDynamicInlineAdmin - stephenmcd
* Reordered jQuery in ``base_site.html`` to avoid issues when Grappelli isn't installed - stephenmcd
* Added CSS classes to each of the comment fields - stephenmcd
* Addd better hanadling in the keyword widget for when no keyword field is in the request. Previous fix only corrected the field not existing in the form object - stephenmcd
* Fixed the version check for ``collapse_backport.js`` - stephenmcd
* Added Single-Sign-On support to Disqus templates - Brett Clouser
* Added handling for unauthenticated users and empty key settings for Disqus single sign-on - stephenmcd
* Updated auto-generated settings docs - stephenmcd
* Added some ``sys.path`` fixing in ``manage.py`` to avoid some cron issues - stephenmcd
* Changed ``object_pk`` fields to integer fields in the generic app to resolve some issues with Postgres - stephenmcd
* Added migrations for ``object_pk`` change in generic. Fixes 66 - stephenmcd
* Fixed loading of blog posts for a tag - stephenmcd

0.11

Not secure
---------------------------

* Created a ``GRAPPELLI_INSTALLED`` setting that is dynamically set, and made it available to JavaScript in the admin so that this can be determined reliably without depending on Grappelli specific HTML/CSS - stephenmcd
* Made the default value for the ``DASHBOARD_TAGS`` setting dynamically created based on whether ``mezzanine.blog`` is in ``settings.INSTALLED_APPS`` - stephenmcd
* Added commented-out versions of some common Mezzanine settings to the ``project_template's`` settings module - stephenmcd
* French locale for all other apps - Dominique Guardiola
* Updated inline-editing docs to include a note about the tags already being provided by themes - stephenmcd
* Added setting for specifying the delimiter for CSV exports in the forms app - stephenmcd
* Added an option to view entries in a HTML table when exporting for the forms app - stephenmcd
* Fixed ``Page.get_absolute_url`` to use its static slug rather than dynamic ``get_slug``. Fixes 45 - stephenmcd
* Making ``Query.value`` a varchar(300) to allow for larger queries - John Campbell
* make value length 140 instead of 300 since the max twitter query is 140 currently - John Campbell
* Added migration for twitter query length - stephenmcd
* Converted blog categories to a ManyToManyField - stephenmcd
* Added migration scripts for blog categories - stephenmcd
* not sure how there wasn't one of these already - Tom von Schwerdtner
* Added post counts to archive and author listings for blog posts - stephenmcd
* add a label to registered settings for a more human-friendly admin UI - Tom von Schwerdtner
* A meta title for the default project homepage - Tom von Schwerdtner
* add title/tagline to admin settings - Tom von Schwerdtner
* a (slightly) better default tagline, and make settings available to templates - Tom von Schwerdtner
* Move the ``LOGIN_URL`` default into the project's settings module so it can be modified - stephenmcd
* Modified the ``AdminLoginInterfaceSelector`` middleware to recognise ``next`` paramters in the querystring, and redirect to those regardless of the interface option selected on the login form - stephenmcd
* Applied ``SITE_TITLE`` and ``SITE_TAGLINE`` to templates - stephenmcd
* Made description field for meta data into plain text - stephenmcd
* Added descriptions for new settings - stephenmcd
* Added styling for the blog tagline - stephenmcd
* Updated the auto-generated settings docs - stephenmcd
* Implemented initial version of custom per-page permissions - stephenmcd
* Added some template code to the gallery example in docs - stephenmcd
* Changed TinyMCE setup to properly support embed code - stephenmcd
* Integrated the ``SITE_TITLE`` and ``SITE_TAGLINE`` settings better into templates - stephenmcd
* Removed handling of HTML from ``Displayable.description`` - stephenmcd
* Updated the settings docs with the restored defaults for the ``SITE_TITLE`` and ``SITE_TAGLINE`` settings - stephenmcd
* Added a section to the admin customization docs about defining custom widget classes for HtmlField fields - stephenmcd
* Changed mezzanine-project script to exclude admin templates - stephenmcd
* Added note to deployment docs about setting up a cron job for Twitter feeds - stephenmcd
* Added embedded ``robots.txt`` to prevent spidering when DEBUG is enabled - stephenmcd
* Fixed handling of anonymous comments in the Disqus API - stephenmcd
* Changed handling of editable settings to force unicode for settings with string defaults. Fixes 52 - stephenmcd
* Initial version of refactoring comments into Django's built-in comments, and moving them into the new generic package - stephenmcd
* Added multi-site capability and tests, updated jso page fixtures to include site reference - legutierr
* added migrations for the new site field on Displayable - legutierr
* Fixed bug in login redirect - was defaulting to /accounts/profile/ upon login before and showing the logged in user a 404 error. Now defaults to /admin/ - Audrey M Roy
* Added migrate command to setup steps. Closes 54 - stephenmcd
* Fixed incorrect tag lib name in template - stephenmcd
* Added documentation regarding multi-site to the deployment page in the docs - legutierr
* Fixed mezzanine-project script where an error would occur when more than one project template with admin templates was used - stephenmcd
* Refactored the ``Keywords`` model to use generic relations and moved it and all related functionality into ``mezzanine.generic`` - stephenmcd
* Fixed a bug where ``django.conf.settings`` would override ``mezzanine.conf.settings`` - stephenmcd
* Added tests for keywords - stephenmcd
* Added migrations for keywords - stephenmcd
* Updated ``mezzanine/core/media/js/dynamic_inline.js`` to allow multiple DynamicInlineAdmins on a single admin page - Josh Cartmell
* Fixed a potential circular import bug - stephenmcd
* Added more error handling to the ``processor_for`` page processor decorator - stephenmcd
* Added delete links to the admin page tree - stephenmcd
* Updated search to respect published status - Josh Cartmell
* Small fix to Keywords Field. Stops instance from saving if keyword data is empty - Osiloke Emoekpere
* Removed ``DEV_SERVER`` setting from ``local_settings`` module template, since this is defined dynamically - stephenmcd
* Removed ``south`` from the ``OPTIONAL_APPS`` setting, since the addition of this to a project needs to be controlled manually, as the order of initial migrations for each app cannot be guarenteed and will break if used to create the tables for these apps. Added the ``USE_SOUTH`` boolean setting which can be defined to automatically have south added to ``INSTALLED_APPS`` when available. Fixes 53 - stephenmcd
* Removed handling of admin user for returning unpublished search results - stephenmcd
* Added test to ensure only published objects are returned as search results - stephenmcd
* Fixed bug where superclasses in concrete model inheritence chains would cause duplicate search results - stephenmcd
* Fixed bug where ``_order`` values were not being set for dynamic inlines - stephenmcd
* Added ``extra_context`` arg to ``mezzanine.pages.views.page`` - stephenmcd
* Refactored the page processor to only accept one argument since its behaviour is to only deal with one - stephenmcd
* Added note to docs about slug-based page processors - stephenmcd
* Removed migrate command from installation notes since south is no longer automatically configured - stephenmcd
* Re-sequenced the migrations for the ``Displayable.site`` field - stephenmcd
* Applied workaround for unexplainable Django issue where certain signals get lost - stephenmcd
* Updated settings form template to have a submit row and error note consistent with other admin change forms - stephenmcd
* Added ratings to ``mezzanine.generic`` and applied to the blog app - stephenmcd
* Updated auto-generated settings docs - stephenmcd
* Added handling for page menus where parent page is explicitly provided. Fixes 58 - stephenmcd
* Renamed ``Content`` to ``RichText``, ``ContentPage`` to ``RichTextPage``, and ``HtmlField`` to ``RichTextField`` - stephenmcd
* Fixed handling of ``USE_SOUTH`` setting so that south is also removed when explicitly set to False - stephenmcd
* Updated template for RichTextPage - stephenmcd
* Fixed toolbar styling for TinyMce inside the inline editing form - stephenmcd

0.10.6

Not secure
-----------------------------

* blog strings from html templates - Dominique Guardiola
* Apply the CSRF token to all AJAX posts in the admin - stephenmcd

0.10.5

Not secure
-----------------------------

* Updated ``mezzanine.utils.importing`` name in package docs - stephenmcd
* Changed cache handling to remove middleware classes if no cache backend specified - stephenmcd
* Refactored adding of optional apps so that it only occurs once, and the ordering of installed apps so that order is not modified unless necessary (eg grappelli) - stephenmcd
* Moved generation of ``docs/settings.rst`` and CHANGELOG from ``docs/conf.py`` into functions in ``mezzanine.utils.docs`` - stephenmcd
* Fixed admin fieldsets example in docs - stephenmcd
* Removed includes from mobile theme that replicated JavaScript common to all devices - stephenmcd
* Fixed JavaScript for Discus comments - include the absolute URL - stephenmcd
* Fixed module margin in admin dashboard - stephenmcd
* Changed Google Anylatics code so that the main tracking args can be overridden via a block - stephenmcd
* Reverted Google Analytics block in favour of checking for an existing ``_gaq`` JavaScript var - stephenmcd
* fix for ajax in admin not using csrf token for forms. fix for django 1.2.5 - lexual

0.10.4

Not secure
-----------------------------

* Fixed regression in cache defaults. Django defaults to a 5 minute memory cache which functions with Mezzanine's caching middleware installed by default. We now set the cache backend to dummy if no cache backend is defined in the project's settings module - stephenmcd

0.10.3

Not secure
-----------------------------

* Renamed the module ``mezzanine.utils.path`` to the more accurate ``mezzanine.utils.importing`` - stephenmcd
* Added the function ``mezzanine.utils.importing.import_dotted_path`` for importing via Python paths to names which are defined as string settings - stephenmcd
* Removed the cache defaults - stephenmcd

Page 15 of 23

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.