diff options
| -rw-r--r-- | Makefile | 5 | ||||
| -rw-r--r-- | debian/changelog | 2 | ||||
| -rw-r--r-- | mime.cpp | 1 | 
3 files changed, 7 insertions, 1 deletions
| @@ -26,7 +26,8 @@ PROGSRC=\      process.cpp \      stringhelper.cpp \      tempfile.cpp \ -    url.cpp +    url.cpp \ +    xml.cpp  SRC=$(PROGSRC)  HEADERS=$(PROGSRC:.cpp=.h) archive.h @@ -118,6 +119,8 @@ stringhelper.cpp \  stringhelper.h \  tempfile.cpp \  tempfile.h \ +xml.cpp \ +xml.h \  tests/Makefile \  tests/test-archive.cpp \  tests/test-base64.cpp \ diff --git a/debian/changelog b/debian/changelog index ba1600d..5b59a31 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@  libreichwein (1.3) UNRELEASED; urgency=medium    * Fixed upload in Makefile +  * Added MIME type application/wasm +  * Added Reichwein::XML::plain_xml()   -- Roland Reichwein <mail@reichwein.it>  Sat, 14 Jan 2023 12:41:39 +0100 @@ -33,6 +33,7 @@ std::string Reichwein::Mime::mime_type(const std::string& path)   if(boost::algorithm::iequals(ext, ".tif"))  return "image/tiff";   if(boost::algorithm::iequals(ext, ".svg"))  return "image/svg+xml";   if(boost::algorithm::iequals(ext, ".svgz")) return "image/svg+xml"; + if(boost::algorithm::iequals(ext, ".wasm")) return "application/wasm";   return "application/text";  } | 
