Simple XML Creator
By Canol Gökel - Posted on August 31st, 2011
Tagged: simple xml ccreator
• xml
Hello,
This is an extremely simple XML creator to create simple XML files quickly. The usage is like this:
html := XMLNode new: 'html'. body := html add: (XMLNode new: 'body'). body at: 'bgcolor' put: '#ff0000'. h1 := body add: (XMLNode new: 'h1'). h1 value: 'My Heading'. p := body add: (XMLNode new: 'p'). p value: 'My paragraph'. html fileOut: '/home/myhome/sample.xml'.
Which creates an XML file with the following content:
<html>
<body bgcolor="#ff0000">
<h1>My Heading</h1>
<p>My paragraph</p>
</body>
</html>
You can download the package via:
gst-package --download SimpleXMLCreator -t ~/.st
or from:
http://www.canol.info/smalltalk/packages/SimpleXMLCreator.star (Non-GNU Smalltalkers can open the star package with their archive manager to look at the code, it is just a zip file)
