You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!--
- Provider List
- for the DokuWiki OEmbed plugin.
-
- Important:
- Due to the risk of a cross-site scripting attack
- [http://en.wikipedia.org/wiki/Cross-site_scripting] only list providers
- that you trust. Remove any providers that you do not trust.
-
- Usage:
- Each provider element has two attributes: name, which is currently not
- used and api which is the API endpoint for the provider's OEmbed
- service. Each provider also lists scheme elements which contain the
- regular expressions of the URLs for which the API endpoint can be used.
- The regular expressions are matched agains the entire URL (no need for
- '^$') and case insensitively. The schemes listed on oembed.com are not
- valid regular expressions and need to be converted.
-
- Additional providers can be found in the sample-providers.xml file and
- a more detailed list of providers can be found on the oembed site
- https://oembed.com/providers.json
-
- -->
-
- <providers>
- <!-- DIRECT PROVIDERS -->
- <!-- Flickr -->
- <provider name="Flickr" api="http://www.flickr.com/services/oembed.xml">
- <scheme>https?://(.*?\.)?flickr\.com/.*?</scheme>
- </provider>
-
- <!-- Twitter -->
- <provider name="Twitter" api="https://publish.twitter.com/oembed">
- <scheme>https?://twitter\.com/.*?</scheme>
- <scheme>https?://www\.twitter\.com/.*?</scheme>
- </provider>
-
- <!-- Vimeo -->
- <provider name="Vimeo" api="http://www.vimeo.com/api/oembed.{format}">
- <scheme>https?://www\.vimeo\.com/.*?</scheme>
- <scheme>https?://www\.vimeo\.com/groups/.*?/.*?</scheme>
- </provider>
-
- <!-- Youtube -->
- <provider name="Youtube" api="https://www.youtube.com/oembed">
- <scheme>https?://(.*?\.)?youtube\.com/watch.*?</scheme>
- <scheme>https?://(.*?\.)?youtube\.com/v/.*?</scheme>
- <scheme>https?://youtu\.be/.*?</scheme>
- <scheme>https?://(.*?\.)?youtube\.com/playlist?list=.*?</scheme>
- </provider>
-
- <!-- PROXY PROVIDERS -->
-
-
- </providers>
|