2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-10 11:11:11 -07:00
|
|
|
#include "mozilla/ModuleUtils.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsDirectoryViewer.h"
|
|
|
|
#include "rdf.h"
|
|
|
|
#include "nsRDFCID.h"
|
|
|
|
#include "nsCURILoader.h"
|
2009-09-05 00:24:07 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Factory constructors
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR_INIT(nsHTTPIndex, Init)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsDirectoryViewerFactory)
|
|
|
|
|
2010-06-10 11:11:11 -07:00
|
|
|
NS_DEFINE_NAMED_CID(NS_DIRECTORYVIEWERFACTORY_CID);
|
|
|
|
NS_DEFINE_NAMED_CID(NS_HTTPINDEX_SERVICE_CID);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-10 11:11:11 -07:00
|
|
|
static const mozilla::Module::CIDEntry kXPFECIDs[] = {
|
2013-10-23 13:36:09 -07:00
|
|
|
{ &kNS_DIRECTORYVIEWERFACTORY_CID, false, nullptr, nsDirectoryViewerFactoryConstructor },
|
|
|
|
{ &kNS_HTTPINDEX_SERVICE_CID, false, nullptr, nsHTTPIndexConstructor },
|
|
|
|
{ nullptr }
|
2010-06-10 11:11:11 -07:00
|
|
|
};
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-10 11:11:11 -07:00
|
|
|
static const mozilla::Module::ContractIDEntry kXPFEContracts[] = {
|
|
|
|
{ "@mozilla.org/xpfe/http-index-format-factory-constructor", &kNS_DIRECTORYVIEWERFACTORY_CID },
|
|
|
|
{ NS_HTTPINDEX_SERVICE_CONTRACTID, &kNS_HTTPINDEX_SERVICE_CID },
|
|
|
|
{ NS_HTTPINDEX_DATASOURCE_CONTRACTID, &kNS_HTTPINDEX_SERVICE_CID },
|
2013-10-23 13:36:09 -07:00
|
|
|
{ nullptr }
|
2010-06-10 11:11:11 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
static const mozilla::Module::CategoryEntry kXPFECategories[] = {
|
|
|
|
{ "Gecko-Content-Viewers", "application/http-index-format", "@mozilla.org/xpfe/http-index-format-factory-constructor" },
|
2013-10-23 13:36:09 -07:00
|
|
|
{ nullptr }
|
2010-06-10 11:11:11 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
static const mozilla::Module kXPFEModule = {
|
|
|
|
mozilla::Module::kVersion,
|
|
|
|
kXPFECIDs,
|
|
|
|
kXPFEContracts,
|
|
|
|
kXPFECategories
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2010-06-10 11:11:11 -07:00
|
|
|
NSMODULE_DEFN(application) = &kXPFEModule;
|