Questions tagged [microxml]

MicroXML is a subset of XML intended for use in contexts where full XML is, or is perceived to be, too large and complex.

MicroXML is a subset of XML intended for use in contexts where full XML is, or is perceived to be, too large and complex. MicroXML provides a set of rules for defining markup languages intended for use in encoding data objects, and specifies behavior for certain software modules that access them.

3 questions
5
votes
1 answer

Are there specifications for simplified subsets of XML?

When I first heard about the W3C-backed MicroXML, I thought of an idea I read somewhere years ago: a simpler subset of the XML specification without attributes (and without namespaces IIRC). The theory is that such a spec would allow simpler, faster…
Jens Bannmann
  • 4,845
  • 5
  • 49
  • 76
0
votes
1 answer

Extracting data from an XML file

I use Mini-XML to save and handle data in my project, this is the code : #include int main() { FILE *fp; mxml_node_t *tree, *data, *b; int action_num1; fp = fopen(FILE_PATH, "r"); if (fp!=NULL) { tree…
Anis_Stack
  • 3,306
  • 4
  • 30
  • 53
0
votes
1 answer

minixml issue when the txt value contains space

I have the following xml file:
text with space
If I load the xml file in the mxml node tree with mxmlLoadFile(), then I will get 3 MXML_TXT childs under the tag MXML_ELEMENT. each child contains a substring. The first…
MOHAMED
  • 41,599
  • 58
  • 163
  • 268