core/stx_goodies_xmlsuite_core.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 25 Jan 2016 16:35:43 +0000
changeset 298 9696f76605bd
parent 296 ea3dbc023c80
child 300 b6d834208d33
permissions -rw-r--r--
Added C:\MINGW\MSYS\1.0\bin to PATH when building expat. Some systems have it installed there (such as SWING Jenkins servers)

"{ Package: 'stx:goodies/xmlsuite/core' }"

LibraryDefinition subclass:#stx_goodies_xmlsuite_core
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'* Projects & Packages *'
!


!stx_goodies_xmlsuite_core class methodsFor:'description'!

excludedFromPreRequisites  
    "list packages which are to be explicitely excluded from the automatic constructed
     prerequisites list. If empty, everything that is found along the inheritance of any of
     my classes is considered to be a prerequisite package."

    ^ #(
        #'stx:goodies/xmlsuite/xmlreaderimpl'
        #'stx:goodies/sunit'
        
    )

    "Modified: / 17-08-2006 / 19:48:59 / cg"
    "Created: / 20-06-2009 / 16:50:18 / Jan Vrany <vranyj1@fel.cvut.cz>"
    "Modified: / 10-01-2010 / 11:07:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
!

mandatoryPreRequisites
    "list all required mandatory packages.
     Packages are mandatory, if they contain superclasses of the package's classes
     or classes which are extended by this package.
     This list can be maintained manually or (better) generated and
     updated by scanning the superclass hierarchies
     (the browser has a menu function for that)
     However, often too much is found, and you may want to explicitely
     exclude individual packages in the #excludedFromPreRequisites method."

    ^ #(
        #'stx:libbasic'    "Error - superclass of XMLv2::ParseError "
        #'stx:libview2'    "Model - superclass of XMLv2::DOM3Inspector "
        #'stx:libwidg2'    "HierarchicalItem - superclass of XMLv2::DOM3Inspector::DOM3NodeItem "
    )
!

preRequisites
    "list all required packages.
     This list can be maintained manually or (better) generated and
     updated by scanning the superclass hierarchies and looking for
     global variable accesses. (the browser has a menu function for that)
     Howevery, often too much is found, and you may want to explicitely
     exclude individual packages in the #excludedFromPrerequisites method."

    ^ #(
        #'stx:goodies/xml/vw'
        #'stx:libbasic'    "Autoload - superclass of XMLv2::NodeNameTests "
        #'stx:libbasic2'    "URI - referenced by XMLv2::InputSource>>getSystemId "
        #'stx:libcomp'
        #'stx:libtool'    "InspectorView - referenced by XMLv2::DOM3Inspector>>domNodeInspectorView "
        #'stx:libview'    "Color - referenced by XMLv2::IndentingAndHighlightingXMLWriter class>>commentColor "
        #'stx:libview2'    "ApplicationModel - superclass of XMLv2::DOM3Inspector "
        #'stx:libwidg2'    "HierarchicalItem - superclass of XMLv2::DOM3Inspector::DOM3NodeItem "
    )
!

referencedPreRequisites
    "list all packages containing classes referenced by the packages's members.
     This list can be maintained manually or (better) generated and
     updated by looking for global variable accesses
     (the browser has a menu function for that)
     However, often too much is found, and you may want to explicitely
     exclude individual packages in the #excludedFromPreRequisites method."

    ^ #(
        #'stx:libbasic2'    "Random - referenced by XMLv2::XMLGenerator>>generateElement: "
        #'stx:libtool'    "InspectorView - referenced by XMLv2::DOM3Inspector>>domNodeInspectorView "
        #'stx:libview'    "Color - referenced by XMLv2::IndentingAndHighlightingXMLWriter class>>normalColor "
    )
!

subProjects
    "list packages which are known as subprojects.
     The generated makefile will enter those and make there as well.
     However: they are not forced to be loaded when a package is loaded;
     for those, redefine requiredPrerequisites"

    ^ #(
    )
! !

!stx_goodies_xmlsuite_core class methodsFor:'description - contents'!

classNamesAndAttributes
    "lists the classes which are to be included in the project.
     Each entry in the list may be: a single class-name (symbol),
     or an array-literal consisting of class name and attributes.
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."

    ^ #(
        "<className> or (<className> attributes...) in load order"
        (#'XMLv2::AbstractDOM3TestCase' autoload)
        #'XMLv2::AbstractSAX2Handler'
        (#'XMLv2::AbstractW3CDOM3TestCase' autoload)
        #'XMLv2::DOM3Inspector'
        #'XMLv2::DOM3NodeDumper'
        (#'XMLv2::DOM3Tests' autoload)
        (#'XMLv2::DOMBuilder' autoload)
        #'XMLv2::DOMConfiguration'
        #'XMLv2::DOMError'
        #'XMLv2::DOMErrorHandler'
        #'XMLv2::DOMErrorMonitor'
        #'XMLv2::DOMImplementation'
        #'XMLv2::DOMImplementationRegistry'
        (#'XMLv2::EncodingTests' autoload)
        #'XMLv2::InputSource'
        (#'XMLv2::JamesClarkCanonicalXMLWriterTestResource' autoload)
        (#'XMLv2::JamesClarkCanonicalXMLWriterTests' autoload)
        (#'XMLv2::JamesClarkXMLTests' autoload)
        #'XMLv2::NameList'
        #'XMLv2::Node'
        #'XMLv2::NodeList'
        #'XMLv2::NodeName'
        (#'XMLv2::NodeNameTests' autoload)
        (#'XMLv2::OASISXMLTests' autoload)
        #'XMLv2::ParseError'
        #'XMLv2::Parser'
        #'XMLv2::SAXError'
        #'XMLv2::TypeInfo'
        #'XMLv2::UserDataHandler'
        (#'XMLv2::W3XMLTestSuiteResource' autoload)
        #'XMLv2::XMLBuilder'
        (#'XMLv2::XMLBuilderTests' autoload)
        #'XMLv2::XMLEventRecorder'
        #'XMLv2::XMLReader'
        #'XMLv2::XMLReaderImplementationQuery'
        (#'XMLv2::XMLReaderTests' autoload)
        #'XMLv2::XMLWriter'
        (#'XMLv2::XMLWriterTests' autoload)
        #'stx_goodies_xmlsuite_core'
        #'XMLv2::Attr'
        #'XMLv2::CharacterData'
        (#'XMLv2::CincomDOMXMLReader' autoload)
        (#'XMLv2::CincomImplementation' autoload)
        #'XMLv2::ContentHandler'
        #'XMLv2::DOM3XMLReader'
        #'XMLv2::DOMException'
        #'XMLv2::DTDHandler'
        #'XMLv2::Document'
        #'XMLv2::DocumentFragment'
        #'XMLv2::DocumentType'
        #'XMLv2::Element'
        #'XMLv2::Entity'
        #'XMLv2::EntityReference'
        #'XMLv2::EntityResolver'
        #'XMLv2::ErrorHandler'
        #'XMLv2::IndentingXMLWriter'
        (#'XMLv2::JamesClarkCanonicalXMLWriter' autoload)
        #'XMLv2::NamedNodeMap'
        (#'XMLv2::NodeTests' autoload)
        #'XMLv2::Notation'
        #'XMLv2::ProcessingInstruction'
        #'XMLv2::SAXParseError'
        (#'XMLv2::W3CDOM3CoreTests' autoload)
        #'XMLv2::XMLGenerator'
        #'XMLv2::XMLSuiteDOM3Implementation'
        #'XMLv2::Attributes'
        #'XMLv2::CDATASection'
        #'XMLv2::Comment'
        #'XMLv2::DOM3Builder'
        #'XMLv2::IndentingAndHighlightingXMLWriter'
        (#'XMLv2::OldXMLWriter' autoload)
        #'XMLv2::Text'
        (#'XMLv2::XMLSyntaxHighlightingWriter' autoload)
    )
!

extensionMethodNames
    "lists the extension methods which are to be included in the project.
     Entries are 2-element array literals, consisting of class-name and selector."

    ^ #(
        Character isInXMLCharSpec:
        Character isXMLBaseChar
        Character isXMLChar
        Character isXMLCombiningChar
        Character isXMLDigit
        Character isXMLExtender
        Character isXMLIdeographic
        Character isXMLLetter
        Character isXMLPubidChar
        Character isXMLWhiteSpace
        CharacterArray asJamesClarkCanonicalXMLEscapedString
        CharacterArray asXMLEscapedString
        Character xmlBaseCharValues
        Character xmlCombiningCharValues
        Character xmlDigitValues
        Character xmlExtenderValues
    )
! !

!stx_goodies_xmlsuite_core class methodsFor:'description - project information'!

companyName
    "Return a companyname which will appear in <lib>.rc"

    ^ 'eXept Software AG'
!

description
    "Return a description string which will appear in vc.def / bc.def"

    ^ 'Smalltalk/X Class library'
!

legalCopyright
    "Return a copyright string which will appear in <lib>.rc"

    ^ 'Copyright Claus Gittinger 1988-2008\nCopyright eXept Software AG 1998-2008'
!

productName
    "Return a product name which will appear in <lib>.rc"

    ^ 'Smalltalk/X'
! !

!stx_goodies_xmlsuite_core class methodsFor:'description - svn'!

svnRepositoryUrlString
    "Return a SVN repository URL of myself.
     (Generated since 2011-04-08)
    "        

    ^ '$URL$'
!

svnRevisionNr
    "Return a SVN revision number of myself.
     This number is updated after a commit"

    ^ "$SVN-Revision:"'287M'"$"
! !

!stx_goodies_xmlsuite_core class methodsFor:'documentation'!

version
    ^'$Id$'
!

version_SVN
    ^ '$Id$'
! !