projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
don't need AC_CXX_DYNAMIC_CAST for now
[wxWidgets.git]
/
src
/
xml
/
xml.cpp
diff --git
a/src/xml/xml.cpp
b/src/xml/xml.cpp
index ab40593bede751e0241b07634062c65743a82d35..079b6b46fb62caa0d58c764a084d29f7a6180bd9 100644
(file)
--- a/
src/xml/xml.cpp
+++ b/
src/xml/xml.cpp
@@
-156,8
+156,8
@@
wxString wxXmlNode::GetPropVal(const wxString& propName, const wxString& default
wxString tmp;
if (GetPropVal(propName, &tmp))
return tmp;
wxString tmp;
if (GetPropVal(propName, &tmp))
return tmp;
- else
-
return defaultVal;
+
+ return defaultVal;
}
void wxXmlNode::AddChild(wxXmlNode *child)
}
void wxXmlNode::AddChild(wxXmlNode *child)
@@
-287,7
+287,7
@@
wxXmlDocument::wxXmlDocument()
}
wxXmlDocument::wxXmlDocument(const wxString& filename, const wxString& encoding)
}
wxXmlDocument::wxXmlDocument(const wxString& filename, const wxString& encoding)
-
:
wxObject(), m_root(NULL)
+
:
wxObject(), m_root(NULL)
{
if ( !Load(filename, encoding) )
{
{
if ( !Load(filename, encoding) )
{
@@
-296,7
+296,7
@@
wxXmlDocument::wxXmlDocument(const wxString& filename, const wxString& encoding)
}
wxXmlDocument::wxXmlDocument(wxInputStream& stream, const wxString& encoding)
}
wxXmlDocument::wxXmlDocument(wxInputStream& stream, const wxString& encoding)
-
:
wxObject(), m_root(NULL)
+
:
wxObject(), m_root(NULL)
{
if ( !Load(stream, encoding) )
{
{
if ( !Load(stream, encoding) )
{
@@
-305,6
+305,7
@@
wxXmlDocument::wxXmlDocument(wxInputStream& stream, const wxString& encoding)
}
wxXmlDocument::wxXmlDocument(const wxXmlDocument& doc)
}
wxXmlDocument::wxXmlDocument(const wxXmlDocument& doc)
+ :wxObject()
{
DoCopy(doc);
}
{
DoCopy(doc);
}
@@
-370,7
+371,7
@@
inline static wxString CharToString(wxMBConv *conv,
return str;
}
else
return str;
}
else
- return wxString(s, len);
+ return wxString(s, len
!= wxSTRING_MAXLEN ? len : strlen(s)
);
#endif
}
#endif
}
@@
-482,7
+483,8
@@
static int UnknownEncodingHnd(void * WXUNUSED(encodingHandlerData),
// We must build conversion table for expat. The easiest way to do so
// is to let wxCSConv convert as string containing all characters to
// wide character representation:
// We must build conversion table for expat. The easiest way to do so
// is to let wxCSConv convert as string containing all characters to
// wide character representation:
- wxCSConv conv(wxString(name, wxConvLibc));
+ wxString str(name, wxConvLibc);
+ wxCSConv conv(str);
char mbBuf[2];
wchar_t wcBuf[10];
size_t i;
char mbBuf[2];
wchar_t wcBuf[10];
size_t i;
@@
-499,7
+501,7
@@
static int UnknownEncodingHnd(void * WXUNUSED(encodingHandlerData),
}
info->map[i+1] = (int)wcBuf[0];
}
}
info->map[i+1] = (int)wcBuf[0];
}
-
+
info->data = NULL;
info->convert = NULL;
info->release = NULL;
info->data = NULL;
info->convert = NULL;
info->release = NULL;
@@
-584,7
+586,12
@@
bool wxXmlDocument::Load(wxInputStream& stream, const wxString& encoding)
// write string to output:
inline static void OutputString(wxOutputStream& stream, const wxString& str,
// write string to output:
inline static void OutputString(wxOutputStream& stream, const wxString& str,
- wxMBConv *convMem, wxMBConv *convFile)
+#if wxUSE_UNICODE
+ wxMBConv * WXUNUSED(convMem),
+#else
+ wxMBConv *convMem,
+#endif
+ wxMBConv *convFile)
{
if (str.IsEmpty()) return;
#if wxUSE_UNICODE
{
if (str.IsEmpty()) return;
#if wxUSE_UNICODE
@@
-604,7
+611,8
@@
inline static void OutputString(wxOutputStream& stream, const wxString& str,
// Same as above, but create entities first.
// Translates '<' to "<", '>' to ">" and '&' to "&"
static void OutputStringEnt(wxOutputStream& stream, const wxString& str,
// Same as above, but create entities first.
// Translates '<' to "<", '>' to ">" and '&' to "&"
static void OutputStringEnt(wxOutputStream& stream, const wxString& str,
- wxMBConv *convMem, wxMBConv *convFile)
+ wxMBConv *convMem, wxMBConv *convFile,
+ bool escapeQuotes = false)
{
wxString buf;
size_t i, last, len;
{
wxString buf;
size_t i, last, len;
@@
-616,7
+624,8
@@
static void OutputStringEnt(wxOutputStream& stream, const wxString& str,
{
c = str.GetChar(i);
if (c == wxT('<') || c == wxT('>') ||
{
c = str.GetChar(i);
if (c == wxT('<') || c == wxT('>') ||
- (c == wxT('&') && str.Mid(i+1, 4) != wxT("amp;")))
+ (c == wxT('&') && str.Mid(i+1, 4) != wxT("amp;")) ||
+ (escapeQuotes && c == wxT('"')))
{
OutputString(stream, str.Mid(last, i - last), convMem, convFile);
switch (c)
{
OutputString(stream, str.Mid(last, i - last), convMem, convFile);
switch (c)
@@
-630,6
+639,9
@@
static void OutputStringEnt(wxOutputStream& stream, const wxString& str,
case wxT('&'):
OutputString(stream, wxT("&"), NULL, NULL);
break;
case wxT('&'):
OutputString(stream, wxT("&"), NULL, NULL);
break;
+ case wxT('"'):
+ OutputString(stream, wxT("""), NULL, NULL);
+ break;
default: break;
}
last = i + 1;
default: break;
}
last = i + 1;
@@
-665,10
+677,11
@@
static void OutputNode(wxOutputStream& stream, wxXmlNode *node, int indent,
prop = node->GetProperties();
while (prop)
{
prop = node->GetProperties();
while (prop)
{
- OutputString(stream, wxT(" ") + prop->GetName() +
- wxT("=\"") + prop->GetValue() + wxT("\""),
+ OutputString(stream, wxT(" ") + prop->GetName() + wxT("=\""),
NULL, NULL);
NULL, NULL);
- // FIXME - what if prop contains '"'?
+ OutputStringEnt(stream, prop->GetValue(), NULL, NULL,
+ true/*escapeQuotes*/);
+ OutputString(stream, wxT("\""), NULL, NULL);
prop = prop->GetNext();
}
prop = prop->GetNext();
}