mpfserver Manual
 
 
 Setup | creating text-libraries
create a text-library file
1) create xml-file
create a text-file and rename it to "myfile.xml". then open created file with any text-editor and add the following code:
2) add root-node
<?xml version="1.0" encoding="ISO-8859-1"?>
<langlib>
...
</langlib>

name of root-node must be lowercase and must end with "lib" (name of tag will become name of library-token)

attributes of root-node will be ignored
3) add child-nodes
<?xml version="1.0" encoding="ISO-8859-1"?>
<langlib>

  <privacy>
    <![CDATA[Privacy Policy]]>
  </privay>

  <tm>
    <![CDATA[&#153; Trademark]]>
  </tm>
  
</langlib>

all child nodes must be lowercase and must not be named like root node

attributes of child-nodes attributes will be ignored

if data of your child-nodes contain special characters (that are not compliant with XML) put them between CDATA-brackets
 
 
2004 by master-p-formance.All rights reserved.
 
This manual is generated on the fly using mpfserver and MPFT (mpf transformation).