diff options
author | Kim Alvefur <zash@zash.se> | 2021-01-26 03:19:17 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-01-26 03:19:17 +0100 |
commit | 4be9b33741b71925adddf7ee184b3babf2170347 (patch) | |
tree | d1dfc3940b89b83640520cbe0b924e6273936d77 /doc | |
parent | 800af648de857e5bb2d328d0325bb637d5a5a1f5 (diff) | |
download | prosody-4be9b33741b71925adddf7ee184b3babf2170347.tar.gz prosody-4be9b33741b71925adddf7ee184b3babf2170347.zip |
mod_http_file_share: Let's write another XEP-0363 implementation
This variant is meant to improve upon mod_http_upload in some ways:
* Handle files much of arbitrary size efficiently
* Allow GET and PUT URLs to be different
* Remember Content-Type sent by client
* Avoid dependency on mod_http_files
* Built-in way to delegate storage to another httpd
Diffstat (limited to 'doc')
-rw-r--r-- | doc/doap.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/doap.xml b/doc/doap.xml index f0538580..277aa5d1 100644 --- a/doc/doap.xml +++ b/doc/doap.xml @@ -617,6 +617,15 @@ </implements> <implements> <xmpp:SupportedXep> + <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0363.html"/> + <xmpp:version>1.0.0</xmpp:version> + <xmpp:status>complete</xmpp:status> + <xmpp:since>0.12.0</xmpp:since> + <xmpp:note>mod_http_file_share</xmpp:note> + </xmpp:SupportedXep> + </implements> + <implements> + <xmpp:SupportedXep> <xmpp:xep rdf:resource="https://xmpp.org/extensions/xep-0368.html"/> <xmpp:version>1.1.0</xmpp:version> <xmpp:status>partial</xmpp:status> |