kopia lustrzana https://github.com/wagtail/wagtail
Add https support for scribd oembed provider (#739)
Currently scribd defaults to https for their sharing links - http still works but if you copy&paste quickly you may think it's brokenpull/5456/head
rodzic
1468cab3a1
commit
1a2bf525f2
|
@ -7,6 +7,7 @@ Changelog
|
|||
* Added `construct_page_listing_buttons` hook (Michael van Tellingen)
|
||||
* Added more detailed documentation and troubleshooting for installing OpenCV for feature detection (Daniele Procida)
|
||||
* Fix: Added line breaks to long filenames on multiple image / document uploader (Kevin Howbrook)
|
||||
* Fix: Added https support for Scribd oEmbed provider (Rodrigo)
|
||||
|
||||
|
||||
2.6 (xx.xx.xxxx) - IN DEVELOPMENT
|
||||
|
|
|
@ -383,6 +383,7 @@ Contributors
|
|||
* jonny5532
|
||||
* William Blackie
|
||||
* Andrew Miller
|
||||
* Rodrigo
|
||||
|
||||
Translators
|
||||
===========
|
||||
|
|
|
@ -25,6 +25,7 @@ Bug fixes
|
|||
~~~~~~~~~
|
||||
|
||||
* Added line breaks to long filenames on multiple image / document uploader (Kevin Howbrook)
|
||||
* Added https support for Scribd oEmbed provider (Rodrigo)
|
||||
|
||||
|
||||
Upgrade considerations
|
||||
|
|
|
@ -92,7 +92,7 @@ revision3 = {
|
|||
scribd = {
|
||||
"endpoint": "http://www.scribd.com/services/oembed",
|
||||
"urls": [
|
||||
r'^http://[-\w]+\.scribd\.com/.+$',
|
||||
r'^http(?:s)?://[-\w]+\.scribd\.com/.+$',
|
||||
],
|
||||
}
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue