1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/xslt/base/txURIUtils.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,37 @@ 1.4 +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#ifndef TRANSFRMX_URIUTILS_H 1.10 +#define TRANSFRMX_URIUTILS_H 1.11 + 1.12 +#include "txCore.h" 1.13 + 1.14 +class nsIDocument; 1.15 +class nsIDOMNode; 1.16 + 1.17 +/** 1.18 + * A utility class for URI handling 1.19 + * Not yet finished, only handles file URI at this point 1.20 +**/ 1.21 + 1.22 +class URIUtils { 1.23 +public: 1.24 + 1.25 + /** 1.26 + * Reset the given document with the document of the source node 1.27 + */ 1.28 + static void ResetWithSource(nsIDocument *aNewDoc, nsIDOMNode *aSourceNode); 1.29 + 1.30 + /** 1.31 + * Resolves the given href argument, using the given documentBase 1.32 + * if necessary. 1.33 + * The new resolved href will be appended to the given dest String 1.34 + **/ 1.35 + static void resolveHref(const nsAString& href, const nsAString& base, 1.36 + nsAString& dest); 1.37 +}; //-- URIUtils 1.38 + 1.39 +/* */ 1.40 +#endif