'From Squeak3.5 of ''11 April 2003'' [latest update: #5180] on 13 April 2003 at 1:17:36 pm'! "Change Set: FixProjectsList-sbw Date: 6 April 2002 Author: Stephan B. Wessels The change set fixes the project hierarchy display. Changes include: Fix the contents of the #showProjectHierarchyInWindow. Date Update ------------- ----------------------------------------------------------------------------------- 13-Apr-2003 Updated for Squeak 3.5. Problem has not been addressed yet. 06-apr-2002 Initial release. "! !Project class methodsFor: 'utilities' stamp: 'sbw 4/13/2003 12:53'! projectHierarchy "Answer a string representing all the projects in the system in hierarchical order." "Project projectHierarchy" ^ String streamContents: [:aStream | self hierarchyOfNamesAndProjects do: [:aPair | aStream nextPutAll: aPair first; cr]]! !