You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
172 lines
3.5 KiB
172 lines
3.5 KiB
/*++
|
|
|
|
Copyright (c) 1998-2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
MultiSzData.cpp
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
Mohit Srivastava 22-March-01
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "MultiSzData.h"
|
|
#include <iiscnfg.h>
|
|
|
|
//
|
|
// CustomErrorDescriptions
|
|
//
|
|
LPCWSTR TFormattedMultiSzFields::apCustomErrorDescriptions[] =
|
|
{
|
|
L"ErrorCode", L"ErrorSubCode", L"ErrorText", L"ErrorSubcodeText", L"FileSupportOnly", NULL
|
|
};
|
|
TFormattedMultiSz TFormattedMultiSzData::CustomErrorDescriptions =
|
|
{
|
|
MD_CUSTOM_ERROR_DESC,
|
|
L"CustomErrorDescription",
|
|
L',',
|
|
TFormattedMultiSzFields::apCustomErrorDescriptions
|
|
};
|
|
|
|
//
|
|
// HttpCustomHeaders
|
|
//
|
|
LPCWSTR TFormattedMultiSzFields::apHttpCustomHeaders[] =
|
|
{
|
|
L"Keyname", L"Value", NULL
|
|
};
|
|
TFormattedMultiSz TFormattedMultiSzData::HttpCustomHeaders =
|
|
{
|
|
MD_HTTP_CUSTOM,
|
|
L"HttpCustomHeader",
|
|
L',',
|
|
TFormattedMultiSzFields::apHttpCustomHeaders
|
|
};
|
|
|
|
//
|
|
// HttpErrors
|
|
//
|
|
LPCWSTR TFormattedMultiSzFields::apHttpErrors[] =
|
|
{
|
|
L"HttpErrorCode", L"HttpErrorSubcode", L"HandlerType", L"HandlerLocation", NULL
|
|
};
|
|
TFormattedMultiSz TFormattedMultiSzData::HttpErrors =
|
|
{
|
|
MD_CUSTOM_ERROR,
|
|
L"HttpError",
|
|
L',',
|
|
TFormattedMultiSzFields::apHttpErrors
|
|
};
|
|
|
|
//
|
|
// ScriptMaps
|
|
//
|
|
LPCWSTR TFormattedMultiSzFields::apScriptMaps[] =
|
|
{
|
|
L"Extensions", L"ScriptProcessor", L"Flags", L"IncludedVerbs", NULL
|
|
};
|
|
TFormattedMultiSz TFormattedMultiSzData::ScriptMaps =
|
|
{
|
|
MD_SCRIPT_MAPS,
|
|
L"ScriptMap",
|
|
L',',
|
|
TFormattedMultiSzFields::apScriptMaps
|
|
};
|
|
|
|
//
|
|
// SecureBindings
|
|
//
|
|
LPCWSTR TFormattedMultiSzFields::apSecureBindings[] =
|
|
{
|
|
L"IP", L"Port", NULL
|
|
};
|
|
TFormattedMultiSz TFormattedMultiSzData::SecureBindings =
|
|
{
|
|
MD_SECURE_BINDINGS,
|
|
L"SecureBinding",
|
|
L':',
|
|
TFormattedMultiSzFields::apSecureBindings
|
|
};
|
|
|
|
//
|
|
// ServerBindings
|
|
//
|
|
LPCWSTR TFormattedMultiSzFields::apServerBindings[] =
|
|
{
|
|
L"IP", L"Port", L"Hostname", NULL
|
|
};
|
|
TFormattedMultiSz TFormattedMultiSzData::ServerBindings =
|
|
{
|
|
MD_SERVER_BINDINGS,
|
|
L"ServerBinding",
|
|
L':',
|
|
TFormattedMultiSzFields::apServerBindings
|
|
};
|
|
|
|
//
|
|
// ApplicationDependencies
|
|
//
|
|
LPCWSTR TFormattedMultiSzFields::apApplicationDependencies[] =
|
|
{
|
|
L"AppName", L"Extensions", NULL
|
|
};
|
|
TFormattedMultiSz TFormattedMultiSzData::ApplicationDependencies =
|
|
{
|
|
MD_APP_DEPENDENCIES,
|
|
L"ApplicationDependency",
|
|
L';',
|
|
TFormattedMultiSzFields::apApplicationDependencies
|
|
};
|
|
|
|
//
|
|
// WebSvcExtRestrictionList
|
|
//
|
|
LPCWSTR TFormattedMultiSzFields::apWebSvcExtRestrictionList[] =
|
|
{
|
|
L"Access", L"FilePath", L"Deletable", L"ServerExtension", L"Description", NULL
|
|
};
|
|
TFormattedMultiSz TFormattedMultiSzData::WebSvcExtRestrictionList =
|
|
{
|
|
MD_WEB_SVC_EXT_RESTRICTION_LIST,
|
|
L"WebSvcExtRestrictionList",
|
|
L',',
|
|
TFormattedMultiSzFields::apWebSvcExtRestrictionList
|
|
};
|
|
|
|
//
|
|
// MimeMap
|
|
//
|
|
LPCWSTR TFormattedMultiSzFields::apMimeMaps[] =
|
|
{
|
|
L"Extension", L"MimeType", NULL
|
|
};
|
|
TFormattedMultiSz TFormattedMultiSzData::MimeMaps =
|
|
{
|
|
MD_MIME_MAP,
|
|
L"MimeMap",
|
|
L',',
|
|
TFormattedMultiSzFields::apMimeMaps
|
|
};
|
|
|
|
//
|
|
// Collection of Formatted MultiSz's
|
|
//
|
|
TFormattedMultiSz* TFormattedMultiSzData::apFormattedMultiSz[] =
|
|
{
|
|
&CustomErrorDescriptions,
|
|
&HttpCustomHeaders,
|
|
&HttpErrors,
|
|
&ScriptMaps,
|
|
&SecureBindings,
|
|
&ServerBindings,
|
|
&ApplicationDependencies,
|
|
&WebSvcExtRestrictionList,
|
|
&MimeMaps,
|
|
NULL
|
|
};
|