Commit cd8affe9 authored by Ryan Graham's avatar Ryan Graham Committed by ryang

fixed issue where sitemesh was inserting html in the user export file

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@3124 b35dd754-fafc-0310-a699-88a17e54d16e
parent a9e65e9c
......@@ -49,6 +49,11 @@
User Import/Export Plugin Changelog
</h1>
<p><b>2.0.1</b> -- November 29, 2005</p>
<ul>
<li>Fixed issue where SiteMesh was inserting html in the user export file.
</ul>
<p><b>2.0</b> -- September 1, 2005</p>
<ul>
<li>Added the ability to allow users to specify the import and export file locations.
......
......@@ -6,8 +6,8 @@
<name>User Import Export</name>
<description>Enables import and export of user data.</description>
<author>Ryan Graham</author>
<version>2.0</version>
<date>09/01/2005</date>
<version>2.0.1</version>
<date>11/29/2005</date>
<minServerVersion>2.3.0</minServerVersion>
<adminconsole>
......
<%@ page import="java.io.OutputStream,
org.jivesoftware.messenger.XMPPServer,
org.jivesoftware.messenger.plugin.ImportExportPlugin"%><%
org.jivesoftware.messenger.plugin.ImportExportPlugin"
contentType="application/x-download"%><%
String fileName = request.getParameter("fileName");
response.setContentType("application/x-download");
response.setHeader("Content-Disposition","attachment;filename="+fileName+".xml");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment