Makefiles regenerated
authorJan Vrany <jan.vrany@fit.cvut.cz>
Sat, 20 Jun 2009 20:32:35 +0000
changeset 122 44903fb09c08
parent 121 ba491a6c2555
child 123 679becd265ea
Makefiles regenerated
xmlreaderimpl/trunk/stx_goodies_xmlsuite_xmlreaderimpl.st
--- a/xmlreaderimpl/trunk/stx_goodies_xmlsuite_xmlreaderimpl.st	Sat Jun 20 15:10:19 2009 +0000
+++ b/xmlreaderimpl/trunk/stx_goodies_xmlsuite_xmlreaderimpl.st	Sat Jun 20 20:32:35 2009 +0000
@@ -7,15 +7,9 @@
 	category:'* Projects & Packages *'
 !
 
+
 !stx_goodies_xmlsuite_xmlreaderimpl class methodsFor:'description'!
 
-preLoadAction
-	ObjectFileLoader searchedLibraries:
-	        (ObjectFileLoader searchedLibraries asOrderedCollection
-			add: '/usr/lib/libexpat.so';
-			yourself) asArray
-
-!
 postLoadAction
 
     | packageDir expatXMLReaderLib |
@@ -40,6 +34,14 @@
 
 !
 
+preLoadAction
+	ObjectFileLoader searchedLibraries:
+	        (ObjectFileLoader searchedLibraries asOrderedCollection
+			add: '/usr/lib/libexpat.so';
+			yourself) asArray
+
+!
+
 preRequisites
     ^ #(
         #'stx:goodies/xml/vw'    "XML::XMLParser - superclass of XMLv2::VWXMLReader::XMLParser "
@@ -57,11 +59,13 @@
     ^ #(
         "<className> or (<className> attributes...) in load order"
         (#'XMLv2::ExpatXMLReader' autoload)
-	(#'XMLv2::XercesCXMLReader' autoload)
+        (#'XMLv2::XercesCXMLReader' autoload)
         #'XMLv2::VWSAXBuilder'
         #'XMLv2::VWXMLReader'
         #'stx_goodies_xmlsuite_xmlreaderimpl'
     )
+
+    "Modified: / 20-06-2009 / 22:31:39 / Jan Vrany <vranyj1@fel.cvut.cz>"
 !
 
 extensionMethodNames
@@ -95,3 +99,17 @@
     ^ 'Smalltalk/X'
 ! !
 
+!stx_goodies_xmlsuite_xmlreaderimpl class methodsFor:'description - svn'!
+
+svnRevisionNr
+    "Return a SVN revision number of myself.
+     This number is updated after a commit"
+
+    ^ "$SVN-Revision:"nil"$"
+! !
+
+!stx_goodies_xmlsuite_xmlreaderimpl class methodsFor:'documentation'!
+
+version
+    ^'$Id$'
+! !