ChangesBrowser.st
changeset 4832 35c12a27b8bd
parent 4762 ff173a690f0f
child 4857 a44999f84640
equal deleted inserted replaced
4831:06c495d1916b 4832:35c12a27b8bd
   653     "read an XML source file (format as in campSmalltalk DTD)"
   653     "read an XML source file (format as in campSmalltalk DTD)"
   654 
   654 
   655     |changeSet|
   655     |changeSet|
   656 
   656 
   657     (XML isNil or:[XML::SourceNodeBuilder isNil or:[XML::XMLParser isNil]]) ifTrue:[
   657     (XML isNil or:[XML::SourceNodeBuilder isNil or:[XML::XMLParser isNil]]) ifTrue:[
   658         Smalltalk loadPackage:'stx:goodies/xml-vw'.
   658         Smalltalk loadPackage:'stx:goodies/xml/vw'.
   659         (XML isNil or:[XML::SourceNodeBuilder isNil or:[XML::XMLParser isNil]]) ifTrue:[
   659         (XML isNil or:[XML::SourceNodeBuilder isNil or:[XML::XMLParser isNil]]) ifTrue:[
   660             self error:'Could not load XML package(s) from ''stx:goodies/xml-vw'''.
   660             self error:'Could not load XML package(s) from ''stx:goodies/xml/vw'''.
   661         ]
   661         ]
   662     ].
   662     ].
   663 
   663 
   664     changeSet := ChangeSet new.
   664     changeSet := ChangeSet new.
   665     XML::SourceScannerNodeBuilder new 
   665     XML::SourceScannerNodeBuilder new 
  5455 ! !
  5455 ! !
  5456 
  5456 
  5457 !ChangesBrowser class methodsFor:'documentation'!
  5457 !ChangesBrowser class methodsFor:'documentation'!
  5458 
  5458 
  5459 version
  5459 version
  5460     ^ '$Header: /cvs/stx/stx/libtool/ChangesBrowser.st,v 1.292 2003-04-02 16:28:40 cg Exp $'
  5460     ^ '$Header: /cvs/stx/stx/libtool/ChangesBrowser.st,v 1.293 2003-04-23 09:47:02 cg Exp $'
  5461 ! !
  5461 ! !