1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
// This file was automatically generated from XmlOutputMessages.msg by msggen.pl.
#include "Message.h"
#ifdef SP_NAMESPACE
namespace SP_NAMESPACE {
#endif
struct XmlOutputMessages {
// 100
static const MessageType1 sdataEntityReference;
// 101
static const MessageType1 externalDataEntityReference;
// 102
static const MessageType1 subdocEntityReference;
// 103
static const MessageType0 piQuestionLt;
// 104
static const MessageType0 piNoName;
// 105
static const MessageType1 externalDataNdata;
// 106
static const MessageType1 notationAttributes;
// 107
static const MessageType1 cannotConvertFsiToUrl;
};
const MessageType1 XmlOutputMessages::sdataEntityReference(
MessageType::warning,
MessageFragment::appModule,
100
#ifndef SP_NO_MESSAGE_TEXT
,"reference to internal SDATA entity %1 not allowed in XML"
#endif
);
const MessageType1 XmlOutputMessages::externalDataEntityReference(
MessageType::warning,
MessageFragment::appModule,
101
#ifndef SP_NO_MESSAGE_TEXT
,"reference to external data entity %1 not allowed in XML"
#endif
);
const MessageType1 XmlOutputMessages::subdocEntityReference(
MessageType::warning,
MessageFragment::appModule,
102
#ifndef SP_NO_MESSAGE_TEXT
,"reference to subdocument entity %1 not allowed in XML"
#endif
);
const MessageType0 XmlOutputMessages::piQuestionLt(
MessageType::warning,
MessageFragment::appModule,
103
#ifndef SP_NO_MESSAGE_TEXT
,"processing instruction containing \"?>\" not allowed in XML"
#endif
);
const MessageType0 XmlOutputMessages::piNoName(
MessageType::warning,
MessageFragment::appModule,
104
#ifndef SP_NO_MESSAGE_TEXT
,"XML requires processing instructions to start with a name"
#endif
);
const MessageType1 XmlOutputMessages::externalDataNdata(
MessageType::warning,
MessageFragment::appModule,
105
#ifndef SP_NO_MESSAGE_TEXT
,"external data entity %1 is CDATA or SDATA, but XML allows only NDATA"
#endif
);
const MessageType1 XmlOutputMessages::notationAttributes(
MessageType::warning,
MessageFragment::appModule,
106
#ifndef SP_NO_MESSAGE_TEXT
,"attributes were defined for notation %1; not allowed in XML"
#endif
);
const MessageType1 XmlOutputMessages::cannotConvertFsiToUrl(
MessageType::warning,
MessageFragment::appModule,
107
#ifndef SP_NO_MESSAGE_TEXT
,"cannot convert formal system identifier %1 to URL"
#endif
);
#ifdef SP_NAMESPACE
}
#endif
|