diff --git a/mozilla/content/xsl/document/public/MANIFEST b/mozilla/content/xsl/document/public/MANIFEST deleted file mode 100644 index bb0dde600b6..00000000000 --- a/mozilla/content/xsl/document/public/MANIFEST +++ /dev/null @@ -1,5 +0,0 @@ -# -# This is a list of local files which get copied to the mozilla:dist:content directory -# - -nsITransformMediator.h diff --git a/mozilla/content/xsl/document/public/MANIFEST_IDL b/mozilla/content/xsl/document/public/MANIFEST_IDL deleted file mode 100644 index 329cd8ec792..00000000000 --- a/mozilla/content/xsl/document/public/MANIFEST_IDL +++ /dev/null @@ -1,6 +0,0 @@ -# -# This is a list of local files which get copied to the mozilla:dist:idl directory -# - -nsIDocumentTransformer.idl -nsITransformObserver.idl diff --git a/mozilla/content/xsl/document/public/Makefile.in b/mozilla/content/xsl/document/public/Makefile.in deleted file mode 100644 index 12d36bbceec..00000000000 --- a/mozilla/content/xsl/document/public/Makefile.in +++ /dev/null @@ -1,55 +0,0 @@ -# ***** BEGIN LICENSE BLOCK ***** -# Version: MPL 1.1/GPL 2.0/LGPL 2.1 -# -# The contents of this file are subject to the Mozilla Public License Version -# 1.1 (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# http://www.mozilla.org/MPL/ -# -# Software distributed under the License is distributed on an "AS IS" basis, -# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -# for the specific language governing rights and limitations under the -# License. -# -# The Original Code is mozilla.org code. -# -# The Initial Developer of the Original Code is -# Netscape Communications Corporation. -# Portions created by the Initial Developer are Copyright (C) 2002 -# the Initial Developer. All Rights Reserved. -# -# Contributor(s): -# Peter Van der Beken (original author) -# -# Alternatively, the contents of this file may be used under the terms of -# either the GNU General Public License Version 2 or later (the "GPL"), or -# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -# in which case the provisions of the GPL or the LGPL are applicable instead -# of those above. If you wish to allow use of your version of this file only -# under the terms of either the GPL or the LGPL, and not to allow others to -# use your version of this file under the terms of the MPL, indicate your -# decision by deleting the provisions above and replace them with the notice -# and other provisions required by the GPL or the LGPL. If you do not delete -# the provisions above, a recipient may use your version of this file under -# the terms of any one of the MPL, the GPL or the LGPL. -# -# ***** END LICENSE BLOCK ***** - -DEPTH = ../../../.. -topsrcdir = @top_srcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - -include $(DEPTH)/config/autoconf.mk - -MODULE = content -XPIDL_MODULE = content_xslt - -XPIDLSRCS = nsIDocumentTransformer.idl \ - nsITransformObserver.idl \ - $(NULL) - -EXPORTS = nsITransformMediator.h \ - $(NULL) - -include $(topsrcdir)/config/rules.mk diff --git a/mozilla/content/xsl/document/public/nsIDocumentTransformer.idl b/mozilla/content/xsl/document/public/nsIDocumentTransformer.idl deleted file mode 100644 index 63c0b880fcb..00000000000 --- a/mozilla/content/xsl/document/public/nsIDocumentTransformer.idl +++ /dev/null @@ -1,67 +0,0 @@ -/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is mozilla.org code. - * - * The Initial Developer of the Original Code is - * Netscape Communications Corporation. - * Portions created by the Initial Developer are Copyright (C) 2002 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Nisheeth Ranjan (original author) - * Peter Van der Beken - * - * - * Alternatively, the contents of this file may be used under the terms of - * either the GNU General Public License Version 2 or later (the "GPL"), or - * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), - * in which case the provisions of the GPL or the LGPL are applicable instead - * of those above. If you wish to allow use of your version of this file only - * under the terms of either the GPL or the LGPL, and not to allow others to - * use your version of this file under the terms of the MPL, indicate your - * decision by deleting the provisions above and replace them with the notice - * and other provisions required by the GPL or the LGPL. If you do not delete - * the provisions above, a recipient may use your version of this file under - * the terms of any one of the MPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ - -#include "nsISupports.idl" - -interface nsIDOMNode; -interface nsIDOMDocument; -interface nsITransformObserver; - -/** - * This interface should be implemented by any object that wants to - * transform the content model of the current document before the - * document is displayed. One possible implementor of this interface - * is an XSL processor. - */ - -[scriptable, uuid(3fbff728-2d20-11d3-aef3-00108300ff91)] -interface nsIDocumentTransformer : nsISupports -{ - void transformDocument(in nsIDOMNode aSourceDOM, - in nsIDOMNode aStyleDOM, - in nsIDOMDocument aOutputDOC, - in nsITransformObserver aObserver); -}; - - -%{ C++ -extern nsresult -NS_NewDocumentTransformer(nsIDocumentTransformer** aDocTransformer); -%} diff --git a/mozilla/content/xsl/document/public/nsITransformMediator.h b/mozilla/content/xsl/document/public/nsITransformMediator.h deleted file mode 100644 index 25b5906ac03..00000000000 --- a/mozilla/content/xsl/document/public/nsITransformMediator.h +++ /dev/null @@ -1,82 +0,0 @@ -/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is mozilla.org code. - * - * The Initial Developer of the Original Code is - * Netscape Communications Corporation. - * Portions created by the Initial Developer are Copyright (C) 2002 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Nisheeth Ranjan (original author) - * Peter Van der Beken - * - * - * Alternatively, the contents of this file may be used under the terms of - * either the GNU General Public License Version 2 or later (the "GPL"), or - * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), - * in which case the provisions of the GPL or the LGPL are applicable instead - * of those above. If you wish to allow use of your version of this file only - * under the terms of either the GPL or the LGPL, and not to allow others to - * use your version of this file under the terms of the MPL, indicate your - * decision by deleting the provisions above and replace them with the notice - * and other provisions required by the GPL or the LGPL. If you do not delete - * the provisions above, a recipient may use your version of this file under - * the terms of any one of the MPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ - -#ifndef nsITransformMediator_h___ -#define nsITransformMediator_h___ - -#include "nsISupports.h" -#include "nsAString.h" - -class nsIDOMNode; -class nsIDOMDocument; -class nsITransformObserver; -class nsIXMLContentSink; - -/* 6f4c2d0e-2cdf-11d3-aef3-00108300ff91 */ -#define NS_ITRANSFORM_MEDIATOR_IID \ -{ 0x6f4c2d0e, 0x2cdf, 0x11d3, {0xae, 0xf3, 0x00, 0x10, 0x83, 0x00, 0xff, 0x91} } - -/** - * This interface represents a mediator between Gecko and an external - * transformation engine. The following process of document transformation - * is assumed : a source document, a stylesheet specifying the transform, - * and an output document are passed to a transformation engine. All three - * documents expose nsIDOMDocument interfaces. The transformation engine - * uses the nsIDOMDocument interfaces to read the source document and - * stylesheet, and write the output document. - */ - -class nsITransformMediator : public nsISupports { -public: - NS_DEFINE_STATIC_IID_ACCESSOR(NS_ITRANSFORM_MEDIATOR_IID); - - NS_IMETHOD SetEnabled(PRBool aValue) = 0; - NS_IMETHOD SetSourceContentModel(nsIDOMNode* aSource) = 0; - NS_IMETHOD SetStyleSheetContentModel(nsIDOMNode* aStyle) = 0; - NS_IMETHOD SetResultDocument(nsIDOMDocument* aDoc) = 0; - NS_IMETHOD GetResultDocument(nsIDOMDocument** aDoc) = 0; - NS_IMETHOD SetTransformObserver(nsITransformObserver* aObserver) = 0; - NS_IMETHOD SetStyleInvalid(PRBool aInvalid) = 0; -}; - -extern nsresult NS_NewTransformMediator(nsITransformMediator** aInstancePtrResult, - const nsACString& aMimeType); - -#endif // nsITransformMediator_h___ diff --git a/mozilla/content/xsl/document/public/nsITransformObserver.idl b/mozilla/content/xsl/document/public/nsITransformObserver.idl deleted file mode 100644 index 5458b7e3681..00000000000 --- a/mozilla/content/xsl/document/public/nsITransformObserver.idl +++ /dev/null @@ -1,49 +0,0 @@ -/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* ***** BEGIN LICENSE BLOCK ***** - * Version: MPL 1.1/GPL 2.0/LGPL 2.1 - * - * The contents of this file are subject to the Mozilla Public License Version - * 1.1 (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * http://www.mozilla.org/MPL/ - * - * Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License - * for the specific language governing rights and limitations under the - * License. - * - * The Original Code is mozilla.org code. - * - * The Initial Developer of the Original Code is - * Netscape Communications Corporation. - * Portions created by the Initial Developer are Copyright (C) 2002 - * the Initial Developer. All Rights Reserved. - * - * Contributor(s): - * Peter Van der Beken (original author) - * - * - * Alternatively, the contents of this file may be used under the terms of - * either the GNU General Public License Version 2 or later (the "GPL"), or - * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), - * in which case the provisions of the GPL or the LGPL are applicable instead - * of those above. If you wish to allow use of your version of this file only - * under the terms of either the GPL or the LGPL, and not to allow others to - * use your version of this file under the terms of the MPL, indicate your - * decision by deleting the provisions above and replace them with the notice - * and other provisions required by the GPL or the LGPL. If you do not delete - * the provisions above, a recipient may use your version of this file under - * the terms of any one of the MPL, the GPL or the LGPL. - * - * ***** END LICENSE BLOCK ***** */ - -#include "nsISupports.idl" - -interface nsIDOMDocument; - -[scriptable, uuid(cce88481-6eb3-11d6-a7f2-8d82cd2af37c)] -interface nsITransformObserver : nsISupports -{ - void onTransformDone(in nsresult aResult, - in nsIDOMDocument aResultDocument); -};