kopia lustrzana https://github.com/wagtail/wagtail
Put quotes around some inline code
rodzic
181b523faf
commit
cf38b2457d
|
@ -1558,7 +1558,7 @@ Changelog
|
|||
* Fix: The wagtailimages module is now compatible with remote storage backends that do not allow reopening closed files
|
||||
* Fix: Search no longer crashes when auto-indexing a model that doesn't have an id field (Scot Hacker)
|
||||
* Fix: The `wagtailfrontendcache` module's HTTP backend has been rewritten to reliably direct requests to the configured cache hostname
|
||||
* Fix: Resizing single pixel images with the "fill" filter no longer raises "ZeroDivisionError" or "tile cannot extend outside image"
|
||||
* Fix: Resizing single pixel images with the "fill" filter no longer raises `ZeroDivisionError` or "tile cannot extend outside image"
|
||||
* Fix: The queryset returned from `search` operations when using the database search backend now correctly preserves additional properties of the original query, such as `prefetch_related` / `select_related`
|
||||
* Fix: Responses from the external image URL generator are correctly marked as streaming and will no longer fail when used with Django's cache middleware
|
||||
* Fix: Page copy now works with pages that use multiple inheritance (Jordi Joan)
|
||||
|
@ -1632,7 +1632,7 @@ Changelog
|
|||
~~~~~~~~~~~~~~~~~~~
|
||||
* Fix: When copying a page, IDs of child objects within page revision records were not remapped to the new objects; this would cause those objects to be lost from the original page when editing the new one
|
||||
* Fix: Search no longer crashes when auto-indexing a model that doesn't have an id field (Scot Hacker)
|
||||
* Fix: Resizing single pixel images with the "fill" filter no longer raises "ZeroDivisionError" or "tile cannot extend outside image"
|
||||
* Fix: Resizing single pixel images with the "fill" filter no longer raises `ZeroDivisionError` or "tile cannot extend outside image"
|
||||
|
||||
|
||||
0.8.9 (16.09.2015)
|
||||
|
@ -1848,7 +1848,7 @@ Changelog
|
|||
* Added a new datetime picker widget
|
||||
* Added styleguide (mainly for wagtail developers)
|
||||
* Aesthetic improvements to preview experience
|
||||
* 'image' tag now accepts extra keyword arguments to be output as attributes on the img tag
|
||||
* 'image' tag now accepts extra keyword arguments to be output as attributes on the `<img>` tag
|
||||
* Login screen redirects to dashboard if user is already logged in
|
||||
* Renamed some template tag libraries
|
||||
* Any extra arguments given to serve are now passed through to get_context and get_template
|
||||
|
|
|
@ -687,10 +687,10 @@ change a few attributes to change the thumbnail to your liking, like so:
|
|||
# Optionally override the filter spec used to create each thumb
|
||||
thumb_image_filter_spec = 'fill-100x100' # this is the default
|
||||
|
||||
# Optionally override the 'width' attribute value added to each img tag
|
||||
# Optionally override the 'width' attribute value added to each `<img>` tag
|
||||
thumb_image_width = 50 # this is the default
|
||||
|
||||
# Optionally override the class name added to each img tag
|
||||
# Optionally override the class name added to each `<img>` tag
|
||||
thumb_classname = 'admin-thumb' # this is the default
|
||||
|
||||
# Optionally override the text that appears in the column header
|
||||
|
|
|
@ -14,4 +14,4 @@ Bug fixes
|
|||
|
||||
* When copying a page, IDs of child objects within page revision records were not remapped to the new objects; this would cause those objects to be lost from the original page when editing the new one
|
||||
* Search no longer crashes when auto-indexing a model that doesn't have an id field (Scot Hacker)
|
||||
* Resizing single pixel images with the "fill" filter no longer raises "ZeroDivisionError" or "tile cannot extend outside image"
|
||||
* Resizing single pixel images with the "fill" filter no longer raises ``ZeroDivisionError`` or "tile cannot extend outside image"
|
||||
|
|
|
@ -85,7 +85,7 @@ Bug fixes
|
|||
* The ``wagtailimages`` module is now compatible with remote storage backends that do not allow reopening closed files
|
||||
* Search no longer crashes when auto-indexing a model that doesn't have an ``id`` field
|
||||
* The ``wagtailfrontendcache`` module's HTTP backend has been rewritten to reliably direct requests to the configured cache hostname
|
||||
* Resizing single pixel images with the "fill" filter no longer raises "ZeroDivisionError" or "tile cannot extend outside image"
|
||||
* Resizing single pixel images with the "fill" filter no longer raises ``ZeroDivisionError`` or "tile cannot extend outside image"
|
||||
* The QuerySet returned from ``search`` operations when using the database search backend now correctly preserves additional properties of the original query, such as ``prefetch_related`` / ``select_related``
|
||||
* Responses from the external image URL generator are correctly marked as streaming and will no longer fail when used with Django's cache middleware
|
||||
* Page copy now works with pages that use multiple inheritance
|
||||
|
|
Ładowanie…
Reference in New Issue