basexml.asp
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <!--
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2005 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * File Name: basexml.asp
  12.  *  This file include the functions that create the base XML output.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16. -->
  17. <%
  18. Sub SetXmlHeaders()
  19. ' Cleans the response buffer.
  20. Response.Clear()
  21. ' Prevent the browser from caching the result.
  22. Response.CacheControl = "no-cache"
  23. ' Set the response format.
  24. Response.CharSet = "UTF-8"
  25. Response.ContentType = "text/xml"
  26. End Sub
  27. Sub CreateXmlHeader( command, resourceType, currentFolder )
  28. ' Create the XML document header.
  29. Response.Write "<?xml version=""1.0"" encoding=""utf-8"" ?>"
  30. ' Create the main "Connector" node.
  31. Response.Write "<Connector command=""" & command & """ resourceType=""" & resourceType & """>"
  32. ' Add the current folder node.
  33. Response.Write "<CurrentFolder path=""" & ConvertToXmlAttribute( currentFolder ) & """ url=""" & ConvertToXmlAttribute( GetUrlFromPath( resourceType, currentFolder) ) & """ />"
  34. End Sub
  35. Sub CreateXmlFooter()
  36. Response.Write "</Connector>"
  37. End Sub
  38. Sub SendError( number, text )
  39. SetXmlHeaders
  40. ' Create the XML document header.
  41. Response.Write "<?xml version=""1.0"" encoding=""utf-8"" ?>"
  42. Response.Write "<Connector><Error number=""" & number & """ text=""" & Server.HTMLEncode( text ) & """ /></Connector>"
  43. Response.End
  44. End Sub
  45. %>