We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Material collection It seems that working with XML files is more or less the same in Cuis, Squeak and Pharo.
https://wiki.squeak.org/squeak/505
XMLDOMParser https://wiki.squeak.org/squeak/6342
Hernan Morales Durand: blog https://80738163270632.blogspot.com/2015/02/pharo-smalltalk-scripts-part-1.html
(XMLDOMParser parseFileNamed: 'fao_country_names.xml') firstNode allElementsSelect: [ : each | each localName = 'geographical_region' ].
Note that #parseFileNamed: is Pharo specific.
Pharo https://github.com/SquareBracketAssociates/Booklet-XML
https://archive.org/details/St4u202XmlParsingInPharo https://books.pharo.org/booklet-Scraping/html/scrapingbook.html
https://github.com/SquareBracketAssociates/Booklet-XML/blob/master/Chapters/XMLPullParser.md (not implemented in Cuis)
https://wiki.squeak.org/squeak/6433
from the Squeak help XML tutorial
| doc | doc := HTTPClient httpGetDocument: 'http://source.squeak.org/trunk/feed.rss'. XMLDOMParser parseDocumentFrom: (ReadStream on: (doc content)).
https://wiki.squeak.org/squeak/6338
SVG construction example 2 - rect (rectangle) and text (XMLElement) https://wiki.squeak.org/squeak/6438