##### # FCKeditor - The text editor for internet # Copyright (C) 2003-2006 Frederico Caldeira Knabben # # Licensed under the terms of the GNU Lesser General Public License: # http://www.opensource.org/licenses/lgpl-license.php # # For further information visit: # http://www.fckeditor.net/ # # "Support Open Source software. What about a donation today?" # # File Name: basexml.pl # This is the File Manager Connector for Perl. # # File Authors: # Takashi Yamaguchi (jack@omakase.net) ##### sub CreateXmlHeader { local($command,$resourceType,$currentFolder) = @_; # Create the XML document header. print ''; # Create the main "Connector" node. print ''; # Add the current folder node. print ''; } sub CreateXmlFooter { print ''; } sub SendError { local( $number, $text ) = @_; print << "_HTML_HEAD_"; Content-Type:text/xml; charset=utf-8 Pragma: no-cache Cache-Control: no-cache Expires: Thu, 01 Dec 1994 16:00:00 GMT _HTML_HEAD_ # Create the XML document header print '' ; print '' ; exit ; } 1;