[Pkg] Packages: Packages-Squeak310-kph.44.mcz

squeaksource-noreply at iam.unibe.ch squeaksource-noreply at iam.unibe.ch
Mon Aug 18 00:34:53 UTC 2008


A new version of Packages-Squeak310 was added to project Packages:
http://www.squeaksource.com/Packages/Packages-Squeak310-kph.44.mcz

==================== Summary ====================

Name: Packages-Squeak310-kph.44
Author: kph
Time: 18 August 2008, 1:34:44 am
UUID: 7e192892-007d-41fe-b71d-a6370a1da50a
Ancestors: Packages-Squeak310-dc.43

regenerated

use default actions

=============== Diff against Packages-Squeak310-dc.43 ===============

Item was changed:
  ----- Method: PackagesSqueak310U>>Monticello2Squeak (in category 'Group Development') -----
  Monticello2Squeak
  
  	self name: 'Monticello2-Squeak'.
  	self version: '0.62'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'Monticello is a distributed version control system.
  
  Monticello 2 addresses the problems we encountered with Monticello 1. They mostly stem from a common cause: its unit of versioning, the package, is too coarse for many situations that arise in normal development.
  
  This package provides Squeak-specific classes.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://wiki.squeak.org/squeak/5624'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Monticello2/MC2-Squeak-dc.62.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Monticello2-Core').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Monticello2/MC2-Squeak-dc.62.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Monticello2-Squeak'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ClassSelectorSets (in category 'Model Extension') -----
  ClassSelectorSets
  
  	self name: 'ClassSelectorSets'.
  	self version: '1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'Regroup methods on Behavior, Class, Trait... which provide browsing helpful functionalities like conflicting selectors, overriding selectors...'.
  	info maintainer: 'Damien Cassou'.
  	info homepage: 'http://www.squeaksource.com/ClassSelectorSets.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ClassSelectorSets/ClassSelectorSets-dc.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ClassSelectorSets/ClassSelectorSets-dc.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ClassSelectorSets'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SwazooHTTP (in category 'Network') -----
  SwazooHTTP
  
  	self name: 'Swazoo-HTTP'.
  	self version: '7'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'A portable set of classes that model HTTP requests and responses, that form a base on which a web server could be built.  With suitable extensions, these could also be used for an HTTP client library.
  
  See *Swazoo-Server* for the original, portable server code that used these, or *Swazoo-Listener* for a much simplified, Squeak-specific server.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Swazoo-HTTP-avi.7.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Swazoo-HTTP-avi.7.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Swazoo-HTTP'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierSecurity (in category 'Web Development') -----
  PierSecurity
  
  	self name: 'Pier-Security'.
  	self version: '1.0.16.105'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Pier Unix security plugin.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pier/Pier-Security-lr.105.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Seaside' 'Pier-Tests').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pier/Pier-Security-lr.105.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Security'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Launcher (in category 'IDE') -----
  Launcher
  
  	self name: 'Launcher'.
  	self version: '1.0.62'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'IDE'.
  	info description: 
  'A Launcher provides squeak with a range of capabilities that are intended to be used from the command line.
  
  As a design goal, the startup process can invoke Launcher several times at several points in the startup sequence. In particular 1) below aims to provide a mechanism for getting into images that are broken in some form, so as to enable a script to be run before morphic has attempted to startup.
  
  1) Launcher is registered to handle startup notification after Security manager
  any class which wishes to provide a service to be usable at this time implements startFrom:
  
  2) Launcher is wired in to ProjectLauncher to handle startup notification when squeak is fully initialized. Any class wishing to provide a service to be usable at this time implements launchFrom:
  
  #startFrom: and #launchFrom: are called providing a handle to the launcher which may be used to obtain parameters using the desired scheme. 
  
  a) launcher getParameters . key=value +yes -no
  b) launcher getParametersOldStyle . key value key2 value2
  
   
   '.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: 'http://www.squeaksource.com/Installer.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Installer/Launcher-Core-kph.62.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Installer/Launcher-Core-kph.62.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Launcher'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SUnitGUIimproved (in category 'Development') -----
  SUnitGUIimproved
  
  	self name: 'SUnitGUI-improved'.
  	self version: '4.0.48'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Improved TestRunner
  
  - pane for selecting published suites and filtering
  - can report results to a file via TestReporter.'.
  	info maintainer: 'kph'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Testing/SUnitGUI-dc.48.mcz'.
  	self provides: #().
  
  	self dependsOn: #('SUnit-improved').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Testing/SUnitGUI-dc.48.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SUnitGUI-improved'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>AXAnnouncements (in category 'Model Extension') -----
  AXAnnouncements
  
  	self name: 'AXAnnouncements'.
  	self version: '1.0.31'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'Squeak implementation of Announcements Framework based on Vassili Bykov''s blog.
  '.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: 'http://www.squeaksource.com/AXAnnouncements.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/AXAnnouncements/AXAnnouncements-ul.31.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/AXAnnouncements/AXAnnouncements-ul.31.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'AXAnnouncements'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ToolBuilderMVC (in category 'Tools') -----
  ToolBuilderMVC
  
  	self name: 'ToolBuilder-MVC'.
  	self version: '14'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Tools'.
  	info description: 
  'This is the MVC package for ToolBuilder.'.
  	info maintainer: 'Michael van der Gulik'.
  	info homepage: 'http://www.squeaksource.com/ToolBuilder'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ToolBuilder/ToolBuilder-MVC-dc-14.mcz'.
  	self provides: #('ToolBuilder-Implementation').
  
  	self dependsOn: #('ToolBuilder-Kernel').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ToolBuilder/ToolBuilder-MVC-dc-14.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ToolBuilder-MVC'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SeasidePlotKitbeta (in category 'Web Development') -----
  SeasidePlotKitbeta
  
  	self name: 'Seaside-PlotKit-beta'.
  	self version: '0.9.1.26'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Seaside goodies. Includes different charts libraries and other cool stuff for seaside applications. SeaChart components are standard Seaside components that you can embed into your Seaside application.
  
  Seaside bindings for PlotKit (http://www.liquidx.net/plotkit). PlotKit is a Chart and Graph Plotting Library for Javascript.
  
  Includes dependency upon HTML5 package which is no longer in seaside.'.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: 'http://seachart.seasidehosting.st/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/seachart/PlotKit-0.9.1-mb.27.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Seaside-HTML5-beta' 'Seaside-beta').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/seachart/PlotKit-0.9.1-mb.27.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Seaside-PlotKit-beta'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierTagCloud (in category 'Web Development') -----
  PierTagCloud
  
  	self name: 'Pier-TagCloud'.
  	self version: '1.0.16.10'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Pier tag cloud plugin.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pieraddons/Pier-TagCloud-lr.10.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pieraddons/Pier-TagCloud-lr.10.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-TagCloud'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>IRCBot (in category 'Network') -----
  IRCBot
  
  	self name: 'IRCBot'.
  	self version: '2.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'see homepage for instructions on how to use and set up the bot.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Network-IRC%20Bot.st'.
  	self provides: #().
  
  	self dependsOn: #('IRCe').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Network-IRC%20Bot.st'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'IRCBot'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Swazoo (in category 'Network') -----
  Swazoo
  
  	self name: 'Swazoo'.
  	self version: '2.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'Swazoo (Smalltalk Web Application Zoo) is an open source, vendor agnostic, dialect neutral Smalltalk web server with resource and web request resolution framework.
  
  Main new feature: SwazooServer startOn: aPort will start on all IP interfaces, on any host.
  
  Other improvements:
  - auto restart sites which were running before image shutdown
  - reliability of serving directly on the wild wild Internet
  - SwazooServer watchdog instvar added, just that for now
  - HttpConnection is not closed anymore after 302 redirect
  - Connection: Keep-alive, if this header is in request then put that header in response too, even for HTTP/1.1
  - HttpConnection produceResponse closes connection after every non-GET, this solves 200 bad request error after two consecutive POSTs, but it is really a hack and original reason must be found!!
  - streaming in case of HTTP/1.0 protocol - not chunked; in case that length is known: stream but not chunked.
  - HTTPRequest isHttp10, isHttp11
  - SwazooBuffer to 8K
  - HTTPResponse printContentLength adds to headers too, for easier debugging
  - Improved and added many tests
  '.
  	info maintainer: 'mivsek'.
  	info homepage: 'http://www.swazoo.org/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Swazoo/Swazoo-2.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Sport').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Swazoo/Swazoo-2.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Swazoo'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OmniBrowserStandard (in category 'Code Browsing') -----
  OmniBrowserStandard
  
  	self name: 'OmniBrowser-Standard'.
  	self version: '0.345'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'OB-Standard represents the classical system browser implemented with the OmniBrowser framework.'.
  	info maintainer: 'Colin Putney'.
  	info homepage: 'http://source.wiresong.ca/ob/'.
  	info squeakMapID: ''.
  	info url: 'http://source.wiresong.ca/ob/OB-Standard-mtf.345.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.wiresong.ca/ob/OB-Standard-mtf.345.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OmniBrowser-Standard'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MagritteMorph (in category 'Morphs') -----
  MagritteMorph
  
  	self name: 'Magritte-Morph'.
  	self version: '1.0.16.42'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Morphs'.
  	info description: 
  'Magritte bindings for Morphic.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/magritte'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/magritte/Magritte-Morph-lr.42.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Magritte-Model').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/magritte/Magritte-Morph-lr.42.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magritte-Morph'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>FractalMorph (in category 'Morphs') -----
  FractalMorph
  
  	self name: 'FractalMorph'.
  	self version: '1.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Morphs'.
  	info description: 
  'see webpage http://minnow.cc.gatech.edu/squeak/2911 for descriptions.  
  Allows you to zoom in and out of a fractal image, possibly make small animations as well.  begin with (FractalMorph new
  openInWorld)'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/FractalMorph.2.cs'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/FractalMorph.2.cs'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'FractalMorph'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3DPlugins (in category 'Graphics') -----
  Balloon3DPlugins
  
  	self name: 'Balloon3D-Plugins'.
  	self version: '0.2.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-Plugins-ar.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Balloon3D-Constants' 'VMMaker').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-Plugins-ar.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D-Plugins'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MagritteModel (in category 'Development') -----
  MagritteModel
  
  	self name: 'Magritte-Model'.
  	self version: '1.0.16.313'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Most applications consist of a big number of model- or so called domain-objects. Building different views, editors, and reports; querying, validating and storing those objects is very repetitive and error-prone, if an object changes its shape frequently. Magritte is a fully dynamic meta-description framework that helps to solve those problems, while keeping the full power to the programmer in all aspects. Moreover since Magritte is described in itself, you can let your users modify the meta-world and add their own fields and forms without writing a single line of code.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/magritte'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/magritte/Magritte-Model-lr.313.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/magritte/Magritte-Model-lr.313.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magritte-Model'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>CryptographyTeamPackage (in category 'System') -----
  CryptographyTeamPackage
  
  	self name: 'Cryptography Team Package'.
  	self version: '1.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  ''.
  	info maintainer: 'rww'.
  	info homepage: 'http://www.squeaksource.com/Cryptography.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Cryptography/Cryptography-rww.5.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Cryptography/Cryptography-rww.5.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Cryptography Team Package'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Typeinference (in category 'Development') -----
  Typeinference
  
  	self name: 'Typeinference'.
  	self version: '1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'This is Francisco Garau''s TypeInferencer, as a SAR package.
  
  This does not contain the Morphic-Wrapper dependend
  parts.                                             
  
  For more information, see http://typeinference.swiki.net/1'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/TypeInference.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/TypeInference.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Typeinference'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OmniBrowserTraitsIntegration (in category 'Code Browsing') -----
  OmniBrowserTraitsIntegration
  
  	self name: 'OmniBrowser-TraitsIntegration'.
  	self version: '0.34'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'Brings trait-related features to OmniBrowser.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://source.wiresong.ca/ob/OB-TraitsIntegration-dc.34.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser' 'OmniBrowser-Standard').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.wiresong.ca/ob/OB-TraitsIntegration-dc.34.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OmniBrowser-TraitsIntegration'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>KernelExtkph (in category 'Kernel') -----
  KernelExtkph
  
  	self name: 'KernelExt-kph'.
  	self version: '3.10.53'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Kernel'.
  	info description: 
  'Adds split and join to collections/strings, with tests
  Adds firstOrNil.
  Adds << for streaming.
  Adds Null logger Object-log'.
  	info maintainer: 'kph <keith_hodges at yahoo.co.uk>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/311/Kernel-Extensions-kph.53.mcz'.
  	self provides: #('Null').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/311/Kernel-Extensions-kph.53.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'KernelExt-kph'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Magma10client (in category 'Persistence') -----
  Magma10client
  
  	self name: 'Magma 1.0 client'.
  	self version: 'r40'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Client, Server and Tester components for the Magma object database.
   '.
  	info maintainer: 'kph <keith_hodges at yahoo.co.uk>'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/2665'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Magma/Magma%201.0r40%20client%20configuration.mcm'.
  	self provides: #('Magma').
  
  	self dependsOn: #('MonticelloConfigurations').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Magma/Magma%201.0r40%20client%20configuration.mcm'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magma 1.0 client'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ToolBuilderExamples (in category 'Tools') -----
  ToolBuilderExamples
  
  	self name: 'ToolBuilder-Examples'.
  	self version: '4'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Tools'.
  	info description: 
  'These are some examples for ToolBuilder.'.
  	info maintainer: 'Andreas Raab'.
  	info homepage: 'http://www.squeaksource.com/ToolBuilder'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ToolBuilder/ToolBuilder-Examples-cwp.4.mcz'.
  	self provides: #().
  
  	self dependsOn: #('ToolBuilder-Kernel').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ToolBuilder/ToolBuilder-Examples-cwp.4.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ToolBuilder-Examples'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierShout (in category 'Web Development') -----
  PierShout
  
  	self name: 'Pier-Shout'.
  	self version: '1.0.16.7'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Pier Smalltalk syntax highlighting plugin.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pieraddons/ShoutPier-lr.7.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Seaside' 'Shout').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pieraddons/ShoutPier-lr.7.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Shout'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MonticelloConfigurations (in category 'Group Development') -----
  MonticelloConfigurations
  
  	self name: 'MonticelloConfigurations'.
  	self version: '1.0.44'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'Monticello Configurations 
  
  http://lists.squeakfoundation.org/pipermail/squeak-dev/2005-November/098181.html'.
  	info maintainer: 'kph <keith_hodges at yahoo.co.uk>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/mc/MonticelloConfigurations-kph.44.mcz'.
  	self provides: #('MonticelloConfigurations').
  
  	self dependsOn: #('MonticelloConfigurations-UniversesFix').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/mc/MonticelloConfigurations-kph.44.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'MonticelloConfigurations'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ScriptingWorkspace (in category 'Development') -----
  ScriptingWorkspace
  
  	self name: 'Scripting Workspace'.
  	self version: '1.22-apha'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'This is meant to be a workspace for people familiar with scriping languages like Javascript, Ruby, Python, or Perl. It gives the workspace the ability to add classes and methods.
  
  See ScriptingWorkspaceTest for examples.
  
  "Do This To See It"
  ScriptingWorkspace open'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/btb-ScriptingWorkspace-btb.22.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/btb-ScriptingWorkspace-btb.22.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Scripting Workspace'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Sandcastle (in category 'Web Development beta') -----
  Sandcastle
  
  	self name: 'Sandcastle'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development beta'.
  	info description: 
  'see version 0'.
  	info maintainer: 'tbn'.
  	info homepage: 'http://squeaksource.com/Sandcastle.html'.
  	info squeakMapID: ''.
  	info url: 'http://squeaksource.com/Sandcastle/Sandcastle-tbn.9.mcz'.
  	self provides: #().
  
  	self dependsOn: #('ExternalWebBrowser' 'Scriptaculous-beta' 'ShoreComponents-beta').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://squeaksource.com/Sandcastle/Sandcastle-tbn.9.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Sandcastle'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OmniBrowserTools (in category 'Development') -----
  OmniBrowserTools
  
  	self name: 'OmniBrowser-Tools'.
+ 	self version: '0.33'.
+ 	self worksIn: #( PackagesSqueak310U )
- 	self version: '0.31'.
  
  	info category: 'Development'.
  	info description: 
  'Set of tools (debugger, inspector...) rewritten on top of the OmniBrowser framework.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
+ 	info url: 'http://source.lukas-renggli.ch/omnibrowser/OB-Tools-lr.33.mcz'.
- 	info url: 'http://source.lukas-renggli.ch/omnibrowser/OB-Tools-lr.31.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser-Standard').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.lukas-renggli.ch/omnibrowser/OB-Tools-lr.31.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OmniBrowser-Tools'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ProcessSpecificLogging (in category 'System') -----
  ProcessSpecificLogging
  
  	self name: 'ProcessSpecific-Logging'.
  	self version: '1.0.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'Object-#log accesses SLLog, over-ridable on a per-process basis.'.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://gjallar.krampe.se/ProcessSpecific-Logging-kph.1.mcz'.
  	self provides: #('ProcessSpecific-Logging').
  
  	self dependsOn: #('ProcessSpecific' 'SimpleLog').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://gjallar.krampe.se/ProcessSpecific-Logging-kph.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ProcessSpecific-Logging'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ShoutOmniBrowser (in category 'Code Browsing') -----
  ShoutOmniBrowser
  
  	self name: 'ShoutOmniBrowser'.
  	self version: 'tween.5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'Brings colors to the OmniBrowser framework and browsers.'.
  	info maintainer: ''.
  	info homepage: 'http://www.squeaksource.com/shout'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/shout/ShoutOmniBrowser-dc.5.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser-Full' 'Shout').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/shout/ShoutOmniBrowser-dc.5.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ShoutOmniBrowser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>NileBase (in category 'Model Extension') -----
  NileBase
  
  	self name: 'Nile-Base'.
  	self version: '1.0.58'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'Nile is a complete reimplementation of the squeak stream hierarchy. It provides:
  
      * traits for code reuse.
      * lots of tests: same tests are used for the squeak stream hierarchy and Nile (they are implemented in traits).
      * lots of clients to verify the reusability.
      * a diagram of the implementation: http://damien.cassou.free.fr/documents/internship_2007/nile/complete_hierarchy.pdf '.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.squeaksource.com/Nile/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Nile/Nile-Base-dc.58.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Nile/Nile-Base-dc.58.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Nile-Base'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>WhiskerBrowser (in category 'Code Browsing') -----
  WhiskerBrowser
  
  	self name: 'Whisker Browser'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'Whisker is a different sort of object-oriented code browser for the Squeak Smalltalk environment.
  
  The goal of the Whisker Browser (a.k.a. Stacking Browser) is to provide a simple and intuitive way to view the contents of multiple classes and multiple methods simultaneously, while using screen real estate efficiently and not requiring a lot of window moving/resizing. It does this by introducing the concept of subpane stacking. The principles behind Whisker could potentially be used by browsers for other object-oriented languages (Java, Python, etc.).
  
  To open the Whisker Browser, use the ''open...''/''Whisker Browser'' menu item in the World menu.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Whisker1_0-Sq37.cs.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Whisker1_0-Sq37.cs.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Whisker Browser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>DNSClient (in category 'Network') -----
  DNSClient
  
  	self name: 'DNS Client'.
  	self version: '1.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'This package implements the DNS protocol (not all of it, but extending it is very easy). It includes a DNS client (a name resolver).
  
  Example (put the address of a name server):
  	NameResolver default servers: #((xxx xxx xxx xxx))
  	NameResolver default addressByName: ''squeak.org''
  
  This version adds reverse lookups (IP to name).'.
  	info maintainer: 'Jason Johnson <azreal1977 at hotmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/dnsclient'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/dnsclient'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'DNS Client'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PlotKit (in category 'Web Development') -----
  PlotKit
  
  	self name: 'PlotKit'.
  	self version: '0.9.1.27'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Seaside goodies. Includes different charts libraries and other cool stuff for seaside applications. SeaChart components are standard Seaside components that you can embed into your Seaside application.
  
  Seaside bindings for PlotKit (http://www.liquidx.net/plotkit). PlotKit is a Chart and Graph Plotting Library for Javascript.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://seachart.seasidehosting.st/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/seachart/PlotKit-0.9.1-mb.27.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/seachart/PlotKit-0.9.1-mb.27.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'PlotKit'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>eCompletion (in category 'Code Browsing') -----
  eCompletion
  
  	self name: 'eCompletion'.
  	self version: '0.89'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'Complete variables, selectors, class names in your browser, workspace, debugger and other code holders.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.squeaksource.com/eCompletion'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/eCompletion/ECompletion-dc.89.mcz'.
  	self provides: #().
  
  	self dependsOn: #('RoelTyper' 'Shout').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/eCompletion/ECompletion-dc.89.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'eCompletion'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>WarpSketchMorph (in category 'Morphs') -----
  WarpSketchMorph
  
  	self name: 'WarpSketchMorph'.
  	self version: '1.12'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Morphs'.
  	info description: 
  'Playing with squeak morphic, I saw WarpBlt which seems to provide exactly the functionality I need to port an old java applet I did in 1997. WarpSketchMorph is a Morphic implementation similar to my DynFlex applet. Most fun is modifying images of faces.
  
  You can create a WarpSketchMorph either by evaluating
  WarpSketchMorph new openInWorld.
  and choose an image with the "Choose new graphic..." halo menu item or use
  (WarpSketchMorph withForm: <yourForm>) openInWorld.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/WarpSketch.012.pr'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/WarpSketch.012.pr'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'WarpSketchMorph'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ExternalWebBrowser (in category 'Network') -----
  ExternalWebBrowser
  
  	self name: 'ExternalWebBrowser'.
  	self version: '9'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'This small package should work as an alternative to scamper. It just hands over every url to a platform specific external browser.'.
  	info maintainer: 'Norbert Hartl <norbert at hartl.name>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ExternalWebBrowser/ExternalWebBrowser-noha.8.mcz'.
  	self provides: #().
  
  	self dependsOn: #('FFI').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ExternalWebBrowser/ExternalWebBrowser-noha.8.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ExternalWebBrowser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>LifeMorph (in category 'Games') -----
  LifeMorph
  
  	self name: 'LifeMorph'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Games'.
  	info description: 
  'A simple implementation of Life Game.  It is based on Dan''s original Life Game for Smalltalk-80.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/LifeMorph.cs.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/LifeMorph.cs.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'LifeMorph'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OmniBrowser (in category 'Code Browsing') -----
  OmniBrowser
  
  	self name: 'OmniBrowser'.
  	self version: '0.413'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'OmniBrowser is a ground up rewrite of the classical system browsers provided
  in Smalltalk. It''s designed to be flexible and extensible, so as to encourage
  experimentation with new types of development tools, language extensions,
  and runtime environments. In fact it''s a framework to build browsers. Install OmniBrowser-Standard to get the new browser using this framework.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://source.wiresong.ca/ob/'.
  	info squeakMapID: '81451b19-7df8-4fc7-8652-b26cc55dd291'.
  	info url: 'http://source.wiresong.ca/ob/OmniBrowser-dr.413.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.wiresong.ca/ob/OmniBrowser-dr.413.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OmniBrowser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Seaside28JetsamSupersleight (in category 'Web Development') -----
  Seaside28JetsamSupersleight
  
  	self name: 'Seaside28Jetsam-Supersleight'.
  	self version: '0.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Supersleight library for transparent ng support in IE6
  
   http://24ways.org/2007/supersleight-transparent-png-in-ie6'.
  	info maintainer: 'kph'.
  	info homepage: 'http://www.squeaksource.com/Jetsam.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Jetsam/Seaside28Jetsam-Supersleight-kph.3.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Jetsam/Seaside28Jetsam-Supersleight-kph.3.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Seaside28Jetsam-Supersleight'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OmniBrowserMorphic (in category 'Code Browsing') -----
  OmniBrowserMorphic
  
  	self name: 'OmniBrowser-Morphic'.
  	self version: '0.50'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'OB-Standard represents the classical system browser implemented with the OmniBrowser framework.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://source.wiresong.ca/ob/'.
  	info squeakMapID: ''.
  	info url: 'http://source.wiresong.ca/ob/OB-Morphic-mtf.50.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.wiresong.ca/ob/OB-Morphic-mtf.50.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OmniBrowser-Morphic'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>AutomaticMethodCategorizerOB (in category 'Code Browsing') -----
  AutomaticMethodCategorizerOB
  
  	self name: 'AutomaticMethodCategorizerOB'.
  	self version: '0.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  ''.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/autoMethodCat/AutomaticMethodCategorizerOB-DF.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #('AutomaticMethodCategorizer' 'OmniBrowser-Full').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/autoMethodCat/AutomaticMethodCategorizerOB-DF.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'AutomaticMethodCategorizerOB'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3DKernel (in category 'Graphics') -----
  Balloon3DKernel
  
  	self name: 'Balloon3D-Kernel'.
  	self version: '0.6'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-Kernel-ar.6.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-Kernel-ar.6.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D-Kernel'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>RoelTyper (in category 'Development') -----
  RoelTyper
  
  	self name: 'RoelTyper'.
  	self version: '0.60'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'RoelTyper is a fast type reconstructor for Smalltalk, based on heuristics. It type-checks instance variables of classes. Typing a complete VisualWorks Smalltalk image takes less than one minute and a half!! For this speed you get the types for about 80% of instance variables in the system. The approach is quite similar to what the Refactoring Browser does, but somewhat more refined.'.
  	info maintainer: 'Roel Wuyts'.
  	info homepage: 'http://decomp.ulb.ac.be/roelwuyts/smalltalk/roeltyper/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/RoelTyper/RoelTyper-rw.60.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/RoelTyper/RoelTyper-rw.60.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'RoelTyper'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>RSRSS2 (in category 'Web Development') -----
  RSRSS2
  
  	self name: 'RSRSS2'.
  	self version: '2.8.9'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'RSS 2.0 feed creation with Seaside canvas API.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/rsrss/RSRSS2-pmm.9.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/rsrss/RSRSS2-pmm.9.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'RSRSS2'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3DTutorial (in category 'Graphics') -----
  Balloon3DTutorial
  
  	self name: 'Balloon3D-Tutorial'.
  	self version: '0.4.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-Tutorial-ar.4.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Balloon3D-Morphic').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-Tutorial-ar.4.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D-Tutorial'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>BreakOut (in category 'Games') -----
  BreakOut
  
  	self name: 'BreakOut'.
  	self version: '5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Games'.
  	info description: 
  'I designed this breakout slowly refactoring it step by steps because it was part of a book on OOP but I''m thinking to cancel this book and putting a draft on the web. This is the final version of the breakout.
  The bouncing is not that good.
   
  Have fun first, then submit a fix for the ball bouncing or any new bonuses. 
  I would like also to have bonuses falling down. '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/BreakOut-sd.5.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/BreakOut-sd.5.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'BreakOut'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3D (in category 'Graphics') -----
  Balloon3D
  
  	self name: 'Balloon3D'.
  	self version: '0.18.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D is a package to create three-dimensional graphics that was written by Andreas Raab. It uses either a stand-alone implementation or OpenGL. Up to Squeak 3.5, it was integrated into the base image, for Squeak 3.6 you have to load it from SqueakMap.'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-All-ar.18.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Balloon3D-Constants' 'Balloon3D-Import' 'Balloon3D-Kernel' 'Balloon3D-Math' 'Balloon3D-Morphic' 'Balloon3D-Packaging' 'Balloon3D-Plugins' 'Balloon3D-Pooh' 'Balloon3D-Tutorial' 'Balloon3D-VRML' 'Balloon3D-Wonderland' 'Graphics-External' 'Graphics-Tools' 'VMMaker').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-All-ar.18.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierMagmabeta (in category 'Web Development') -----
  PierMagmabeta
  
  	self name: 'Pier-Magma-beta'.
  	self version: '1.0.9-alpha.35'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Extension to pier providing Magma persistence'.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pier/Pier-Magma-kph.35.mcz'.
  	self provides: #('Pier-Magma-beta').
  
  	self dependsOn: #('Magma Seaside-alpha').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pier/Pier-Magma-kph.35.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Magma-beta'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ToolBuilderKernel (in category 'Tools') -----
  ToolBuilderKernel
  
  	self name: 'ToolBuilder-Kernel'.
  	self version: '27'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Tools'.
  	info description: 
  'ToolBuilder is a user interface builder that can be used to create user interfaces for multiple platforms.'.
  	info maintainer: 'Michael van der Gulik (mikevdg at gmail.com)'.
  	info homepage: 'http://www.squeaksource.com/ToolBuilder'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ToolBuilder/ToolBuilder-Kernel-mvdg.27.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ToolBuilder/ToolBuilder-Kernel-mvdg.27.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ToolBuilder-Kernel'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MagmaTesterbeta (in category 'Persistence') -----
  MagmaTesterbeta
  
  	self name: 'Magma Tester-beta'.
  	self version: 'r40Beta.3'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Client, Server and Tester components for the Magma object database.
   '.
  	info maintainer: 'kph <keith_hodges at yahoo.co.uk>'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/2665'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/MagmaTester/r40Beta3.mcm'.
  	self provides: #('Magma').
  
  	self dependsOn: #('MonticelloConfigurations').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/MagmaTester/r40Beta3.mcm'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magma Tester-beta'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ToolBuilderintegrationforUIThemes (in category 'User Interface') -----
  ToolBuilderintegrationforUIThemes
  
  	self name: 'ToolBuilder integration for UI Themes'.
  	self version: '0.52'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'User Interface'.
  	info description: 
  'Integrates the UITheme dialogs with the environment.
  
  This version supports #confirm:trueChoice:falseChoice: of latest ToolBuilder.'.
  	info maintainer: 'Gary Chambers'.
  	info homepage: 'http://www.pinesoft.co.uk/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/UIEnhancements/Pinesoft-ToolBuilder-gvc.9.mcz'.
  	self provides: #().
  
  	self dependsOn: #('UI Themes and Standard Widgets').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/UIEnhancements/Pinesoft-ToolBuilder-gvc.9.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ToolBuilder integration for UI Themes'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>WanderingLetters (in category 'Morphs') -----
  WanderingLetters
  
  	self name: 'WanderingLetters'.
  	self version: '22Feb-2.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Morphs'.
  	info description: 
  'This is wandering letters using the old non-Players (and non-multi-instance Players).  Just make a new Morphic Project and file it in. 
  
  Toggle wandering by clicking the top button.  Responds to Stop and Go buttons so it does not have to be running all the time.
  
  Toggle method if getting back to their right places with the lower button.
  
  Change WanderingLetters>>stepTime to make the speed be right.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/WanderingLetters.22Feb-02.1.cs'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/WanderingLetters.22Feb-02.1.cs'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'WanderingLetters'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>FreeTypePluspluginsinstaller (in category 'Fonts') -----
  FreeTypePluspluginsinstaller
  
  	self name: 'FreeType Plus-plugins installer'.
  	self version: '0.16'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Fonts'.
  	info description: 
  'Installs plugins (for Windows/Linux) into VM executable directory.
  
  For Mac OS X - use the most recent VM (which includes the FT2Plugin) and get the modified BitBltPlugin from ftp://ftp.smalltalkconsulting.com/experimental/BitBltPlugin.v1.0.0b1.FreeTypePlus.bundle.zip'.
  	info maintainer: 'amtween at hotmail.com'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://map.squeak.org/accountbyid/46dcf6af-067d-43e3-9fc9-d7010e067153/files/FreeTypePluginInstaller3.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/46dcf6af-067d-43e3-9fc9-d7010e067153/files/FreeTypePluginInstaller3.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'FreeType Plus-plugins installer'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Universes (in category 'Group Development') -----
  Universes
  
  	self name: 'Universes'.
  	self version: '45'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'Package universes is a toolset that supports reliable, automatic installation of packages via a package-browsing tool.  The approach of the tools is that users operate within one universe, and each universe only has a large but limited set of packages available.  Thus, a universe sets a context that simplifies other aspects of the tools including package naming, dependency management, and package-update policies. '.
  	info maintainer: '"Lex Spoon" <lex at lexspoon.org>'.
  	info homepage: 'http://www.squeaksource.com/universes/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/universes/Universes-dc.45.mcz'.
  	self provides: #().
  
  	self dependsOn: #('YAXO').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/universes/Universes-dc.45.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Universes'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PlotMorph (in category 'Morphs') -----
  PlotMorph
  
  	self name: 'Plot Morph'.
  	self version: '3'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Morphs'.
  	info description: 
  'Morph to draw XY plots. See the methods testXXX in the class side.
  
  Try with:
      PlotMorph test.
      PlotMorph test2.
      PlotMorph test4.
      PlotMorph testWithReferences.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/PlotMorph3-dgd.cs.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/PlotMorph3-dgd.cs.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Plot Morph'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SUnitimproved (in category 'Development') -----
  SUnitimproved
  
  	self name: 'SUnit-improved'.
  	self version: '4.0.108'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Improved SUnit, allows categorization of tests for selective running, per platform, per vm or image version. 
  
  Includes: TestReporter a non gui test runner'.
  	info maintainer: 'kph'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Testing/SUnit-kph.108.mcz'.
  	self provides: #('SUnit-improved').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Testing/SUnit-kph.108.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SUnit-improved'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Iterator (in category 'Data Structures') -----
  Iterator
  
  	self name: 'Iterator'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Data Structures'.
  	info description: 
  'Ported from the Iterator goodie by Mario Wolczko.
  
  Occasionally you may have a block that when evaluated can be
  treated as a collection -- ie it takes another block as parameter,
  then applies that to a sequence of values.
  
  This goodie wraps the block into an object -- an iterator -- which is
  part of the collection hierarchy, and therefore inherits a variety of
  useful collection-related methods.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Iterator.cs.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Iterator.cs.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Iterator'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Logicexpressions (in category 'Languages and Extensions') -----
  Logicexpressions
  
  	self name: 'Logic expressions'.
  	self version: '2.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Languages and Extensions'.
  	info description: 
  'This is a model of first order logic expressions, allowing you to manipulate them as objects instead of just strings.
  
  Prerequisites: 
  	Refactoring Browser
  	SmaCC Runtime Package
  	SmaCC Development Package
  
  For example, inspect the following lines to get the expression corresponding
  to "(p => q) = (not p or q)":
  
  	| p q |
  	p := LVariable named: ''p''.
  	q := LVariable named: ''q''.
  	p => q equiv: (p not | q).
  
  Now, the same formula could be created using:
  	LExpression fromString: ''{p=>q = not p or q}''
  
  More complex formulas can also be created and evaluated, for example try:
  	| exp |
  	exp := LExpression fromString: ''{V(x)[x even]}''.
  	exp valueDomains: {''x'' -> #(2 4 6 8 10 12 )}.
  
  See more examples in the Homepage and on the Logic-Tests category.
  
  I hope you enjoy it!!
  Dany'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/3539'.
  	info squeakMapID: ''.
  	info url: 'http://map.squeak.org/accountbyid/3b1bce7e-2c48-4820-a5ab-4d806a1f29ba/files/Logic-DEA.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #('SmaCC').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/3b1bce7e-2c48-4820-a5ab-4d806a1f29ba/files/Logic-DEA.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Logic expressions'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MagmaseasideHelper (in category 'Persistence') -----
  MagmaseasideHelper
  
  	self name: 'Magma seasideHelper'.
  	self version: '2.8.r40.32'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Provides Seaside applications with an interface to a Magma repository.
  
  Includes detailed logging, and many preconfigured MagmaSession policies.
  
  See the website for more information'.
  	info maintainer: 'Keith Hodges <keith_hodges at yahoo.co.uk>'.
  	info homepage: 'http://wiki.squeak.org/squeak/6019'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/MagmaTester/Magma%20seasideHelper-kph.32.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Logging' 'Magma 1.0 server' 'Seaside' 'Seaside28Jetsam').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/MagmaTester/Magma%20seasideHelper-kph.32.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magma seasideHelper'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SmaCC (in category 'Development') -----
  SmaCC
  
  	self name: 'SmaCC'.
  	self version: '18'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'SmaCC (Smalltalk Compiler-Compiler) is a freely available parser generator for Smalltalk. 
  Use this package if you want to develop a new parser/scanner/compiler.
  
  It  is a replacement for the T-Gen parser generator. T-Gen has several limitations  
  that make it difficult to produce parsers. SmaCC overcomes T-Gen''s limitations. 
  For example, SmaCC  can generate parsers for ambiguous grammars and grammars 
  with overlapping tokens.  Both of these are not possible using T-Gen.
   In addition to handling more  grammars than T-Gen, SmaCC has a smaller runtime 
  than T-Gen and is faster than  T-Gen.   
  '.
  	info maintainer: 'Mathieu Suen'.
  	info homepage: 'http://wiki.squeak.org/squeak/3117'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/SmaccDevelopment/SmaCCDev-lr.18.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Refactoring Engine' 'SmaCC runtime').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/SmaccDevelopment/SmaCCDev-lr.18.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SmaCC'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Announcements (in category 'Model Extension') -----
  Announcements
  
  	self name: 'Announcements'.
  	self version: '0.7'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  ''.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://mc.lukas-renggli.ch/announcements/'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/announcements/Announcements-lr.7.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/announcements/Announcements-lr.7.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Announcements'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3DPackaging (in category 'Graphics') -----
  Balloon3DPackaging
  
  	self name: 'Balloon3D-Packaging'.
  	self version: '0.6'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-Packaging-ar.6.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-Packaging-ar.6.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D-Packaging'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ToolBuilderMorphic (in category 'Tools') -----
  ToolBuilderMorphic
  
  	self name: 'ToolBuilder-Morphic'.
  	self version: '27'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Tools'.
  	info description: 
  'ToolBuilder is a package which allows you to create multi-platform user interfaces.
  
  This is the Morphic platform for ToolBuilder.'.
  	info maintainer: 'Michael van der Gulik'.
  	info homepage: 'http://www.squeaksource.com/ToolBuilder'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ToolBuilder/ToolBuilder-Morphic-dc.27.mcz'.
  	self provides: #('ToolBuilder-Implementation').
  
  	self dependsOn: #('ToolBuilder-Kernel').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ToolBuilder/ToolBuilder-Morphic-dc.27.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ToolBuilder-Morphic'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MagritteTests (in category 'Development') -----
  MagritteTests
  
  	self name: 'Magritte-Tests'.
  	self version: '1.0.16.141'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Magritte SUnit tests.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/magritte'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/magritte/Magritte-Tests-lr.141.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Magritte-Model').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/magritte/Magritte-Tests-lr.141.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magritte-Tests'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SqCVS (in category 'Group Development') -----
  SqCVS
  
  	self name: 'SqCVS'.
  	self version: '0.51'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'SqCVS is a clean implementation of the CVS pserver protocol in Squeak.
  
  It is written on top of SocketStream - the highlevel Socket class found in the
  Comanche package. This means Comanche is a prerequisite.
  
  SqCVS has no UI and it still doesn''t know how to do "add" and "remove".
  But it knows how to do pretty much of the CVS protocol.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/CVS-0_51.st.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/CVS-0_51.st.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SqCVS'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>GraphicsExternal (in category 'Graphics') -----
  GraphicsExternal
  
  	self name: 'Graphics-External'.
  	self version: '0.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Graphics-External-ar.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Graphics-External-ar.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Graphics-External'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OmniBrowserSUnitIntegration (in category 'Code Browsing') -----
  OmniBrowserSUnitIntegration
  
  	self name: 'OmniBrowser-SUnitIntegration'.
  	self version: '0.9.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'Provides SUnit-related features to OmniBrowser.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://source.wiresong.ca/ob/OB-SUnitIntegration-dc.9.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser' 'OmniBrowser-Standard').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.wiresong.ca/ob/OB-SUnitIntegration-dc.9.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OmniBrowser-SUnitIntegration'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SSH (in category 'System') -----
  SSH
  
  	self name: 'SSH'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'An implementation of SSH in Squeak'.
  	info maintainer: 'rww'.
  	info homepage: 'http://www.squeaksource.com/Cryptography.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Cryptography/SSH-rww.12.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Cryptography Team Package' 'SSL' 'Telnet').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Cryptography/SSH-rww.12.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SSH'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>KomHttpServer (in category 'Network') -----
  KomHttpServer
  
  	self name: 'KomHttpServer'.
  	self version: '7.0.30'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'KomHttpServer is the Comanche web server package.  To get a simple web server running, install this package and evaluate the code below.  A simple file serving web server will be started and will serve the files in your default directory.
  
  	| ma |
  	ma := ModuleAssembly core.
  	ma serverRoot: FileDirectory default fullName.
  	ma documentRoot: FileDirectory default fullName.
  	ma directoryIndex: ''index.html index.htm''.
  	ma serveFiles.
  	(HttpService startOn: 8080 named: ''httpd'') plug: ma rootModule
  
  After starting the server, point your web browser to http://localhost:8080/
  
  If you have loaded Seaside, you can start a web server that serves Seaside based applications using the following configuration:
  
  	| ma seaside |
  	seaside := WAKom default.
  	ma := ModuleAssembly core.
  	ma serverRoot: FileDirectory default fullName.
  	ma alias: ''/seaside'' to: [ma addPlug: [:request | seaside process: request]].
  	ma documentRoot: FileDirectory default fullName.
  	ma directoryIndex: ''index.html index.htm''.
  	ma serveFiles.
  	(HttpService startOn: 8080 named: ''httpd'') plug: ma rootModule
  
  See the class comments of the various subclasses of ComancheModule for documentation and usage examples.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/KomHttpServer/KomHttpServer-gc.30.mcz'.
  	self provides: #().
  
  	self dependsOn: #('KomServices').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/KomHttpServer/KomHttpServer-gc.30.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'KomHttpServer'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Cryptography (in category 'Uncategorized') -----
  Cryptography
  
  	self name: 'Cryptography'.
  	self version: '0.3'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Uncategorized'.
  	info description: 
  'The cryptography package provides some basic cryptographic algorithms and
  protocols. This change set integrates algorithms implemented by several members 
  of the Squeak community, including Leandro Caniglia, John Maloney,
  Duane Maxwell, Luciano Notarfrancesco and Carlos Sarraute. There isn''t much
  documentation, but browsing the tests (CryptoTest) will give you a pretty good
  idea of how to use it.
  This package includes:
    - Symmetric key algorithms: DES, 3DES, AES (Rijndael), ARC4
    - Block cipher modes: CBC, CFB, OFB
    - Hash functions: MD4, MD5, SHA1
    - Public key algorithms: DSA, ElGamal, RSA
    - Other stuff: HMACs, Diffie-Hellman, a random pool, a secure prng, a primes finder'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Cryptography.cs.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Cryptography.cs.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Cryptography'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Games (in category 'Games') -----
  Games
  
  	self name: 'Games'.
  	self version: '2005-10-14'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Games'.
  	info description: 
  'Chess, FreeCell, SameGame, ChineseCheckers, Tetris and more
  
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://map.squeak.org/accountbyid/fc09dff0-87b1-47ec-ace7-fa4172b5d6a0/files/Morphic-Games.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/fc09dff0-87b1-47ec-ace7-fa4172b5d6a0/files/Morphic-Games.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Games'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Null (in category 'Model Extension') -----
  Null
  
  	self name: 'Null'.
  	self version: '0.14'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'Message Eating Null package for Squeak.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://wiki.squeak.org/squeak/5962'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Null/Null-kph.14.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Null/Null-kph.14.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Null'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Monticello2 (in category 'Group Development') -----
  Monticello2
  
  	self name: 'Monticello2'.
  	self version: '0.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'Monticello is a distributed version control system.
  
  Monticello 2 addresses the problems we encountered with Monticello 1. They mostly stem from a common cause: its unit of versioning, the package, is too coarse for many situations that arise in normal development.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://wiki.squeak.org/squeak/5624'.
  	info squeakMapID: ''.
  	info url: 'nil'.
  	self provides: #().
  
  	self dependsOn: #('Monticello2-Core' 'Monticello2-OmniBrowser' 'Monticello2-Squeak').
  
+ !
- 	self load: [
- 	].
- 
- 	self unload: [
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>GraphViz (in category 'Graphics') -----
  GraphViz
  
  	self name: 'GraphViz'.
  	self version: '41r2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Graph visualization is a way of representing structural information as
  
  diagrams of abstract graphs and networks. Automatic graph drawing has
  
  many important applications in software engineering, database and web
  
  design, networking, and in visual interfaces for many other domains.
  
  
  
  The Graphviz layout programs take descriptions of graphs in a simple
  
  text language, and make diagrams in several useful formats such as
  
  images and SVG for web pages, Postscript for inclusion in PDF or other
  
  documents; or display in an interactive graph browser. (Graphviz also
  
  supports GXL, an XML dialect.)
  
  
  
  Graphviz has many useful features for concrete diagrams, such as
  
  options for colors, fonts, tabular node layouts, line styles,
  
  hyperlinks, and custom shapes.
  
  
  
  In practice, graphs are usually generated from an external data
  
  sources, but they can also be created and edited manually, either as
  
  raw text files or within a graphical editor. (Graphviz was not
  
  intended to be a Visio replacement, so it is probably frustrating to
  
  try to use it that way.)
  
  
  
  So basically, the Squeak interface provided here makes it fairly
  
  straightforward to generate the "dot" language file that the GraphViz
  
  command line programs use as input to create the graphs.  For
  
  references on the "dot" language you can go to the graphviz web site
  
  mentioned above.
  
  
  
  Several examples are provided in the Squeak package if you look at the
  
  class side of GraphViz or inspect my test cases.  Graphing Smalltalk
  
  class hierarchies and/or class references has been a source of delight
  
  as well as using this program to graph many relationships pertinent to
  
  my business data.
  
  
  
  Lastly, GraphViz will generate SVG output formats as well.  I found a
  
  very cool Java-based Zoomable User Interface built specially to
  
  navigate large graphs generated by GraphViz called ZGRViewer
  
  (http://zvtm.sourceforge.net/zgrviewer.html). Then you can open the Java ZGRViewer program and surf around the graph file this is generated by Squeak.  Very cool for looking at large models!!'.
  	info maintainer: 'wbk'.
  	info homepage: 'http://squeak.saltypickle.com/GraphViz'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/GraphViz/GraphViz-jrp.41.mcz'.
  	self provides: #().
  
  	self dependsOn: #('CommandShell' 'Connectors' 'FFI').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/GraphViz/GraphViz-jrp.41.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'GraphViz'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ElectricityGame (in category 'Games') -----
  ElectricityGame
  
  	self name: 'Electricity Game'.
  	self version: '1.19'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Games'.
  	info description: 
  'This is the game Stephan B. Wessels demoed at OOPSLA 2003.
  
  NsGame began as a Squeak port of the Shockwave Flash game by Pavils Jurjans.
  See http://www.jurjans.lv/stuff/net/freenet.htm.
  
  To begin the game perform:
  	NsGame new openInWorld
  
  Instructions are available from within the game.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: 'http://squeak.preeminent.org/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/NSGame/NsTileGame-sbw.19.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/NSGame/NsTileGame-sbw.19.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Electricity Game'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Nicefonts (in category 'Fonts') -----
  Nicefonts
  
  	self name: 'Nice fonts'.
  	self version: '0.5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Fonts'.
  	info description: 
  'From Juan Vuletich: One of the very few things I don''t like in Squeak is font support. I''m used to nice sub pixel rendered text. I find StrikeFonts and TTFFonts in Squeak equally ugly on LCD monitors. I have been a long time admirer of Henrik Gedenryd''s FreeType work, now continued by Andy Tween. But Andy''s work requires linking the FreeType library, and a new BitBlt plugin with newer modes to work. Something smaller and simpler needs to be done!!
  
  Once installed, execute the following line to install the new fonts. It may take some time so be patient. Also ensure that the ''display depth'' of your image is set to 32 (World menu->appearance->set display depth...).
  
  StrikeFont new installNiceFonts'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.jvuletich.org/NiceFonts.html'.
  	info squeakMapID: ''.
  	info url: 'http://damien.cassou.free.fr/squeak-dev/fonts/AAStrikeFonts.14.cs'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://damien.cassou.free.fr/squeak-dev/fonts/AAStrikeFonts.14.cs'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Nice fonts'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Smagick (in category 'Graphics') -----
  Smagick
  
  	self name: 'Smagick'.
  	self version: '0.5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'A simple interface to control "Image Magick" from a Smalltalk environment
  
  changes to 0.4:
  - bugfixes'.
  	info maintainer: 'Stefan Reichhart <stefan.reichhart at gmx.ch>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/SqueakAddOns/Smagick-SR.72.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OSProcess' 'OSProcessIO' 'VBRegex').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/SqueakAddOns/Smagick-SR.72.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Smagick'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PostgreSQLClient (in category 'Persistence') -----
  PostgreSQLClient
  
  	self name: 'PostgreSQL Client'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Implements a native Smalltalk connection to PostgreSQL backend. See the "Frontend/Backend Protocol" chapter in the "PostgreSQL Programmer''s Guide" for more information.
  
  Notes:
  1. Only "plaintext" and "md5" authentication modes are currently supported. This option is configurable via the pg_hba.conf file in your postgres server configuration.
  2. If you want to use "md5" authentication, you must load the Cryptography package first, before loading this package.
  3. If you only want to use "plaintext" authentication, it is not necessary to load the Cryptography package at all.
  
  See the class TestPGConnection for example code of how to access the postgres.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: 'http://ca.geocities.com/zazu%40rogers.com/pgsqueak/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/PostgresV2/PostgresV2-yj.5.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/PostgresV2/PostgresV2-yj.5.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'PostgreSQL Client'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>FixedDecimal (in category 'Data Structures') -----
  FixedDecimal
  
  	self name: 'FixedDecimal'.
  	self version: '13'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Data Structures'.
  	info description: 
  'An implementation of FixedDecimal.  Should be like Scaled Decimal, except that it actually does math correctly (i.e., two FixedDecimal that the printed version of them look like they are equal are, in fact, equal - unlike Scaled Decimal).
  '.
  	info maintainer: 'kph'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/FixedDecimal/FixedDecimal-cbc.13.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/FixedDecimal/FixedDecimal-cbc.13.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'FixedDecimal'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SqueakElib (in category 'System') -----
  SqueakElib
  
  	self name: 'SqueakElib'.
  	self version: '1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  ''.
  	info maintainer: 'rww'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/6011'.
  	info squeakMapID: '7f93bcef-201b-4f53-83ea-b671eacb23f6'.
  	info url: 'http://www.squeaksource.com/squeakelib/SqueakElib-rww.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Cryptography Team Package').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/squeakelib/SqueakElib-rww.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SqueakElib'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Algernon (in category 'IDE') -----
  Algernon
  
  	self name: 'Algernon'.
  	self version: '1.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'IDE'.
  	info description: 
  'Algernon is a productivity tool for Squeak programmers; your personal assistant for Squeak. It is a launcher and quick way to access any class. Press Shift-Return to bring up the text box. Start typing a class name, a morph''s name, a category, an object, global variable, or any valid smalltalk expression (prefixed with "=" ) to have quick access or print the results. Algernon aims to make programming in Squeak faster and more keyboard centric.
  
  Version 1.2 fixes performance problems encountered in 1.1.
  
  Usage: Press Shift-Return to start.
  '.
  	info maintainer: 'Joey Hagedorn<joey at joeyhagedorn.com>'.
  	info homepage: 'http://www.squeaksource.com/Algernon.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.joeyhagedorn.com/media/downloads/Algernon.1.2.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.joeyhagedorn.com/media/downloads/Algernon.1.2.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Algernon'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>FileMan (in category 'Model Extension') -----
  FileMan
  
  	self name: 'FileMan'.
  	self version: '0.85'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'Squeak''s file libraries (Directory, DirectoryEntry, FileStream, etc.) are sometimes very confusing to use. FileMan provides a simple, refactored interfaces for manipulating files and directories by wrapping those classes.
  
  "Before"
  subDir := FileDirectory default directoryNamed: ''subDir''.
  subDir assureExistence.
  [str := subDir newFileNamed: ''file1''.
  str nextPutAll: ''Hello!!'']
  	ensure: [str close].
  
  "After installation of FileMan"
  ''./subDir'' asDirectoryEntry at: ''file2'' put: ''Hello!!'''.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://squeaksource.blueplane.jp/FileMan.html'.
  	info squeakMapID: ''.
  	info url: 'http://squeaksource.blueplane.jp/FileMan/FileMan-mu.85.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://squeaksource.blueplane.jp/FileMan/FileMan-mu.85.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'FileMan'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>NileClients (in category 'Model Extension') -----
  NileClients
  
  	self name: 'Nile-Clients'.
  	self version: '1.0.93'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'Nile is a complete reimplementation of the squeak stream hierarchy. It provides:
  
      * traits for code reuse.
      * lots of tests: same tests are used for the squeak stream hierarchy and Nile (they are implemented in traits).
      * lots of clients to verify the reusability.
      * a diagram of the implementation: http://damien.cassou.free.fr/documents/internship_2007/nile/complete_hierarchy.pdf '.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.squeaksource.com/Nile/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Nile/Nile-Clients-dc.93.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Nile-Base' 'Nile-Tests').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Nile/Nile-Clients-dc.93.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Nile-Clients'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Magmasunit (in category 'Persistence') -----
  Magmasunit
  
  	self name: 'Magma sunit'.
  	self version: '1.0.8'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Magma as an SUnit test resource'.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: 'http://wiki.squeak.org/squeak/5817'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/MagmaTester/Magma%20sunit-kph.8.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Magma').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/MagmaTester/Magma%20sunit-kph.8.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magma sunit'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Cassowary (in category 'Constraints') -----
  Cassowary
  
  	self name: 'Cassowary'.
  	self version: '0.60'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Constraints'.
  	info description: 
  'This is a port of the Smalltalk version of Cassowary 0.60.  As the original authors put it, ''Cassowary is an incremental constraint solving toolkit that efficiently solves systems of linear equalities and inequalities.''.  More information can be found at:
  
  http://www.cs.washington.edu/research/constraints/cassowary/
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Cassowary.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Cassowary.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Cassowary'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SARBuilder (in category 'Group Development') -----
  SARBuilder
  
  	self name: 'SARBuilder'.
  	self version: '8'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'SARBuilder lets you build .SAR (Squeak ARchive) packages from ChangeSets, Monticello packages, versions, or snapshots, or PackageInfo instances.
  Please see the class comments in SARInstaller'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SARBuilder.8.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SARBuilder.8.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SARBuilder'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OmniBrowserRefactory (in category 'Development') -----
  OmniBrowserRefactory
  
  	self name: 'OmniBrowser-Refactory'.
  	self version: '0.98'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Brings refactorings to OmniBrowser'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://source.lukas-renggli.ch/omnibrowser/OB-Refactory-lr.98.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser-Standard' 'Refactoring Core').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.lukas-renggli.ch/omnibrowser/OB-Refactory-lr.98.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OmniBrowser-Refactory'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>VBRegex (in category 'Model Extension') -----
  VBRegex
  
  	self name: 'VBRegex'.
  	self version: '1.9'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'A pure Smalltalk regular expression matcher.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: 'http://www.squeaksource.com/Regex.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Regex/VB-Regex-sd.9.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Regex/VB-Regex-sd.9.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'VBRegex'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>TechoBase (in category 'Uncategorized') -----
  TechoBase
  
  	self name: 'Techo-Base'.
  	self version: '1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Uncategorized'.
  	info description: 
  'Techo is:
  -Multiple workspace stored plain text file
  -Notepad without file name
  -Grep tool(but not real REgexp).
  
  It is very simple tool, but useful to make a memo, to exchange oneliner among Squeak images, and to play a text base Smalltalk programming puzzle.'.
  	info maintainer: ''.
  	info homepage: 'http://map.squeak.org/package/2fa59952-dde7-426c-8823-5d70791cae76'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/DeveloperWorkspace/Techo-Base-tbn.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/DeveloperWorkspace/Techo-Base-tbn.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Techo-Base'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierJetsamEnvironment (in category 'Web Development') -----
  PierJetsamEnvironment
  
  	self name: 'Pier-Jetsam-Environment'.
  	self version: '1.0.16.7'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Provides centralized initialization and control of whole pier layout/style policies for the root frame component.'.
  	info maintainer: 'kph'.
  	info homepage: 'http://mc.lukas-renggli.ch/pieraddons.html'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pieraddons/Pier-Jetsam-Environment-kph.7.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Model' 'Seaside28Jetsam-Blueprint' 'Seaside28Jetsam-NiftyCorners' 'Seaside28Jetsam-Supersleight' 'Seaside28Jetsam-Useful-CSS').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pieraddons/Pier-Jetsam-Environment-kph.7.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Jetsam-Environment'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Comet (in category 'Web Development') -----
  Comet
  
  	self name: 'Comet'.
  	self version: '2.8.24'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'High-level Comet bindings for the Seaside web application framework.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Seaside/Comet-lr.24.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Scriptaculous').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Seaside/Comet-lr.24.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Comet'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ProjectsAsPNG (in category 'Uncategorized') -----
  ProjectsAsPNG
  
  	self name: 'ProjectsAsPNG'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Uncategorized'.
  	info description: 
  '- Add a menuItem ''Export Projects as PNG'' to an InternalThreadNavigationMorph. - Export projects included in pages of an InternalThreadNavigationMorph as PNG graphics. - The png files are places in the Squeak DefaultDirectory. - The external name of the world is given the Project''s name as it is used to named the PNG file. On the class side of InternalThreadNavigationMorph you''ll see #nonSavedClasses that you can edit to add or remove Class that you don''t want to show in your PNG file. Some of this code is a reuse of Ned Konz work. Work with: - Squeak 3.7 - Squeak 3.8 - Squeak 3.9'.
  	info maintainer: 'Raymond Asselin'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ThreadNavigatorPlus'.
  	self provides: #('Add amenuItem ''Export Projects as PNG'' to InternalThreadNavigationMorph').
  
  	self dependsOn: #('Morphic').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ThreadNavigatorPlus'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ProjectsAsPNG'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Magma10server (in category 'Persistence') -----
  Magma10server
  
  	self name: 'Magma 1.0 server'.
  	self version: 'r40'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Client, Server and Tester components for the Magma object database.
   '.
  	info maintainer: 'kph <keith_hodges at yahoo.co.uk>'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/2665'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Magma/Magma%201.0r40%20server%20configuration.mcm'.
  	self provides: #('Magma').
  
  	self dependsOn: #('MonticelloConfigurations').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Magma/Magma%201.0r40%20server%20configuration.mcm'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magma 1.0 server'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>DiagramBrowser (in category 'Office') -----
  DiagramBrowser
  
  	self name: 'Diagram Browser'.
  	self version: '2004-7-25'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Office'.
  	info description: 
  'DiagramBrowser is a tool for building and classifying diagrams (or any kind of morphic drawing) in category tree fashion. 
  
  DiagramBrowser is part of the Jacarandá Project but can be downloaded and used independently.
  
  Note that this package does not provide shapes for making the diagrams. You can use the excelent Connectors package or install the complete Jacaranda package.'.
  	info maintainer: 'ls'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/2958'.
  	info squeakMapID: ''.
  	info url: 'http://map.squeak.org/accountbyid/3c873639-61d0-43e1-8c87-1fa43bc8599d/files/DiagramBrowser-hpt.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/3c873639-61d0-43e1-8c87-1fa43bc8599d/files/DiagramBrowser-hpt.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Diagram Browser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PieChartMorph (in category 'Morphs') -----
  PieChartMorph
  
  	self name: 'PieChartMorph'.
  	self version: '0.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Morphs'.
  	info description: 
  ''.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/PieChartMorph-gm.5.cs'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/PieChartMorph-gm.5.cs'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'PieChartMorph'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Shout (in category 'Code Browsing') -----
  Shout
  
  	self name: 'Shout'.
  	self version: '3.15-tween.72'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'Syntax Highlighting that updates after each key stroke so that the highlighting remains correct during the editing of a method.
  
      * Syntax Highlighting is shown in browsers and debuggers.
      * Optional add-on packages are available to enable Shout in Monticello, OmniBrowser, Traits, WhiskerBrowser, and Workspaces
      * Fonts may be specified for syntax elements (for example, the left arrow assignment can be shown in a different font thus removing the need to ''doctor'' fonts to get the left arrow looking correct).
      * Unterminated strings and comments can be shown in a different colour.
      * Parenthesis, and block [], matching is indicated by highlighting matching brackets in the same colour, with the colour determined by the level of nesting.
      * Variables may be highlighted differently according to their type (instance variable, temporary variable, temporary block variable, workspace variable, Pool constant, class variable, global).
      * Arguments may be highlighted differently according to their type (method argument, block argument)
      * Operates in both Morphic and MVC
      * Preserves TextActions within method source
      * Can be configured to show assignments as the ANSI := , left arrow, or in the form that they appear in the source (which could be both versions in a single method)
      * Styles are configurable, although there is currently no editor for this'.
  	info maintainer: ''.
  	info homepage: 'http://www.squeaksource.com/shout/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/shout/Shout.3.15-tween.72.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/shout/Shout.3.15-tween.72.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Shout'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Telnet (in category 'Network') -----
  Telnet
  
  	self name: 'Telnet'.
  	self version: '301'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'This package contains various components that facilitate interactive login
  to a remote (or the local) machine:
  
  * a (glass) TeletypeMorph;
  * essentially complete emulation of vt52, vt102 and xterm terminals;
  * a telnet client for connecting to remote machines;
  * a `pseudo-tty'' client for connecting to an interactive shell on the local machine;
  * a protocol stack abstraction that glues the above together; and
  * a TeletypeWindow morph which makes a clickable application out of it all.
  
  The pseudo-tty client will only work on Unix, but the telnet client should
  work fine on any platform (Unix, Mac, Windows, etc.) that supports sockets.
  
  Please visit the homepage for further details (especially if you want to use
  the pseudo-tty client, since you may have to download an additional changeset).'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/telnet.301.cs'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/telnet.301.cs'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Telnet'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Monticello2Core (in category 'Group Development') -----
  Monticello2Core
  
  	self name: 'Monticello2-Core'.
  	self version: '0.194'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'Monticello is a distributed version control system.
  
  Monticello 2 addresses the problems we encountered with Monticello 1. They mostly stem from a common cause: its unit of versioning, the package, is too coarse for many situations that arise in normal development.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://wiki.squeak.org/squeak/5624'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Monticello2/Monticello2-dc.194.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Monticello2/Monticello2-dc.194.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Monticello2-Core'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ShoreComponents (in category 'Web Development') -----
  ShoreComponents
  
  	self name: 'ShoreComponents'.
  	self version: '3.10'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'A set of useful components for Seaside.
  
  Shore Components project is a library of building blocks for Seaside.
  Currently it contains only few of them, but we hope that the project
  can serve as the meeting point for those people asking in mailing
  lists for such a library again and again.
  
  Anybody who has an interesting reusable component for Seaside and is
  willing to share it with community is strongly encouraged to do so.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.squeaksource.com/ShoreComponents.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ShoreComponents/ShoreComponents-3-pk.10.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Scriptaculous' 'Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ShoreComponents/ShoreComponents-3-pk.10.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ShoreComponents'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierBlog (in category 'Web Development') -----
  PierBlog
  
  	self name: 'Pier-Blog'.
  	self version: '1.0.16.73'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Pier blog plugin.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pier/Pier-Blog-lr.73.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Seaside' 'RSRSS2').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pier/Pier-Blog-lr.73.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Blog'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ObjectFinder (in category 'Development') -----
  ObjectFinder
  
  	self name: 'ObjectFinder'.
  	self version: '0.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'A new object inspector for Squeak based on OmniBrowser. Why Finder ? Because you can explore your object like in the OS X Finder !! This tool permits to explore easy an object and its linked objects (and their linked objects and ...) but it is overall extensible. Subclass OFObjectNode, add a method #asNodeWithName: and you have a personal inspector for your project !! A simple option in the Preference panel permits to enable/disable the replacement of the old inspector by this new one. Have fun !! See http://decomp.ulb.ac.be/frdricpluquet/personalstuff/theobjectfinder/ for more information. Please, send me a mail when you really use it :-) (Just to have some feed back)'.
  	info maintainer: 'PF'.
  	info homepage: 'http://decomp.ulb.ac.be/frdricpluquet/personalstuff/theobjectfinder/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ObjectFinder/ObjectFinder-PF.16.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ObjectFinder/ObjectFinder-PF.16.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ObjectFinder'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MonticelloConfigurationsUniversesFix (in category 'Group Development') -----
  MonticelloConfigurationsUniversesFix
  
  	self name: 'MonticelloConfigurations-UniversesFix'.
  	self version: 'un.33.fix.3'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'Fixes Universes to load MonticelloConfigurations, and to handle "provides" field.
  Patch Monticello, (trivial additions) so that MonticelloConfigurations and patched Universes works without needing Monticello1.5 '.
  	info maintainer: 'kph <keith_hodges at yahoo.co.uk>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://installer.pbwiki.com/f/UniversesMCAndProvidesPatch.3.cs'.
  	self provides: #('MonticelloConfigurations-UniversesFix').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://installer.pbwiki.com/f/UniversesMCAndProvidesPatch.3.cs'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'MonticelloConfigurations-UniversesFix'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Monticello15 (in category 'Group Development') -----
  Monticello15
  
  	self name: 'Monticello15'.
  	self version: '1.5.477'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'Monticello - evolution - Improvements over 1.0 
  
  - Method/Class Orphanage which enables out-of-order loading of packages, and maintenance of packages whose dependencies have not been loaded.
  - Method Overrides (if properly categorized) are fully supported preserving the integrity of a package even if it has overridden methods
  - Refactored UI/repository classes so that one UI heirachy serves all.
  - Dual Changes Browser
  - In memory cache repository
  - Support for configurations (Please name them using the MC conventions)
  - Support for more complex version numbering conventions i.e. Package-kph-1.0.3.mcz
  
  known problems:
  methods have been known to loose their categories
  
  future:
  Atomic Loading loader using System Editor is already coded and contained in this release.
  See #theChosenLoaderClass.
  
  
  '.
  	info maintainer: 'kph <keith_hodges at yahoo.co.uk>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/mc/Monticello-kph.477.mcz'.
  	self provides: #('Monticello15').
  
  	self dependsOn: #('Monticello15-Bootstrap' 'MonticelloConfigurations' 'PackageInfo-Base').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/mc/Monticello-kph.477.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Monticello15'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Monticello15Bootstrap (in category 'Group Development') -----
  Monticello15Bootstrap
  
  	self name: 'Monticello15-Bootstrap'.
  	self version: '1.5.477'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'Squeak 3.10''s version of Monticello is unable to load Monticello 1.5
  
  This is the fileout version which can be be used as a first load.'.
  	info maintainer: 'kph <keith_hodges at yahoo.co.uk>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://installer.pbwiki.com/f/Monticello-kph-477.st'.
  	self provides: #('Monticello15-Bootstrap').
  
  	self dependsOn: #('PackageInfo-Base').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://installer.pbwiki.com/f/Monticello-kph-477.st'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Monticello15-Bootstrap'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierSqueakPersistency (in category 'Development') -----
  PierSqueakPersistency
  
  	self name: 'Pier-Squeak-Persistency'.
  	self version: '1.0.16.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Pier persistency mechanisms for Squeak.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pier/Pier-Squeak-Persistency-lr.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Model' 'Pier-Tests').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pier/Pier-Squeak-Persistency-lr.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Squeak-Persistency'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>TinyWiki (in category 'Web Development') -----
  TinyWiki
  
  	self name: 'TinyWiki'.
  	self version: '1.0.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'TinyWiki is a tiny wiki implementation based on the model of SmallWiki.'.
  	info maintainer: 'pmm'.
  	info homepage: 'http://www.squeaksource.com/ss2.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ss2/TinyWiki-pmm.16.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Seaside' 'SmaCC runtime').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ss2/TinyWiki-pmm.16.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'TinyWiki'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ShoutMonticello (in category 'Code Browsing') -----
  ShoutMonticello
  
  	self name: 'ShoutMonticello'.
  	self version: '1-tween.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  ''.
  	info maintainer: ''.
  	info homepage: 'http://www.squeaksource.com/shout'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/shout/ShoutMonticello.1-tween.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Shout').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/shout/ShoutMonticello.1-tween.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ShoutMonticello'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>FreeTypePlus (in category 'Fonts') -----
  FreeTypePlus
  
  	self name: 'FreeType Plus'.
  	self version: '0.5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Fonts'.
  	info description: 
  'Support for FreeType font system.
  Scans host OS for available font files, and automatically creates TextStyles.
  Re-scans on every image startup.
  '.
  	info maintainer: 'amtween at hotmail.com'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://map.squeak.org/accountbyid/46dcf6af-067d-43e3-9fc9-d7010e067153/files/FreeType-tween.355.mcz'.
  	self provides: #().
  
  	self dependsOn: #('FFI' 'FreeType Plus-plugins installer').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/46dcf6af-067d-43e3-9fc9-d7010e067153/files/FreeType-tween.355.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'FreeType Plus'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Sport (in category 'Development') -----
  Sport
  
  	self name: 'Sport'.
  	self version: '2.31'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Smalltalk portability library from Bruce Badger, consisting basic portable classes for Times, Files and Sockets
  
  031 brings an extended and portable support for image startup and shutdown tasks. This is useful for any cleanup you want to do before image is quit and for any work after image  is started. For instance, a Swazoo web server will restart all its websites automatically after image start with help of those Sport startup methods. 
  '.
  	info maintainer: 'mivsek'.
  	info homepage: 'http://wiki.openskills.org/OpenSkills/Sport'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/SPort/Sport-2.031.mcz'.
  	self provides: #('Portability').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/SPort/Sport-2.031.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Sport'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>UIThemeTaskbarIcons (in category 'User Interface') -----
  UIThemeTaskbarIcons
  
  	self name: 'UI Theme Taskbar Icons'.
  	self version: '0.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'User Interface'.
  	info description: 
  'Taskbar/window icons for common windows.'.
  	info maintainer: 'Gary Chambers'.
  	info homepage: 'http://www.pinesoft.co.uk/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/UIEnhancements/Pinesoft-TaskbarIcons-gvc.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #('UI Themes and Standard Widgets').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/UIEnhancements/Pinesoft-TaskbarIcons-gvc.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'UI Theme Taskbar Icons'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>JavaSerialization (in category 'Persistence') -----
  JavaSerialization
  
  	self name: 'Java Serialization'.
  	self version: '1.71'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Gives Squeak the ability to read in and write out Java serialized objects. It also includes a Java Class Loader. Great for debugging serialization problems in Java. Right now, I can load in any serialized stream, but those written with customized methods are just simple byte arrays. Future versions will use the class loader to make sense of this information. If you get any use out of it or have suggestions, let me know. I want it to become a way to interface to Java easily and the Smalltalk way. I want to do Java better than Java.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: 'http://www.squeaksource.com/Java.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Java/btb-Java-btb.171.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Java/btb-Java-btb.171.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Java Serialization'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SSL (in category 'System') -----
  SSL
  
  	self name: 'SSL'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'This is an implementation of the SSL protocol in Squeak.'.
  	info maintainer: 'rww'.
  	info homepage: 'http://www.squeaksource.com/Cryptography.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Cryptography/SSL-rww.3.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Cryptography Team Package').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Cryptography/SSL-rww.3.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SSL'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ODBC (in category 'Persistence') -----
  ODBC
  
  	self name: 'ODBC'.
  	self version: '2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Very simple framework for ODBC support in Squeak. Use FFI to talk to ODBC32.dll, no other DLL is necessary.
  
  It works in Windows and in Unix.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://wiki.squeak.org/squeak/uploads/2480/ODBC-dgd.10.cs.gz'.
  	self provides: #().
  
  	self dependsOn: #('FFI').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://wiki.squeak.org/squeak/uploads/2480/ODBC-dgd.10.cs.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ODBC'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>FFIExamples (in category 'System') -----
  FFIExamples
  
  	self name: 'FFI-Examples'.
  	self version: '3.9'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'Examples for the Squeak foreign function interface.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://source.squeakfoundation.org/FFI/FFI-Examples-ar.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #('FFI').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.squeakfoundation.org/FFI/FFI-Examples-ar.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'FFI-Examples'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Glorp (in category 'Persistence') -----
  Glorp
  
  	self name: 'Glorp'.
  	self version: '0.4.169'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Glorp is Object-Relational Mapping Framework similar to TopLink, developed by Alan Knight. Squeak version requires the Postgres client '.
  	info maintainer: 'Norbert Hartl <norbert at hartl.name>'.
  	info homepage: 'http://www.glorp.org/'.
  	info squeakMapID: ''.
  	info url: 'http://selfish.org/files/st/Glorp-0.4.169.sar'.
  	self provides: #().
  
  	self dependsOn: #('PostgreSQL Client').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://selfish.org/files/st/Glorp-0.4.169.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Glorp'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OBEnhancements (in category 'Code Browsing') -----
  OBEnhancements
  
  	self name: 'OB-Enhancements'.
+ 	self version: '0.191'.
+ 	self worksIn: #( PackagesSqueak310U )
- 	self version: '0.176'.
  
  	info category: 'Code Browsing'.
  	info description: 
  'OB-Enhancements extend the OmniBrowser framework with new features such as multiple selection of elements in columns, a package-based view on the image instead of using just class categories, or smart groups to categorize source artifacts.
  This package requires the latest version of the OmniBrowser framework.'.
  	info maintainer: 'David Röthlisberger'.
  	info homepage: 'http://source.wiresong.ca/ob/'.
  	info squeakMapID: ''.
+ 	info url: 'http://source.wiresong.ca/ob/OB-Enhancements-dr.191.mcz'.
- 	info url: 'http://source.wiresong.ca/ob/OB-Enhancements-dr.176.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser' 'OmniBrowser-Morphic' 'OmniBrowser-Standard').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.wiresong.ca/ob/OB-Enhancements-dr.176.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OB-Enhancements'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>BTree (in category 'Persistence') -----
  BTree
  
  	self name: 'BTree'.
  	self version: '49'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'This is an implementation of the BTree data structure as a Smalltalk collection.  It provides log(n) inserts, deletes, and retrieves of values by key.  The keys have to be sortable (ie, Magnitudes).
  
  This is useful in situations where you want to minimize the number and size of individual objects that need to be accessed when using a large collection - for example, when objects are being swapped out to an object database such as GOODS.  It is probably not a good choice for a collection that will be kept entirely in memory.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/BTree/Collections-BTree-avi.49.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/BTree/Collections-BTree-avi.49.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'BTree'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>DynamicProtocols (in category 'Development') -----
  DynamicProtocols
  
  	self name: 'DynamicProtocols'.
  	self version: '0.67'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'A dynamic protocol is a category (displayed in the 3rd pane of your browser) whose content is computed dynamically based on the currently selected class. If a dynamic protocol is empty then it is not shown.
  
  This system is based on an idea of Nathanael Sharli and Andrew P. Black (see ''A Browser For Incremental Programming'')
  
  Here is a small list of possible dynamic protocols:
  
  - HaltUsage: displays all methods containing a call to #halt
  - Override: contains methods that are defined in the superclasses and redefined in the current class
  - Duplicated: shows methods that have the same source code as in their super class
  - RecentlyModified, SuperSend...
  
  A preference system has been set to permit the selection of desired dynamic protocols. After having browsed at least one class using OmniBrowser, you can set your preferred protocols using the Preference Browser in the category ''dynamic protocols''.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.squeaksource.com/DynamicProtocols'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/DynamicProtocols/DynamicProtocols-dc.67.mcz'.
  	self provides: #().
  
  	self dependsOn: #('ClassSelectorSets' 'OmniBrowser-Standard').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/DynamicProtocols/DynamicProtocols-dc.67.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'DynamicProtocols'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ShoutWorkspace (in category 'Uncategorized') -----
  ShoutWorkspace
  
  	self name: 'ShoutWorkspace'.
  	self version: '1-tween.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Uncategorized'.
  	info description: 
  'Brings colors to the Workspace. Use Open->Shout Workspace to get the new workspace.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://damiencassou.seasidehosting.st/seaside/pier'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/shout/ShoutWorkspace.1-tween.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Shout').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/shout/ShoutWorkspace.1-tween.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ShoutWorkspace'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Aida (in category 'Web Development') -----
  Aida
  
  	self name: 'Aida'.
  	self version: '5.6'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'AIDA/Web is a web server and framework for complex web applications with integrated Ajax support, rich collection of web components to build web pages programatically, MVC-like separation of presentation from domain, nice looking and bookmarkable url links, with integrated session and security management and many more.
  
  What''s new in 5.6?
  
     - class SwazooAida for easier start: just doit SwazooAida demoStart
     - run on all interfaces, any host: SwazooAida startOn: somePort,
       useful for running behind load balancers
     - enhanced reliability and performance serving directly to
       the Internet
     - multilingual support for serving domain objects in many languages
     - Party/Role framework for modeling complex relationships among
       different parties (persons, companies). Useful among other for more
       complex security scenarios
     - upgrade to Prototye 1.6.0, Scriptaculous 1.8.0
     - more understandable reorganization of packages
  
  '.
  	info maintainer: 'mivsek'.
  	info homepage: 'http://www.aidaweb.si/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Aida/Aida-5.6.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Swazoo').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Aida/Aida-5.6.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Aida'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>UniversesOmniBrowser (in category 'Group Development') -----
  UniversesOmniBrowser
  
  	self name: 'Universes OmniBrowser'.
  	self version: '0.35'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'Provides a better universe browser based on the OmniBrowser framework.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/OBUniverse/OBUniverse-dc.35.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser-Full' 'Universes').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/OBUniverse/OBUniverse-dc.35.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Universes OmniBrowser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>LambdaMessageSend (in category 'Model Extension') -----
  LambdaMessageSend
  
  	self name: 'LambdaMessageSend'.
  	self version: '16'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'This package implements a specialized MessageSend subclass and an associated API for functional programming in Squeak.
  
  See the test cases in FunctionalTalkTest for comprehensive documentation'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.zogotounga.net/comp/squeak/functionaltalk.htm'.
  	info squeakMapID: ''.
  	info url: 'http://map.squeak.org/accountbyid/5f9bef44-1fbb-4dd6-8f10-a69862ad5674/files/FunctionalTalk-17.st'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/5f9bef44-1fbb-4dd6-8f10-a69862ad5674/files/FunctionalTalk-17.st'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'LambdaMessageSend'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SeasideAXAnnouncementsMenu (in category 'Example/Tutorial') -----
  SeasideAXAnnouncementsMenu
  
  	self name: 'Seaside-AXAnnouncementsMenu'.
  	self version: '1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Example/Tutorial'.
  	info description: 
  'A small example using announcements to implement a simple menu in seaside.'.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: 'http://www.squeaksource.com/AXAnnouncements.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/AXAnnouncements/AnnouncementMenu-kb.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #('AXAnnouncements' 'Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/AXAnnouncements/AnnouncementMenu-kb.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Seaside-AXAnnouncementsMenu'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>NamespaceTools (in category 'Tools') -----
  NamespaceTools
  
  	self name: 'NamespaceTools'.
  	self version: '36'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Tools'.
  	info description: 
  'This is a "Toolset" currently consisting of a NamespaceBrowser, NamespaceWorkspace and a PackageManager.
  
  This package is only of use to curious programmers and is not ready for general consumption. To try it out, type "NamespaceExamples openPackageManager".
  
  This version is strictly for adventurous developers only; it is very buggy. Documentation is at http://gulik.pbwiki.com/Namespaces'.
  	info maintainer: 'Michael van der Gulik'.
  	info homepage: 'http://gulik.pbwiki.com/Namespaces'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/SecureSqueak/NamespaceTools-mvdg.36.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Namespaces' 'PlusTools').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/SecureSqueak/NamespaceTools-mvdg.36.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'NamespaceTools'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Squeakdevpackagesbeta (in category 'Development') -----
  Squeakdevpackagesbeta
  
  	self name: 'Squeak dev packages beta'.
+ 	self version: '0.30'.
+ 	self worksIn: #( PackagesSqueak310U )
- 	self version: '0.28'.
  
  	info category: 'Development'.
  	info description: 
  'Abstract package that only depends on other packages. This packages are used to build a squeak distribution for developers.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'nil'.
  	self provides: #().
  
+ 	self dependsOn: #('Algernon' 'Diff Tools' 'OmniBrowser-Tools' 'Squeak dev packages' 'ToolBuilder integration for UI Themes').
- 	self dependsOn: #('Algernon' 'Diff Tools' 'Nice fonts' 'SUnitGUI-improved' 'Squeak dev packages' 'ToolBuilder integration for UI Themes').
- 
- 	self load: [
- 	].
  
+ !
- 	self unload: [
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>IRCe (in category 'Network') -----
  IRCe
  
  	self name: 'IRCe'.
  	self version: '10.7.6-2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'This is a significant rewrite of the built-in Squeak IRC client GUI. A new user interface includes having one console window per connection and then having all console messages, channel messages and private messages contained inside the main console window using tabbed swapped panes.                                         
  
  Numerous other changes are also included but are not described here. The change-set contains documentation for all features added or modified.
  
  Instructions at http://squeak.preeminent.org/irc-help/irc-help.html'.
  	info maintainer: 'Frank Caggiano'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://kilana.unibe.ch:8888/IRC/Network-IRC-fc.10.7.6.mcz'.
  	self provides: #().
  
  	self dependsOn: #('ExternalWebBrowser' 'FFI').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://kilana.unibe.ch:8888/IRC/Network-IRC-fc.10.7.6.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'IRCe'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>AST (in category 'Model Extension') -----
  AST
  
  	self name: 'AST'.
  	self version: '160'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'The Abstract Syntax Tree of Squeak code. Used by the Refactoring Engine and NewCompiler.'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/AST'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/AST/AST-lr.160.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/AST/AST-lr.160.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'AST'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PropertyList (in category 'Data Structures') -----
  PropertyList
  
  	self name: 'PropertyList'.
  	self version: '5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Data Structures'.
  	info description: 
  'This package can currently read or write the old NeXT style .plist files as well as read the newer XML style extensively used in Mac OS X.
  
  The old format is supported by PropertyListStream, which works much like DataStream or ReferenceStream, eg,
  
  dict := (PropertyListStream on: (FileStream fileNamed: ''old.plist'')) next.
  
  The new format is supported by XMLPropertyListReader, which has a different API:
  
  dict := (XMLPropertyListReader on: (FileStream fileNamed: ''new.plist'')) root.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://squeaksource.com/PropertyList/PropertyList-avi.5.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://squeaksource.com/PropertyList/PropertyList-avi.5.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'PropertyList'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>TraitsOmniBrowser (in category 'Code Browsing') -----
  TraitsOmniBrowser
  
  	self name: 'TraitsOmniBrowser'.
  	self version: '0.39'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'This extends the Omnibrowser to work with Traits enabled Squeak. Prerequisites: OmniBrowser package installed on Squeak with Traits.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.squeaksource.com/TraitsOmniBrowser.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/TraitsOmniBrowser/TraitsOmniBrowser-dc.39.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/TraitsOmniBrowser/TraitsOmniBrowser-dc.39.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'TraitsOmniBrowser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierModel (in category 'Development') -----
  PierModel
  
  	self name: 'Pier-Model'.
  	self version: '1.0.16.221'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Pier is a powerful and extensible implementation of a meta-described content management and Wiki system, written with objects from top to bottom: (1) Object-Oriented Design: Pier features a fully object oriented and meta-described domain model. As an example, the content of the pages is parsed and stored as a tree of different entities representing text, links, tables, lists, etc. (2) Extensibility: Everything in Pier can be extended: page types, storage mechanism, actions, security mechanism, web-server, etc. Plug-ins can be shared within the community and loaded independently of each other into the system. (3) Open Source: Pier is released under the MIT license which grants unrestricted rights to copy, modify, and redistribute as long as the original copyright and license terms are retained. (4) Test Suites: Pier is heavily tested. There are more than 1200 unit tests included with the core of Pier. This makes it easy to change and verify the code and comes in extremely useful when porting Pier to other Smalltalk dialects or when writing extensions.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pier/Pier-Model-lr.221.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Magritte-Model').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pier/Pier-Model-lr.221.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Model'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Monticello2OmniBrowser (in category 'Group Development') -----
  Monticello2OmniBrowser
  
  	self name: 'Monticello2-OmniBrowser'.
  	self version: '0.17'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'Monticello is a distributed version control system.
  
  Monticello 2 addresses the problems we encountered with Monticello 1. They mostly stem from a common cause: its unit of versioning, the package, is too coarse for many situations that arise in normal development.
  
  This package provides an a browser'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://wiki.squeak.org/squeak/5624'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Monticello2/Monticello2OB-dc.17.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Monticello2-Core' 'Monticello2-Squeak' 'OmniBrowser' 'OmniBrowser-Morphic').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Monticello2/Monticello2OB-dc.17.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Monticello2-OmniBrowser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>DictionaryBrowser (in category 'Development') -----
  DictionaryBrowser
  
  	self name: 'DictionaryBrowser'.
  	self version: '0.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'DictionaryBrowser is a basic query and results browser for dictionary servers that implement the RFC 2229 dictionary server protocol.
  
  Use "DictionaryBrowser open" or "DictionaryBrowser openExistingWith: ''squeak''" to get started.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/DictionaryBrowser-rkris.4.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/DictionaryBrowser-rkris.4.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'DictionaryBrowser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3DImport (in category 'Graphics') -----
  Balloon3DImport
  
  	self name: 'Balloon3D-Import'.
  	self version: '0.3.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-Import-ar.3.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Balloon3D-Kernel').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-Import-ar.3.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D-Import'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MorseCode (in category 'Uncategorized') -----
  MorseCode
  
  	self name: 'Morse Code'.
  	self version: '2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Uncategorized'.
  	info description: 
  'Send messages in morse code. Set the character speed and pitch, then
  start sending messages. Uses QueueSound class.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/MorseCode.02.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/MorseCode.02.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Morse Code'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Toothpick (in category 'Model Extension') -----
  Toothpick
  
  	self name: 'Toothpick'.
  	self version: '0.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'Toothpick is a simple tool for logging things of interest in Smalltalk. It''''s easy to use, very lightweight, and highly configurable. The basic design idea behind Toothpick was to separate something to be logged from the three things one needs to think about when logging it:
  
  * Whether to log it
  * Where to log it
  * How to log it
  
  Each of these three aspects is represented by a separate class hierarchy, and you can mix and match aspects to provide you with the optimal logging solution for your needs.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.metaprog.com/Toothpick'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Toothpick/Toothpick-tbn.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Toothpick/Toothpick-tbn.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Toothpick'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MagmaSeasidealpha (in category 'Persistence') -----
  MagmaSeasidealpha
  
  	self name: 'Magma Seaside-alpha'.
  	self version: '1.0.86'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Greatly enhanced
  
  - control panel for magma
  - shared sessions
  - support for detailed logging
  '.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: 'http://wiki.squeak.org/squeak/5817'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/MagmaTester/Magma%20seaside-kph.86.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Magma 1.0 tester' 'Seaside-beta' 'Seaside28Jetsam').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/MagmaTester/Magma%20seaside-kph.86.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magma Seaside-alpha'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierDesign (in category 'Web Development') -----
  PierDesign
  
  	self name: 'Pier-Design'.
  	self version: '1.0.16.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Enabled design editing tools in the context of the applied page.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pieraddons/Pier-Design-lr.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pieraddons/Pier-Design-lr.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Design'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierPersistencyManager (in category 'Development') -----
  PierPersistencyManager
  
  	self name: 'Pier-PersistencyManager'.
  	self version: '1.0.16/16'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Pier persistency mechanisms for Squeak.'.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pier/Pier-PersistencyManager-kph.16.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Model').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pier/Pier-PersistencyManager-kph.16.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-PersistencyManager'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Lisp (in category 'Languages and Extensions') -----
  Lisp
  
  	self name: 'Lisp'.
  	self version: '1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Languages and Extensions'.
  	info description: 
  'GUI works only in MVC.
  
   How to start
  
   1) evaluate:
  
   LispInterpreter open
  
   or
  
   LispInterpreter fullOpen
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Lisp-md.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Lisp-md.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Lisp'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierMagma (in category 'Web Development') -----
  PierMagma
  
  	self name: 'Pier-Magma'.
  	self version: '1.38'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Extension to pier providing Magma persistence'.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pier/Pier-Magma-kph.38.mcz'.
  	self provides: #('Pier-Magma').
  
  	self dependsOn: #('Magma seasideHelper' 'Pier-Model').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pier/Pier-Magma-kph.38.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Magma'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SeasideHTML5beta (in category 'Web Development beta') -----
  SeasideHTML5beta
  
  	self name: 'Seaside-HTML5-beta'.
  	self version: '2.8.411.5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development beta'.
  	info description: 
  'HTML5 support moved out of Seaside2.8'.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: 'http://www.seaside.st/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Seaside/HTML5-pmm.5.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Seaside-beta').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Seaside/HTML5-pmm.5.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Seaside-HTML5-beta'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>VersionsBrowser (in category 'Code Browsing') -----
  VersionsBrowser
  
  	self name: 'VersionsBrowser'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'This is the new version of the VersionsBrowser for use with 3.10 and beyond. It has been refactored to support the (future) archaeological work over the entire history of the Squeak source code.
  '.
  	info maintainer: 'Maurice Rabb'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Archaeology/Tools-Archaeology-m3r.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Archaeology/Tools-Archaeology-m3r.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'VersionsBrowser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>eCompletionOmniBrowser (in category 'Code Browsing') -----
  eCompletionOmniBrowser
  
  	self name: 'eCompletionOmniBrowser'.
  	self version: '0.4'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  ''.
  	info maintainer: ''.
  	info homepage: 'http://www.squeaksource.com/eCompletion'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/eCompletion/ECompletionOmniBrowser-dc.4.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser' 'eCompletion').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/eCompletion/ECompletionOmniBrowser-dc.4.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'eCompletionOmniBrowser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SmallDEVS (in category 'Simulation') -----
  SmallDEVS
  
  	self name: 'SmallDEVS'.
  	self version: '2006-12-6'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Simulation'.
  	info description: 
  'SmallDEVS is a new, lightweight implementation of B. Zeigler''s DEVS (Discrete event systems specification) formalism. It is an experimental software intended for research and education. It allows for experimenting with:
  
      * prototype-based object-oriented model construction,
      * interactive modeling and simulation,
      * multisimulation and reflective simulation. '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: 'http://perchta.fit.vutbr.cz:8000/projekty/10'.
  	info squeakMapID: ''.
  	info url: 'http://perchta.fit.vutbr.cz:8000/projekty/uploads/10/SmallDEVS-061206.sar'.
  	self provides: #().
  
  	self dependsOn: #('Connectors' 'SIXX' 'YAXO').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://perchta.fit.vutbr.cz:8000/projekty/uploads/10/SmallDEVS-061206.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SmallDEVS'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierMath (in category 'Web Development') -----
  PierMath
  
  	self name: 'Pier-Math'.
  	self version: '1.0.16.6'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Pier LaTeX math mode plugin.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://source.lukas-renggli.ch/pieraddons/Pier-Math-lr.6.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.lukas-renggli.ch/pieraddons/Pier-Math-lr.6.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Math'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Connectors (in category 'Constraints') -----
  Connectors
  
  	self name: 'Connectors'.
  	self version: '2.3-187'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Constraints'.
  	info description: 
  'Connectors is an application for making structured/connected drawings in Morphic. It adds a new kind of Morph (NCConnectorMorph) that can connect other Morphs together (and stay connected). There are also a number of other shapes, flaps, and tools for making your own drawings.
  
  It comes with some sample shapes in flaps for making UML class diagram and state diagrams.
  
  It''s also a framework for making your own structured drawing editors. There is an easy to use API for querying drawing structure, constructing drawings, and more.'.
  	info maintainer: 'ls'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/1773'.
  	info squeakMapID: ''.
  	info url: 'http://map.squeak.org/accountbyid/092daeeb-7a37-427f-8afb-66bf2db74f98/files/ConnectorsFor3.8-187.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/092daeeb-7a37-427f-8afb-66bf2db74f98/files/ConnectorsFor3.8-187.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Connectors'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Exupery (in category 'System') -----
  Exupery
  
  	self name: 'Exupery'.
  	self version: '0.14'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'Exupery is a byte code compiler written in Squeak. It has been written fully test first with both customer and acceptance tests.
  
  The project is a personal master work, it is meant to both be useful in itself and help me improve my personal programming skills.
  
  It is going to be a compiler for leaf methods first, providing an alternative to writing plugins as a performance improvement.
  
  The programming exersize is complexity control. Compilers are much harder to write than interpreters yet in theory they should be intermediate generation (equivilent to the interpreter) plus a back-end. Both parts are individually well understood.'.
  	info maintainer: 'Bryce Kampjes <bryce at kampjes.demon.co.uk>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Exupery/Exupery-wbk.321.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Exupery/Exupery-wbk.321.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Exupery'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Nile (in category 'Model Extension') -----
  Nile
  
  	self name: 'Nile'.
  	self version: '1.0.122'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'Nile is a complete reimplementation of the squeak stream hierarchy. It provides:
  
      * traits for code reuse.
      * lots of tests: same tests are used for the squeak stream hierarchy and Nile (they are implemented in traits).
      * lots of clients to verify the reusability.
      * a diagram of the implementation: http://damien.cassou.free.fr/documents/internship_2007/nile/complete_hierarchy.pdf '.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.squeaksource.com/Nile/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Nile/Nile-All-dc.122.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Nile-Base' 'Nile-Clients' 'Nile-Tests').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Nile/Nile-All-dc.122.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Nile'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>TimeZoneDatabase (in category 'Uncategorized') -----
  TimeZoneDatabase
  
  	self name: 'TimeZoneDatabase'.
  	self version: '1.2.5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Uncategorized'.
  	info description: 
  'This is a time zone database for Smalltalk. It answers the number of seconds
  offset from UTC for any time zone at any point in time in the range of the
  database rule set, as well as the number of leap seconds for a point in time
  (for tzfiles which contain the leap second rules).
  
  A full time zone database requires access to tzfile data files, typically
  distributed with Unix (Linux) systems. A limited set of tzfile files is provided
  to initialize the database and demonstrate its functions.
  ~
  '.
  	info maintainer: 'Dave Lewis <lewis at mail.msen.com>'.
  	info homepage: 'http://wiki.squeak.org/squeak/1076'.
  	info squeakMapID: ''.
  	info url: 'http://wiki.squeak.org/squeak/uploads/1076/TimeZoneDatabaseV1-2-5-dtl.cs.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://wiki.squeak.org/squeak/uploads/1076/TimeZoneDatabaseV1-2-5-dtl.cs.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'TimeZoneDatabase'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SharedStreams (in category 'Development') -----
  SharedStreams
  
  	self name: 'SharedStreams'.
  	self version: '1.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'SharedStreams introduces SharedBufferStream and SharedBidirectionalStream.
  
  SharedBufferStream is like a SharedQueue (FIFO) but for a stream of 
  bytes/characters instead of separate objects. It can be used as a "socket" 
  between Squeak processes in order for them to communicate with a stream 
  protocol.
  
  A SharedBidirectionalStream is like a "socket" between two (or more) Squeak 
  processes. Internally it uses two SharedBufferStreams, one for input and one for
  output. It handles multiple Processes at both ends.
  
  In order for the protocol to be the same no matter what side you are of the
  stream you can access the "other end" by calling #otherEnd.
  A SharedBidirectionalStream then creates a single mirror twin brother
  which it shares the two internal SharedBufferStream with - but with the inStream
  and outStream twisted.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SharedStreams-1_1.st.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SharedStreams-1_1.st.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SharedStreams'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OpenOfficeImporter (in category 'Office') -----
  OpenOfficeImporter
  
  	self name: 'OpenOffice Importer'.
  	self version: '17'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Office'.
  	info description: 
  'Squeak is the new media. To be the new media Squeak has to give us the option to convert a lot already created documents.
  
  OpenOffice is an open source project and its format is well specified and it''s based on XML and Zip (see http://xml.openoffice.org). OpenOffice also has a lot of good job to handle propietary formats so, importing OO format, we''ll able to import really a lot of content.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/3624'.
  	info squeakMapID: ''.
  	info url: 'http://map.squeak.org/accountbyid/7670b859-735e-4027-b5cd-db4b61bac95e/files/OpenOffice-Importer-dgd.17.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/7670b859-735e-4027-b5cd-db4b61bac95e/files/OpenOffice-Importer-dgd.17.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OpenOffice Importer'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Seaside28Jetsam (in category 'Web Development') -----
  Seaside28Jetsam
  
  	self name: 'Seaside28Jetsam'.
  	self version: '2.8.545'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Patches to the base seaside
  
  The version number indicates the version of seaside this is synced with.'.
  	info maintainer: 'kph'.
  	info homepage: 'http://www.squeaksource.com/Jetsam.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Jetsam/Seaside28Jetsam-kph.67.mcz'.
  	self provides: #('Seaside28Jetsam-Useful-CSS' 'Seaside28Jetsam-NiftyCorners' 'Seaside28Jetsam' 'Seaside28Jetsam-Supersleight' 'Seaside28Jetsam-Blueprint').
  
  	self dependsOn: #('KernelExt-kph' 'Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Jetsam/Seaside28Jetsam-kph.67.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Seaside28Jetsam'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ROE (in category 'Persistence') -----
  ROE
  
  	self name: 'ROE'.
  	self version: '42'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'A library for manipulating relational queries as first class Smalltalk expressions, and generating SQL from them.
  
  There''s no documentation yet, but you can maybe muddle through using the test cases and some comments I made on my blog here:  http://www.cincomsmalltalk.com/userblogs/avi/blogView?searchCategory=databases .
  
  Requires the PostgreSQL Client.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Roe-avi.42.mcz'.
  	self provides: #().
  
  	self dependsOn: #('PostgreSQL Client').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Roe-avi.42.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ROE'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>VMMaker (in category 'System') -----
  VMMaker
  
  	self name: 'VMMaker'.
  	self version: '3.8b6.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'his package includes all the ObjectMemory/Interpreter classes, the VMMaker/Tool classes, the InterpreterPlugin hierarchy and all the assorted helper methods. It does <em>not</em> include the handwritten platform specific C code that you will also need. See the documentation for the specific release for more details.
  
  If you install this you will be able to build or simulate a VM or plugin - as long as you have the platform sources tree from our SubVersion server.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/VMMaker'.
  	info squeakMapID: ''.
  	info url: 'http://map.squeak.org/accountbyid/4340a66e-2296-48b7-9aa8-5305d303752f/files/VMMaker-3.8b6.mcz'.
  	self provides: #().
  
  	self dependsOn: #('FFI' 'Speech').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/4340a66e-2296-48b7-9aa8-5305d303752f/files/VMMaker-3.8b6.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'VMMaker'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>HTTPClient (in category 'Network') -----
  HTTPClient
  
  	self name: 'HTTPClient'.
  	self version: '19'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'A Squeak port of Steve Waring''s HTTP client.  (The original, Dolphin package is available at http://www.dolphinharbor.org/dh/projects/httpclient/index.html.)  The Squeak port is usable, but still needs a lot of cleanup work.
  
  The Squeak port must be installed using an up-to-date version of MCInstaller; the easiest way to get that is to update to SM2.
  
  See the class side of SptHTTPRequest for example usage.
  
  Features:
  
      * HTTP 1.1 persistent connections.
      * Ability to process requests in a background process and set timeouts.
      * Cookie parsing/sending.
      * Partial range requests.
      * Automatic following of redirections.
      * Streaming of responses to writeStreams/fileStreams.
      * Basic Authentication.
      * Support for Proxies.
      * Flexible progress notifications.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SWHTTPClient-bkv.19.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SWHTTPClient-bkv.19.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'HTTPClient'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>TestBrowser (in category 'Development') -----
  TestBrowser
  
  	self name: 'TestBrowser'.
  	self version: '120'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  ''.
  	info maintainer: ''.
  	info homepage: 'http://www.squeaksource.com/DeveloperWorkspace/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/DeveloperWorkspace/TestBrowser-tbn.120.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/DeveloperWorkspace/TestBrowser-tbn.120.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'TestBrowser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>CommandShell (in category 'System') -----
  CommandShell
  
  	self name: 'CommandShell'.
  	self version: '4.2.3'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'CommandShell is a Smalltalk simulation of a Unix command shell, with a simple dumb terminal window in Morphic and MVC. It is useful for running programs without leaving Squeak, and for piping command output directly into Squeak. Can be loaded and run on any platform, but is most useful on Unix, Linux and Windows systems with OSProcess. On Windows, command pipelines are not yet implemented for external commands, but you can run Windows programs from the CommandShell "Squeak shell" as well as pipelines with internal shell commands. A simple script processing capability is also included.
  
  The ExternalCommandShell allows Squeak to be used directly as a Unix shell, similar to /bin/sh but with access to Smalltalk expressions and the Squeak object environment. To initiate external shell processing, evaluate "ExternalCommandShell start". The image can be saved and restarted with "squeak -headless myImage" to run it as a headless Squeak shell. See the class comments in ExternalCommandShell for more information.'.
  	info maintainer: 'dtl'.
  	info homepage: 'http://wiki.squeak.org/squeak/1914'.
  	info squeakMapID: ''.
  	info url: 'http://wiki.squeak.org/squeak/uploads/1914/CommandShellV4-2-3.sar'.
  	self provides: #().
  
  	self dependsOn: #('OSProcess').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://wiki.squeak.org/squeak/uploads/1914/CommandShellV4-2-3.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'CommandShell'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SIXX (in category 'Persistence') -----
  SIXX
  
  	self name: 'SIXX'.
  	self version: '0.95'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'SIXX is an XML serializer/deserializer written in Smalltalk 
  (currently Squeak 3.9, VisualWorks 5i.4 - 7, and Dolphin XP are supported).
  
  The purpose is to store and load Smalltalk objects in a portable, dialect-independent XML format.
  
  Example:
  		
  array := Array with: 1 with: ''''Hello'''' with: Date today.
  array sixxString.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'ftp://swikis.ddo.jp/SIXX/squeak/SIXX20070812.sar'.
  	self provides: #().
  
  	self dependsOn: #('YAXO').
  
+ !
- 	self load: [
- 		Installer installUrl:'ftp://swikis.ddo.jp/SIXX/squeak/SIXX20070812.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SIXX'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierLightBox (in category 'Web Development') -----
  PierLightBox
  
  	self name: 'Pier-LightBox'.
  	self version: '1.0.16.6'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Pier lightbox plugin.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pieraddons/Pier-LightBox-dc.6.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pieraddons/Pier-LightBox-dc.6.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-LightBox'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>FreeTypePlusplugins (in category 'Fonts') -----
  FreeTypePlusplugins
  
  	self name: 'FreeType Plus-plugins'.
  	self version: '0.15'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Fonts'.
  	info description: 
  'Installs plugins (for Windows/Linux) into VM executable directory.
  
  For Mac OS X - use the most recent VM (which includes the FT2Plugin) and get the modified BitBltPlugin from ftp://ftp.smalltalkconsulting.com/experimental/BitBltPlugin.v1.0.0b1.FreeTypePlus.bundle.zip'.
  	info maintainer: 'amtween at hotmail.com'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://map.squeak.org/accountbyid/46dcf6af-067d-43e3-9fc9-d7010e067153/files/FreeTypePluginInstaller3.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/46dcf6af-067d-43e3-9fc9-d7010e067153/files/FreeTypePluginInstaller3.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'FreeType Plus-plugins'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SendTreeExplorer (in category 'Development') -----
  SendTreeExplorer
  
  	self name: 'SendTreeExplorer'.
  	self version: '1alpha'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'This little goodie provides new tools SendTreeExplorer and MessageSendTree.  Like MessageTally, MessageSendTree traces the execution of a block in simulation. There are three key differences:
      1.	Rather than tallying the number of times each method is called in a given context, MessageSendTree traces and returns the exact tree of the sends made, in send order. 
      2.	MessageSendTree is designed to work with a SendTreeExplorer which presents the results in a hierarchical list view rather than flattened to a text pane. 
      3.	MessageSendTree allows all sends above a given method to be ignored, so that such a method can be conveniently traced deep in the execution of the block without the bother of wading through a long send chain to get there. '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SendTreeExplorer-JW.1.cs.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SendTreeExplorer-JW.1.cs.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SendTreeExplorer'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Installer (in category 'Group Development') -----
  Installer
  
  	self name: 'Installer'.
  	self version: '4.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'Installer provides a simple Domain Specific Language for installing packages from monticello and squeakmap of various version.
  
  One design decision is to be able to paste scripts a workspace and run and tested from there without any special editing.
  
  Includes support for Package Universes
  '.
  	info maintainer: 'kph'.
  	info homepage: 'http://wiki.squeak.org/squeak/Installer'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Installer/Installer-Core-kph.187.mcz'.
  	self provides: #('Installer').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Installer/Installer-Core-kph.187.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Installer'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Seaside28JetsamUsefulCSS (in category 'Web Development') -----
  Seaside28JetsamUsefulCSS
  
  	self name: 'Seaside28Jetsam-Useful-CSS'.
  	self version: '0.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Class for constructing css'.
  	info maintainer: 'kph'.
  	info homepage: 'http://www.squeaksource.com/Jetsam.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Jetsam/Seaside28Jetsam-Useful-CSS-kph.3.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Jetsam/Seaside28Jetsam-Useful-CSS-kph.3.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Seaside28Jetsam-Useful-CSS'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Rio (in category 'Model Extension') -----
  Rio
  
  	self name: 'Rio'.
  	self version: '0.34.29'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'A file IO interface inspired by http://rio.rubyforge.org , potentially replaces FileDirectory.
  
  This is the full distribution of Rio.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://wiki.squeak.org/squeak/5929'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Rio/Rio-Grande-kph.29.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Null' 'Rio-Kernel').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Rio/Rio-Grande-kph.29.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Rio'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierGoogle (in category 'Web Development') -----
  PierGoogle
  
  	self name: 'Pier-Google'.
  	self version: '1.0.16.5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Integration of Google services into Pier.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://source.lukas-renggli.ch/pieraddons/Pier-Google-lr.5.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.lukas-renggli.ch/pieraddons/Pier-Google-lr.5.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Google'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MagmaClient (in category 'Persistence') -----
  MagmaClient
  
  	self name: 'Magma Client'.
  	self version: '0.9beta'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'The client component for Magma.
  
  Magma is a highly transparent, multi-user object-database.  It offers Squeak users, as a community, concurrent access to a large model of objects, as well as query power comparable to relational databases for locating any object in the model.  It is easy to learn and use.'.
  	info maintainer: 'Chris Muller <chris at funkyobjects.org>'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/2665'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Magma/MagmaClientLoader-cmm.23.mcz'.
  	self provides: #('Magma client').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Magma/MagmaClientLoader-cmm.23.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magma Client'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierEditorEnh (in category 'Web Development') -----
  PierEditorEnh
  
  	self name: 'Pier-EditorEnh'.
  	self version: '1.0.16.12'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Pier editor enhancement plugin.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pieraddons/Pier-EditorEnh-lr.12.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pieraddons/Pier-EditorEnh-lr.12.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-EditorEnh'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MinneStore (in category 'Persistence') -----
  MinneStore
  
  	self name: 'MinneStore'.
  	self version: '2.8'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Object Database Management System for
  Visual Smalltalk 3.1, Dolphin Smalltalk, VisualAge Smalltalk, VisualWorks Smalltalk and Squeak.
  
  Its licensed under the MIT License
  
  Download the 2.7, 2.8 and 2.9 version port from the Stephen Pope''s site ftp://ftp.create.ucsb.edu/pub/stp/OODB/'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SMS.2.08.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SMS.2.08.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'MinneStore'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>GOODS (in category 'Persistence') -----
  GOODS
  
  	self name: 'GOODS'.
  	self version: '80'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'GOODS is a distributed, language-neutral object database from Konstantin Knizhnik. It''s available from http://www.garret.ru/~knizhnik/goods.html .
  
  This client provides transparent storage of Smalltalk objects, or, given some extra type information, compatibility with the GOODS Java interface storage conventions, for easy sharing of object data between Squeak and Java.
  
  See http://minnow.cc.gatech.edu/squeak/3492 for more information.
  
  *Requires GOODS 2.72 or later*'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/GOODS/GOODS-avi.80.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/GOODS/GOODS-avi.80.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'GOODS'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Manzana (in category 'Simulation') -----
  Manzana
  
  	self name: 'Manzana'.
  	self version: '2003-1-21'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Simulation'.
  	info description: 
  'Really simple physics simulations with Morphs.
  
  Every Morph with mass contained in ManzanaUniversePasteUpMorph or in ManzanaPlanetPasteUpMorph with mass will be part in a simple simulation.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Manzana-2003-01-21.cs.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Manzana-2003-01-21.cs.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Manzana'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ZigZag (in category 'Games') -----
  ZigZag
  
  	self name: 'ZigZag'.
  	self version: '0.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Games'.
  	info description: 
  'Categoring system influenced by Ted Nelson''s ZigZag with graphical visualisation.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/zigzag.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/zigzag.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ZigZag'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>eCompletionTraits (in category 'Code Browsing') -----
  eCompletionTraits
  
  	self name: 'eCompletion-Traits'.
  	self version: '0.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'Complete variables, selectors, class names in your browser, workspace, debugger and other code holders.
  
  This package brings trait functionalities to eCompletion.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.squeaksource.com/eCompletion'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/eCompletion/ECompletionTraits-bar.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #('eCompletion').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/eCompletion/ECompletionTraits-bar.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'eCompletion-Traits'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ShoreComponentsbeta (in category 'Web Development beta') -----
  ShoreComponentsbeta
  
  	self name: 'ShoreComponents-beta'.
  	self version: '3.10'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development beta'.
  	info description: 
  'A set of useful components for Seaside.
  
  Shore Components project is a library of building blocks for Seaside.
  Currently it contains only few of them, but we hope that the project
  can serve as the meeting point for those people asking in mailing
  lists for such a library again and again.
  
  Anybody who has an interesting reusable component for Seaside and is
  willing to share it with community is strongly encouraged to do so.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.squeaksource.com/ShoreComponents.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ShoreComponents/ShoreComponents-3-pk.10.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Scriptaculous-beta' 'Seaside-beta').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ShoreComponents/ShoreComponents-3-pk.10.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ShoreComponents-beta'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OSProcess (in category 'System') -----
  OSProcess
  
  	self name: 'OSProcess'.
  	self version: 'V4-3-6'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'OSProcess provides access to the external operating system from Squeak. Plugins are provided for Unix, Linux, and Windows systems (loaded separately from SqueakMap packages). OSProcess can be loaded on other platforms as well, and placeholder classes are provided in the OSProcess hierarchy for other operating systems (Mac, OS/2, RiscOS), although support for these systems is not yet implemented. Load CommandShell for additional OSProcess functions, including class PipeableOSProcess, which allows reading from and writing to external processes through OS pipe streams.'.
  	info maintainer: 'lewis'.
  	info homepage: 'http://wiki.squeak.org/squeak/708'.
  	info squeakMapID: ''.
  	info url: 'http://wiki.squeak.org/squeak/uploads/708/OSProcessV4-3-6.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://wiki.squeak.org/squeak/uploads/708/OSProcessV4-3-6.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OSProcess'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ScriptManager (in category 'IDE') -----
  ScriptManager
  
  	self name: 'ScriptManager'.
  	self version: '0.6'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'IDE'.
  	info description: 
  'ScriptManager provides a tool to write documentation/code. This texts are organized into folders.'.
  	info maintainer: 'Damien Cassou'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/DeveloperWorkspace/ScriptManager-tbn.6.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/DeveloperWorkspace/ScriptManager-tbn.6.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ScriptManager'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Quotes (in category 'Games') -----
  Quotes
  
  	self name: 'Quotes'.
  	self version: '22'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Games'.
  	info description: 
  'A simple package that displays Quote/Author pairs in a window. The quotes are displayed sequentially or in a random order. The speed of the display is adjustable via a slider.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Quotes/Quote-Display-fc.22.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Quotes/Quote-Display-fc.22.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Quotes'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SmaCCruntime (in category 'Development') -----
  SmaCCruntime
  
  	self name: 'SmaCC runtime'.
  	self version: '13'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'SmaCC (Smalltalk Compiler-Compiler) is a freely available parser generator for Smalltalk. Use this package if you want to develop a new parser/scanner/compiler. SmaCC-Runtime is part of the Squeak Image, for developing new parsers, the dev package nees to be installed. SmaCC-Developments is for Squeak <3.8 SmaCCDev is the current development version for 3.9.'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/SmaccDevelopment/SmaCC-lr.13.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/SmaccDevelopment/SmaCC-lr.13.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SmaCC runtime'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierCommandsRemoveChildren (in category 'Web Development') -----
  PierCommandsRemoveChildren
  
  	self name: 'Pier-Commands-RemoveChildren'.
  	self version: '1.0.14.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Additional command for pier for removing nominated children'.
  	info maintainer: 'kph'.
  	info homepage: 'http://mc.lukas-renggli.ch/pieraddons.html'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pieraddons/Pier-Commands-RemoveChildren-kph.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Model').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pieraddons/Pier-Commands-RemoveChildren-kph.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Commands-RemoveChildren'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>DHBNumericalAnalysis (in category 'Mathematics') -----
  DHBNumericalAnalysis
  
  	self name: 'DHB Numerical Analysis'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Mathematics'.
  	info description: 
  'Smalltalk numerical analysis codes based on Didier Besset''s '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/DHBSqueakNumerical-1.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/DHBSqueakNumerical-1.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'DHB Numerical Analysis'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Units (in category 'Mathematics') -----
  Units
  
  	self name: 'Units'.
  	self version: '4'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Mathematics'.
  	info description: 
  'The Units package allows you to represent, convert, and perform arithmetic with physical unit values (e.g. distances, velocities, accelerations, etc).
  
  There is not much formal documentation, but most of the classes in this package have comments. The most important methods are those in Unit and UnitValue. You should look through all those.
  
  To add your own units, see the classes BaseUnit, DerivedUnit, NamedUnit, and PrefixedUnit, and look through the initialization code. You should duplicate what is done there to add your own units. Remember to send Unit initialize to make your changes take effect.
  
  Note that you can send  Unit printAbbreviated: true  or  Unit printAbbreviated: false  to control how units print.
  
  Ported to Squeak by Helge Horch'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Units/Units-md.4.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Units/Units-md.4.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Units'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3DWonderland (in category 'Graphics') -----
  Balloon3DWonderland
  
  	self name: 'Balloon3D-Wonderland'.
  	self version: '0.4'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-Wonderland-ar.4.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Balloon3D-Kernel' 'Balloon3D-Morphic' 'Balloon3D-Pooh' 'Balloon3D-VRML' 'Balloon3D-WonderlandConstants' 'Graphics-Tools').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-Wonderland-ar.4.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D-Wonderland'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierTests (in category 'Development') -----
  PierTests
  
  	self name: 'Pier-Tests'.
  	self version: '1.0.16.95'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Pier SUnit tests.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pier/Pier-Tests-lr.95.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Magritte-Tests' 'Pier-Model').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pier/Pier-Tests-lr.95.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Tests'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3DConstants (in category 'Graphics') -----
  Balloon3DConstants
  
  	self name: 'Balloon3D-Constants'.
  	self version: '0.4'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-Constants-ar.4.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-Constants-ar.4.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D-Constants'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OBMonticello (in category 'Group Development') -----
  OBMonticello
  
  	self name: 'OB-Monticello'.
  	self version: '0.30'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'OB-Monticello contains an implementation of the Monticello tools based on OmniBrowser. MCPackageBrowser is equivalent to the Morphic Monticello Browser. MCAllRepositoryBrowser is a new tool that provides most of your day to day in a single window.'.
  	info maintainer: 'Dale Henrichs'.
  	info homepage: 'http://source.wiresong.ca/ob/'.
  	info squeakMapID: ''.
  	info url: 'http://source.wiresong.ca/ob/OB-Monticello-dkh.30.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.wiresong.ca/ob/OB-Monticello-dkh.30.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OB-Monticello'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>RemoteFrameBuffer (in category 'Network') -----
  RemoteFrameBuffer
  
  	self name: 'RemoteFrameBuffer'.
  	self version: '34'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'Provides RFB (VNC) server and client, written entirely in Squeak.
  Both server and client implement a superset of the latest (version
  3.3.7) RFB protocol published by RealVNC.com (with extensions to
  support local cursor handling in the popular TightVNC client).
  
  The server transmits (or broadcasts) the Squeak desktop to remote
  VNC clients (either running natively on Unix, Mac or Windows, or
  running the Squeak client included in this same package).
  
  The client connects to and displays a remote framebuffer (provided
  either from a VNC server running natively on Unix, Mac, Windows, etc.,
  or from a remote Squeak image running the server included in this
  package).
  
  Full documentation is included (see the class comments in
  RFBServer and RFBClient, and the help items on the
  associated menus).
  '.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/RFB/RFB-ikp.3.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/RFB/RFB-ikp.3.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'RemoteFrameBuffer'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>RefactoringEngine (in category 'Development') -----
  RefactoringEngine
  
  	self name: 'Refactoring Engine'.
  	self version: '51'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Damien Cassou: This package is now obsolete. Use ''Refactoring Core'' instead.'.
  	info maintainer: 'Marcus Denker <denker at iam.unibe.ch>'.
  	info homepage: 'http://www.squeaksource.com/RefactoringEngine.html'.
  	info squeakMapID: ''.
  	info url: 'nil'.
  	self provides: #().
  
  	self dependsOn: #('AST').
  
+ !
- 	self load: [
- 	].
- 
- 	self unload: [
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MagritteMse (in category 'Development') -----
  MagritteMse
  
  	self name: 'Magritte-Mse'.
  	self version: '1.0.16.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'MSE file format integration to Magritte.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://smallwiki.unibe.ch/fame/mse/'.
  	info squeakMapID: ''.
  	info url: 'http://source.lukas-renggli.ch/mse/Magritte-Mse-lr.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Magritte-Model' 'Mse').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.lukas-renggli.ch/mse/Magritte-Mse-lr.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magritte-Mse'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SeasideSqueakAdapters (in category 'Web Development beta') -----
  SeasideSqueakAdapters
  
  	self name: 'Seaside-Squeak-Adapters'.
  	self version: 'pmm.3.mcz'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development beta'.
  	info description: 
  'The Squeak specific implementation classes for the Seaside-Adapters-Core package.'.
  	info maintainer: 'pmm'.
  	info homepage: 'http://www.squeaksource.com/Seaside29.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Seaside29/Seaside-Squeak-Adapters-pmm.3.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Seaside-Adapters-Core').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Seaside29/Seaside-Squeak-Adapters-pmm.3.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Seaside-Squeak-Adapters'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3DPooh (in category 'Graphics') -----
  Balloon3DPooh
  
  	self name: 'Balloon3D-Pooh'.
  	self version: '0.3.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-Pooh-ar.3.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Balloon3D-Kernel' 'Graphics-Tools').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-Pooh-ar.3.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D-Pooh'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>HTMLParser (in category 'Network') -----
  HTMLParser
  
  	self name: 'HTML-Parser'.
  	self version: '1.5-2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'Parses an HTML document into an XML DOM, using YAXO''s XMLElement.  This parser is HTML 4.01 compliant - it will accurately infer the structure of correct HTML, but it is not tolerant of broken markup.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/HTML-Parser.st'.
  	self provides: #().
  
  	self dependsOn: #('Network-HTML' 'YAXO').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/HTML-Parser.st'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'HTML-Parser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>NetworkHTML (in category 'Uncategorized') -----
  NetworkHTML
  
  	self name: 'Network-HTML'.
  	self version: '4'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Uncategorized'.
  	info description: 
  'An HTML parser and formatter.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Network-HTML-md.4.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Network-HTML-md.4.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Network-HTML'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>DynamicBindings (in category 'Languages and Extensions') -----
  DynamicBindings
  
  	self name: 'DynamicBindings'.
  	self version: '2.7'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Languages and Extensions'.
  	info description: 
  'DynamicBindings for Squeak
  by Stephen Pair <stephen at pairhome.net> 
  
  ===== Introduction =====
  
  You may create a hierarchy of DynamicBindings and directly manipulate the keys and values of those instances (just as you would any dictionary).  There is a root DynamicBindings that you may use to create new children if you like (but you can also create entirely separate hierarchies).  You can access this root with "DynamicBindings root".  To force a process to use one of your sets of DynamicBindings, you write code as follows (note, I only use ''PATH'' to highlight the similarity with normal OS environment variables):
  
  	myBindings _ DynamicBindings root newChild.
  	myBindings at: #PATH put: ''/bin:/usr/bin''.
  	myBindings bindDuring: 
  		[Bindings at: #PATH.  				"-> ''/bin:/usr/bin''"
  		Bindings at: #PATH put: (''/usr/local/bin:'', (Bindings at: #PATH)).
  		Bindings at: #PATH].  				"-> ''/usr/local/bin:/bin:/usr/bin''"
  
  For convenience, two methods have been added to Object that enable more direct access to bindings.  The following exampel is equivalent to the first:
  
  	myBindings _ DynamicBindings root newChild.
  	myBindings at: #PATH put: ''/bin:/usr/bin''.
  	myBindings bindDuring: 
  		[#PATH binding.  				"-> ''/bin:/usr/bin''"
  		#PATH binding: (''/usr/local/bin:'', (#PATH binding)).
  		#PATH binding].  				"-> ''/usr/local/bin:/bin:/usr/bin''"
  
  
  The first line creates a new set of bindings that is a child of the root bindings.  Any variables set in the root bindings are also visible in this new child environment.
  
  The second line sets the dynamic variable "PATH".
  
  The third line uses the evaluates the argument block in the context of our new set of bindings.
  
  The fourth line gets the value for the variable "PATH" (which we just set).
  
  The fifth line in the above example modifies the environment variable "PATH", but only for the duration that the enclosing block is active.
  
  Here is another example:
  
  	#PATH binding: ''/bin''.
  	Bindings clamp:
  		[#PATH binding: ''/usr/bin''.
  		#PATH binding]. 						"-> ''/usr/bin''"
  	#PATH binding.								"-> ''/bin''"
  
  This example shows the use of the #clamp: method to isolate a our dynamic bindings only for the duration of a block.  After the block finishes execution, the original set of bindings is restored.
  
  Scoping semantics:
  
  A dynamic variables'' scope is defined at runtime by an enclosing activation context.  To locate the active lexicon of dynamic variables, the system follows the activation stack until a context is encountered that defines the active DynamicBindings (this lookup is implemented using the exception handling system).  Any changes to the active DynamicBindings are visible in all activation contexts where that set of DynamicBindings are being used (which may include contexts in more than one activation stack).
  
  A bit about how it''s implemented:
  
  The bindings for a given method activation context are located using the exception handling mechanism (see BindingsLocator).  If a given stack does not have a handler that answers a set of bindings, then dummy contexts will be added to the top of the stack that will answer the global root set of bindings.
  
  Unlike other implementations, DynamicBindings do not use the activation stack to define the hierarchy of bindings.  Instances of DynamicBindings have their own parent instance variable and will locate enclosing variable scopes by following the chain of parents (*not* by looking for enclosing handlers of BindingsLocator).  Using this design, we are able to accomodate a broader range of usage scenarios.
  
  If you need to isolate the bindings of a given context stack such that future changes in the bindings are not visible to users of the current set of dynamic bindings (ie. if you use continuations), you can send the message #isolate to the BindingsAccessor (ie. use "Bindings isolate").
  
  ===== Release History =====
  
  Version 1.1:
  	- Packaged using KomPackaging (Squeak version only)
  	- Made Object>>binding: answer its argument
  	- Cleaned up a few obsolete methods from the old RuntimeEnvironments implementation
  
  Version 1.0:
  	- Initial release'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/KomHttpServer/DynamicBindings-gc.7.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/KomHttpServer/DynamicBindings-gc.7.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'DynamicBindings'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>BitArray (in category 'Data Structures') -----
  BitArray
  
  	self name: 'BitArray'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Data Structures'.
  	info description: 
  'Simple implementation of BitArray, which stores the bits.
  
  For the basic random access operations for a rather shorter array, you might want to consider ByteArray.
  
  BitArray supports the conversion from/to integers.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/BitArray1.cs.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/BitArray1.cs.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'BitArray'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SimpleLog (in category 'Development') -----
  SimpleLog
  
  	self name: 'SimpleLog'.
  	self version: '1.13'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Nice and simple logging. There are eight messages for logging based on severity. These correspond to the eight levels defined in syslog:
  
  7 - debug (Debug-level messages)
  6 - info (Informational)
  5 - notice (Normal but significant Condition)
  4 - warning (Warning Condition)
  3 - err (Error Condition)
  2 - crit (Critical Conditions)
  1 - alert (must be handled immediately)
  0 - emerg (System is unusable)
  	
  The absolutely easiest way to log is like this:
  
  	SLLog warn: ''Oopsidaisy''
  
  We only need to include the actual message in the string, timestamp etc is added automatically.
  You can also explicitly supply a "sender" object which can be anything you like, a symbol or a specific domain object even:
  
  	SLLog warn: ''Yowsa'' sender: #email
  
  SLLog uses printString on the sender when producing the log entry, so if you use domain objects - make sure they have a unique printOn: method defined so that you can distinguish them. See class side category "logging" and "logging shorthand" for the available log messages.
  
  By default there is a single emitter registered that logs on Transcript, you can turn this off with:
  
  	SLLog useTranscript: false
  
  And you can set a threshold for the above 8 syslog levels that should be logged onto Transcript using:
  
  	SLLog instance transcriptMaxLevel: 4
  
  ..or set a global threshold for all emitters:
  
  	SLLog instance globalMaxLevel: 4
  
  Global flushing of all emitters can be done using "SLLog flush" and should ideally be called regularly by some background process.
  
  Finally take a look at SLLogFile for details on how to add it as an emitter to get logging onto file instead of Transcript, and SLLogMorph for getting logging into a very nice UI that offers filtering, searching etc.
  
  '.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Logging/SimpleLog-kph.13.mcz'.
  	self provides: #('SimpleLog').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Logging/SimpleLog-kph.13.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SimpleLog'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SVI (in category 'IDE') -----
  SVI
  
  	self name: 'SVI'.
  	self version: '0.115'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'IDE'.
  	info description: 
  'SVI is a text editor for squeak that can be used in place of the PluggableTextMorph. SVI is designed to behave, as much as possible, like a standard text editor, so as not to confuse users that are not familiar with modal text editors. Nevertheless, SVI features extensive support for VIM and Emacs modes and commands, including:
  
  - incremental search
  - interactive search/replace
  - split panes
  - multilevel undo/redo
  - navigation, using keyboard driven menus and bookmarks, between classes, methods, files, and system windows
  - context sensitive help and command completion
  - customizable keybindings
  - ability to paste recently deleted, inserted, or copied text. Also, VIM-style "registers" 
  - support for VIM''s Normal, Visual and Linewise Visual modes, with extensive support for the VIM commands, motions, registers. Mark implementation supports method-to-method jumps , method-to-file, file-to-file, etc.
  
  By default, SVI supports many VIM commands. If you want SVI to support Emacs commands instead, be sure to take the tour of Emin (SVI''s "mini-emacs"). After loading SVI, execute "SVI openEminDocs" to take a tour of Emin. 
  
  Patches to make SVI work with StarBrowser and Celeste are available <a href="http://www.swerlingphoto.com/squeak/svi2/appPatches.html">here</a>. The Celeste version is provided as an example of how to fully integrate an application with SVI (with a recent message list, bookmarking, opening a celeste message in a split pane, etc). '.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.swerlingphoto.com/squeak/svi2/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/SVI/SVI-3.9v2-sps.115.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/SVI/SVI-3.9v2-sps.115.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SVI'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>RefactoringCore (in category 'Development') -----
  RefactoringCore
  
  	self name: 'Refactoring Core'.
  	self version: '5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'The refactoring engine of the old RefactoringBrowser. It does not include any browser and needs at least Squeak 3.9.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.squeaksource.com/RefactoringEngine.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/RefactoringEngine/Refactoring-Core-lr.5.mcz'.
  	self provides: #().
  
  	self dependsOn: #('AST').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/RefactoringEngine/Refactoring-Core-lr.5.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Refactoring Core'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Array2D (in category 'Data Structures') -----
  Array2D
  
  	self name: 'Array2D'.
  	self version: '1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Data Structures'.
  	info description: 
  'A simple 2D-Array implementation. 
  
  Neither storing nor sorting (otherwise inherited from ArrayedCollection) will work. Neither comparing nor most accessing mehods inherited from Sequenceable collection will work.  Actually, it''s a bad idea to inherit this class from collection at all!!!!!!
  
  This used to be part of the image. This SqueakMap package is provided
  for backward-compatibility.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Array2D-md.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Array2D-md.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Array2D'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Magma10tester (in category 'Persistence') -----
  Magma10tester
  
  	self name: 'Magma 1.0 tester'.
  	self version: 'r40'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Client, Server and Tester components for the Magma object database.
   '.
  	info maintainer: 'kph <keith_hodges at yahoo.co.uk>'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/2665'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Magma/Magma%20tester%201.0r40%20tester%20configuration.mcm'.
  	self provides: #('Magma').
  
  	self dependsOn: #('MonticelloConfigurations').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Magma/Magma%20tester%201.0r40%20tester%20configuration.mcm'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magma 1.0 tester'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Mondrian (in category 'Uncategorized') -----
  Mondrian
  
  	self name: 'Mondrian'.
  	self version: '0.40'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Uncategorized'.
  	info description: 
  ''.
  	info maintainer: 'ls'.
  	info homepage: 'http://mc.lukas-renggli.ch/mondrian/'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/mondrian/Mondrian-dr.40.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Announcements').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/mondrian/Mondrian-dr.40.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Mondrian'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ExuperyDevelopment (in category 'System') -----
  ExuperyDevelopment
  
  	self name: 'Exupery Development'.
  	self version: '0.14'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'Provides a development image with the usual tools for Exupery.'.
  	info maintainer: 'wbk'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Exupery/VMMaker-wbk.80.mcz'.
  	self provides: #().
  
  	self dependsOn: #('CommandShell' 'Connectors' 'Exupery' 'FFI' 'GraphViz' 'Speech').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Exupery/VMMaker-wbk.80.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Exupery Development'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SUnit (in category 'Development') -----
  SUnit
  
  	self name: 'SUnit'.
  	self version: '0.33'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'SUnit is the Smalltalk way of doing unit testing.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://sunit.sourceforge.net/'.
  	info squeakMapID: ''.
  	info url: 'http://source.squeakfoundation.org/39a/SUnit-md.33.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.squeakfoundation.org/39a/SUnit-md.33.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SUnit'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Squeakwebpackages (in category 'Web Development') -----
  Squeakwebpackages
  
  	self name: 'Squeak web packages'.
  	self version: '0.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Abstract package that only depends on other packages. This packages are used to build a squeak distribution for developers.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://damien.cassou.free.fr/'.
  	info squeakMapID: ''.
  	info url: 'nil'.
  	self provides: #().
  
  	self dependsOn: #('Aida' 'Pier' 'Scriptaculous' 'Seaside' 'Seaside-Adapters-Swazoo' 'Squeak dev packages').
  
+ !
- 	self load: [
- 	].
- 
- 	self unload: [
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Keymapping (in category 'IDE') -----
  Keymapping
  
  	self name: 'Keymapping'.
  	self version: '4.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'IDE'.
  	info description: 
  'Allows binding of keymaps to any morph, class or category of morphs.  Includes a simple GUI for editing keyboard bindings'.
  	info maintainer: 'cds'.
  	info homepage: 'http://map1.squeakfoundation.org/sm/package/51055995-d976-42da-ae18-7f3bdb9fb27d'.
  	info squeakMapID: '51055995-d976-42da-ae18-7f3bdb9fb27d'.
  	info url: 'http://map.squeak.org/accountbyid/1885112d-8641-485b-b40c-c0964d48e674/files/KeymappingInstaller-9.sar'.
  	self provides: #('Keymapping').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/1885112d-8641-485b-b40c-c0964d48e674/files/KeymappingInstaller-9.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Keymapping'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ToolBuilderSpecs (in category 'Tools') -----
  ToolBuilderSpecs
  
  	self name: 'ToolBuilder-Specs'.
  	self version: '1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Tools'.
  	info description: 
  'ToolBuilder-Specs'.
  	info maintainer: 'Andreas Raab'.
  	info homepage: 'http://www.squeaksource.com/ToolBuilder'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ToolBuilder/ToolBuilder-Specs-ar.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ToolBuilder/ToolBuilder-Specs-ar.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ToolBuilder-Specs'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierRandomizer (in category 'Web Development') -----
  PierRandomizer
  
  	self name: 'Pier-Randomizer'.
  	self version: '1.0.16.4'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Pier randomizer plugin.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://source.lukas-renggli.ch/pieraddons/Pier-Randomizer-lr.4.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.lukas-renggli.ch/pieraddons/Pier-Randomizer-lr.4.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Randomizer'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>REPLServer (in category 'Network') -----
  REPLServer
  
  	self name: 'REPLServer'.
  	self version: '16'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'REPLServer provides a back door in to Squeak via Telnet. To start:
  
  REPLServer start.
  (and to stop, do ''REPLServer stop'')
  
  This way, when Morphic crashes, you can reset it by telnetting to localhost on port 4445. When it is first started, it will prompt you (in the GUI) for a password. The service will restart itself if you restart Squeak. Note that by default, only connections from localhost are accepted.
  
  This version has improved Exception handling and fixes several bugs. Please report any bugs you find to the package maintainer.'.
  	info maintainer: 'mikevdg'.
  	info homepage: 'http://www.squeaksource.com/SecureSqueak/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/SecureSqueak/REPL-mvdg.16.mcz'.
  	self provides: #().
  
  	self dependsOn: #('DynamicBindings' 'KomServices').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/SecureSqueak/REPL-mvdg.16.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'REPLServer'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierTabbedPagesWidgets (in category 'Web Development') -----
  PierTabbedPagesWidgets
  
  	self name: 'Pier-TabbedPagesWidgets'.
  	self version: '1.0.14.5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Widget providing tabbed folders display of tagged pages'.
  	info maintainer: 'kph'.
  	info homepage: 'http://mc.lukas-renggli.ch/pieraddons.html'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pieraddons/Pier-TabbedPagesWidgets-kph.5.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Model KernelExt-kph').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pieraddons/Pier-TabbedPagesWidgets-kph.5.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-TabbedPagesWidgets'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>VideoandImageProcessing (in category 'Uncategorized') -----
  VideoandImageProcessing
  
  	self name: 'Video and Image Processing'.
  	self version: '2.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Uncategorized'.
  	info description: 
  'Mini-framework and tool for play with video in Squeak. You have filters that you can push in a stack, the output of the first filter is processed by the second and so on. The filters available today are: BackgroundSubstraction, GrayScale, Rotator, Mirror, Trail, Melt, Labeler, Mosaic, DepthChanger, Nervous, Delayer, Old TV, Emboss, Enhanced Focus, Blur, Edge Detector, Enhanced Edges and Soften. Add new filters is so easy, take a Form and give me a Form.
  
  Today is posible to get a video from a mpeg file or from a camera (the camera supports works only in windows).
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net/universes/repositories/squeak-3.9/VideoAndImageProcessing-dgd.1.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net/universes/repositories/squeak-3.9/VideoAndImageProcessing-dgd.1.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Video and Image Processing'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3DVRML (in category 'Graphics') -----
  Balloon3DVRML
  
  	self name: 'Balloon3D-VRML'.
  	self version: '0.2.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-VRML-ar.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Balloon3D-Kernel').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-VRML-ar.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D-VRML'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MagmaSeaside (in category 'Persistence') -----
  MagmaSeaside
  
  	self name: 'Magma Seaside'.
  	self version: '0.9beta'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Provides Seaside applications a suggested interface to a Magma repository, and a supplemental panel in Seaside''s Configuration utility to point the application to any local or remote Magma repository.
  
  Each Seaside session will create its own connection to the Magma repository, known as a MagmaSession. Note WAMagmaSession extends WASession to manage the allocation of this MagmaSession and its closure when the Seaside session is finalized.
  
  See the website for more information'.
  	info maintainer: 'Chris Muller <chris at funkyobjects.org>'.
  	info homepage: 'http://wiki.squeak.org/squeak/5817'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Magma/Magma%20seaside-brp.4.mcz'.
  	self provides: #('Easy connection from Seaside to a Magma repository').
  
  	self dependsOn: #('Magma Client' 'Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Magma/Magma%20seaside-brp.4.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magma Seaside'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Genie (in category 'User Interface') -----
  Genie
  
  	self name: 'Genie'.
  	self version: 'r67'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'User Interface'.
  	info description: 
  'Genie is a powerful gesture recognition system by Nathanael Schärli. It lets you control anything in your Squeak environment through mouse or pen gestures. This version includes better Squeak integration, a small dictionary of useful gestures for project navigation and UI control, and should "just work" after installation.'.
  	info maintainer: 'Simon Michael'.
  	info homepage: 'http://squeaksource.com/genie.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/genie/Genie-sm.67.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/genie/Genie-sm.67.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Genie'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>KeyBinder (in category 'IDE') -----
  KeyBinder
  
  	self name: 'KeyBinder'.
  	self version: '2004.8.14.18'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'IDE'.
  	info description: 
  'KeyBinder modifies the way Squeak handles keyboard events and provides a framework for constructing keyboard bindings.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://wiki.squeak.org/squeak/HernanTylim'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/KeyBinder/KeyBinder-cdlm.18.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/KeyBinder/KeyBinder-cdlm.18.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'KeyBinder'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>FFI (in category 'System') -----
  FFI
  
  	self name: 'FFI'.
  	self version: '3.9.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'The Squeak foreign function interface.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: 'http://wiki.squeak.org/squeak/1414'.
  	info squeakMapID: ''.
  	info url: 'http://map.squeak.org/accountbyid/cf58c358-46ee-465e-b6db-2740e9b32a53/files/InstallFFI3.st'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/cf58c358-46ee-465e-b6db-2740e9b32a53/files/InstallFFI3.st'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'FFI'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MagmaServer (in category 'Persistence') -----
  MagmaServer
  
  	self name: 'Magma Server'.
  	self version: '0.9beta'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Server component for the Magma object database.'.
  	info maintainer: 'Chris Muller <chris at funkyobjects.org>'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/2665'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Magma/MagmaServerLoader-cmm.25.mcz'.
  	self provides: #('Magma server').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Magma/MagmaServerLoader-cmm.25.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magma Server'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MultiColumnListMorph (in category 'Morphs') -----
  MultiColumnListMorph
  
  	self name: 'MultiColumn List Morph'.
  	self version: '6'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Morphs'.
  	info description: 
  'MultiColumnListMorph (and its related StackedStringMorph) are competitors for PluggableMultiColumnListMorph.  The speed is substantially faster than the the standard Pluggable... hieararchy, and there are some additional features (most notably the ability to add a header for the list).  Currently, this morph only takes arrays of arrays of strings as arguments.
  
  Please look at the class side of MultiColumnListMorph for examples.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/MultiColumn%20Lists-cbc.6.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/MultiColumn%20Lists-cbc.6.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'MultiColumn List Morph'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SeasideAdaptersCore (in category 'Web Development beta') -----
  SeasideAdaptersCore
  
  	self name: 'Seaside-Adapters-Core'.
  	self version: 'pmm.2.mcz'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development beta'.
  	info description: 
  'This is the core server adapter package of Seaside 2.9. It includes all the common server adapter code for Seaside 2.9 (currently only used in Squeak).'.
  	info maintainer: 'pmm'.
  	info homepage: 'http://www.squeaksource.com/Seaside29.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Seaside29/Seaside-Adapters-Core-pmm.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Seaside29/Seaside-Adapters-Core-pmm.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Seaside-Adapters-Core'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3DMorphic (in category 'Graphics') -----
  Balloon3DMorphic
  
  	self name: 'Balloon3D-Morphic'.
  	self version: '0.3.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-Morphic-ar.3.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Balloon3D-Kernel').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-Morphic-ar.3.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D-Morphic'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PlusTools (in category 'Tools') -----
  PlusTools
  
  	self name: 'PlusTools'.
  	self version: '37.3'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Tools'.
  	info description: 
  'This is the PlusTools package, an implementation of the Smalltalk tools (Browser, Inspecter, etc) written to use ToolBuilder.
  
  Note that this package is quite unstable and is "unfinished".
  
  This version specifically requires ToolBuilder-Morphic; this will be fixed in a later release.'.
  	info maintainer: 'Michael van der Gulik'.
  	info homepage: 'http://www.squeaksource.com/PlusTools'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/SecureSqueak/PlusTools-mvdg.37.mcz'.
  	self provides: #().
  
  	self dependsOn: #('ToolBuilder-Examples' 'ToolBuilder-Morphic').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/SecureSqueak/PlusTools-mvdg.37.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'PlusTools'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ProcessSpecific (in category 'System') -----
  ProcessSpecific
  
  	self name: 'ProcessSpecific'.
  	self version: '1.0.11'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'My subclasses (not instances of them) keep state specific to the current process.
  
  There are two kinds of process-specific variables: process-local (state available
  for read and write in all methods inside the process), and dynamic variables
  (implementing dynamic scope).
  
  Includes tests and example: DateAndTimeWarp
  Includes extension (if not loaded ignore) for seaside for debugging.'.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://gjallar.krampe.se/ProcessSpecific-kph.11.mcz'.
  	self provides: #('ProcessSpecific').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://gjallar.krampe.se/ProcessSpecific-kph.11.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ProcessSpecific'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OmniBrowserRegex (in category 'Development') -----
  OmniBrowserRegex
  
  	self name: 'OmniBrowser-Regex'.
  	self version: '0.9'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Brings refactorings to OmniBrowser'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://source.lukas-renggli.ch/omnibrowser/OB-Regex-lr.9.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser-Refactory' 'OmniBrowser-Standard' 'Refactoring Engine' 'VBRegex').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.lukas-renggli.ch/omnibrowser/OB-Regex-lr.9.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OmniBrowser-Regex'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Scripter (in category 'IDE') -----
  Scripter
  
  	self name: 'Scripter'.
  	self version: '0.5.5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'IDE'.
  	info description: 
  'Scripter is an interface for scripting Squeak UI Tools.
  
  Windows: Collapsing, minimizing, maximizing, tidying,  moving, closing.
  Tools: Open and use.
  Menus: select menu items
  Buttons: click buttons
  Lists: select list items
  
  To Do:
  Track action which spawns opening a new window.
  Trees: select tree items'.
  	info maintainer: 'keith_hodges at yahoo.co.uk'.
  	info homepage: 'http://www.squeaksource.com/Scripter.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Scripter/Scripter-Core-kph.5.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Scripter/Scripter-Core-kph.5.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Scripter'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SeasideAdaptersSwazoo (in category 'Web Development beta') -----
  SeasideAdaptersSwazoo
  
  	self name: 'Seaside-Adapters-Swazoo'.
  	self version: '8'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development beta'.
  	info description: 
  'The Swazoo 2.1 server adapter form Seaside 2.9, works also with Seaside 2.8.
  
  Can be started and stopped with:
  SwazooSeaside startOn: 8080
  SwazooSeaside stop'.
  	info maintainer: 'pmm'.
  	info homepage: 'http://www.squeaksource.com/Seaside29.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Seaside29LGPL/Seaside-Adapters-Swazoo-pmm.8.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Seaside-Squeak-Adapters' 'SeasideAdaptersCompatibility' 'Swazoo').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Seaside29LGPL/Seaside-Adapters-Swazoo-pmm.8.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Seaside-Adapters-Swazoo'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PWS (in category 'Network') -----
  PWS
  
  	self name: 'PWS'.
  	self version: '0.2gt1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'The Pluggable WebServer (PWS) is a web server and toolkit for flexibly creating CGI scripts. Mark Guzdial designed and implemented it to help him create different kinds of collaborative tools: e.g. Virtual Other-Than-Communities. PWS builds on the work of Georg Gollmann and Tim Jones.
  
  PWS is mostly obsolete now, and is superseded by the newer Comanche web server.
  
  This version of PWS has been slightly modified:
  
  	1. It replaces all uses of getData by receiveData in order to pevent a crash.
  
  	2. The default setting of serverDirectory is the current directory.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/PWS-0.2gt1.st.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/PWS-0.2gt1.st.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'PWS'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>EventEnhancements (in category 'User Interface') -----
  EventEnhancements
  
  	self name: 'Event Enhancements'.
  	self version: '0.6'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'User Interface'.
  	info description: 
  'Basic extension to the event system providing for recurisve short-circuit event handling (avoid re-entry). Along with the same for "shared" events.'.
  	info maintainer: 'Gary Chambers'.
  	info homepage: 'http://www.squeaksource.com/UIEnhancements/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/UIEnhancements/Pinesoft-EventEnhancements-gvc.3.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/UIEnhancements/Pinesoft-EventEnhancements-gvc.3.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Event Enhancements'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>AutomaticMethodCategorizerServices (in category 'Code Browsing') -----
  AutomaticMethodCategorizerServices
  
  	self name: 'AutomaticMethodCategorizerServices'.
  	self version: '0.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'This package allows you to categorize uncategorized methods based on rules.
  
  For example you can put all uncategorized methods in SomeTest  that begins with "test" under the "tests" category.
  
  See the release notes for details.
  
  Acknowledgments: The idea of method categorization based on rules was taken from a VAST tool created by Maximiliano Contieri.
  
  The services packages plugs AutomaticMethodCategorizer with the Services framework.'.
  	info maintainer: ''.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/autoMethodCat/AutomaticMethodCategorizerServices-DF.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #('AutomaticMethodCategorizer').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/autoMethodCat/AutomaticMethodCategorizerServices-DF.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'AutomaticMethodCategorizerServices'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SystemChangeNotifierimprovements (in category 'Model Extension') -----
  SystemChangeNotifierimprovements
  
  	self name: 'SystemChangeNotifier improvements'.
  	self version: '1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'Adds more detail to the events sent out by SystemChangeNotifier. It should be completely backward compatable'.
  	info maintainer: 'Matthew Fulmer'.
  	info homepage: 'http://www.squeaksource.com/DeltaStreams/SystemEditor-mtf.78.mcz'.
  	info squeakMapID: '07238fff-3116-47bf-a90e-f1f75e10fec5'.
  	info url: 'http://map.squeak.org/account/files/SystemChangeNotification-Improvements39.2.cs.gz'.
  	self provides: #('SystemChangeNotifier improvements').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/account/files/SystemChangeNotification-Improvements39.2.cs.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SystemChangeNotifier improvements'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>NewCompiler (in category 'Development') -----
  NewCompiler
  
  	self name: 'NewCompiler'.
  	self version: '281'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'The new Compiler, based on the ClosureCompiler'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/NewCompiler/NewCompiler-md.281.mcz'.
  	self provides: #().
  
  	self dependsOn: #('AST' 'NewParser').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/NewCompiler/NewCompiler-md.281.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'NewCompiler'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>GraphicsTools (in category 'Graphics') -----
  GraphicsTools
  
  	self name: 'Graphics-Tools'.
  	self version: '0.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Graphics-Tools-ar.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Graphics-Tools-ar.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Graphics-Tools'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>KomServices (in category 'Network') -----
  KomServices
  
  	self name: 'KomServices'.
  	self version: '1.12'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'KomServices provides a framework for the creation and management of background processes.  A generic Service class is provided for this purpose.  Additionally, TcpService is provided for creating services that respond to inbound TCP connections.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/KomHttpServer/KomServices-gc.12.mcz'.
  	self provides: #().
  
  	self dependsOn: #('DynamicBindings').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/KomHttpServer/KomServices-gc.12.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'KomServices'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>NileTests (in category 'Model Extension') -----
  NileTests
  
  	self name: 'Nile-Tests'.
  	self version: '1.0.64'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'Nile is a complete reimplementation of the squeak stream hierarchy. It provides:
  
      * traits for code reuse.
      * lots of tests: same tests are used for the squeak stream hierarchy and Nile (they are implemented in traits).
      * lots of clients to verify the reusability.
      * a diagram of the implementation: http://damien.cassou.free.fr/documents/internship_2007/nile/complete_hierarchy.pdf '.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://www.squeaksource.com/Nile/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Nile/Nile-Tests-dc.64.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Nile-Base').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Nile/Nile-Tests-dc.64.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Nile-Tests'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>GeometryModels (in category 'User Interface') -----
  GeometryModels
  
  	self name: 'Geometry Models'.
  	self version: '0.3'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'User Interface'.
  	info description: 
  'Basic models of shapes.'.
  	info maintainer: 'Gary Chambers'.
  	info homepage: 'http://www.squeaksource.com/UIEnhancements/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/UIEnhancements/Pinesoft-Geometry-gvc.3.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/UIEnhancements/Pinesoft-Geometry-gvc.3.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Geometry Models'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>VersionNumber (in category 'Uncategorized') -----
  VersionNumber
  
  	self name: 'VersionNumber'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Uncategorized'.
  	info description: 
  'I am a version number. My representation allows me to handle an entire tree of versions. From a directory listing of verison numbered files, I can infer things about the tree of versions.
  
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/VersionNumber.st'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/VersionNumber.st'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'VersionNumber'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Pier (in category 'Web Development') -----
  Pier
  
  	self name: 'Pier'.
  	self version: 'current'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Pier with some common plugins. A good package to get started with Pier development or deployment.'.
  	info maintainer: 'lr'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'nil'.
  	self provides: #().
  
  	self dependsOn: #('Magritte-Tests' 'Pier-Blog' 'Pier-Documents' 'Pier-EditorEnh' 'Pier-OmniBrowser' 'Pier-Seaside' 'Pier-Security' 'Pier-Tests').
  
+ !
- 	self load: [
- 	].
- 
- 	self unload: [
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>X11Fonts (in category 'Fonts') -----
  X11Fonts
  
  	self name: 'X11Fonts'.
  	self version: '1-2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Fonts'.
  	info description: 
  'SAR containing various X11 fonts using ISO-8859-15 encoding
  (similar to Latin-1 but the Euro sign is where it should be).
  
  Install from this archive to add TimesRoman, Helvetica, Courier
  and Fixed to the available system fonts, in various point sizes.
  Note that this archive neither creates any new methods in the
  image, nor does it create any files in the working directory during
  installation.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/x11fonts.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/x11fonts.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'X11Fonts'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierSeaside (in category 'Web Development') -----
  PierSeaside
  
  	self name: 'Pier-Seaside'.
  	self version: '1.0.16.272'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Pier bindings for Seaside.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pier/Pier-Seaside-lr.272.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Magritte-Seaside' 'Pier-Model' 'Scriptaculous' 'Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pier/Pier-Seaside-lr.272.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Seaside'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>NewParser (in category 'Development') -----
  NewParser
  
  	self name: 'NewParser'.
  	self version: '5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'A smalltalk parser the generate AST from the AST project.
  it also can parse pragmas and comments'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://squeaksource.com/AST/NewParser-ms.5.mcz'.
  	self provides: #().
  
  	self dependsOn: #('AST' 'SmaCC runtime').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://squeaksource.com/AST/NewParser-ms.5.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'NewParser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SoapCore (in category 'Network') -----
  SoapCore
  
  	self name: 'SoapCore'.
  	self version: '1.0b'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'SoapCore is a SOAP implementation for Squeak (including both client and  server). It is a SOAP part of SoapOpera.
  
  It achieves some interoperability with other SOAP, such as SOAP4R, Splash/Spray, etc. Designed to be lean and simple.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: 'http://www.mars.dti.ne.jp/%7Eumejava/smalltalk/soapOpera/index.html'.
  	info squeakMapID: ''.
  	info url: 'ftp://swikis.ddo.jp/SoapOpera/SoapCore/SoapCore20061219.sar'.
  	self provides: #().
  
  	self dependsOn: #('YAXO').
  
+ !
- 	self load: [
- 		Installer installUrl:'ftp://swikis.ddo.jp/SoapOpera/SoapCore/SoapCore20061219.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SoapCore'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Squeakdevpackages (in category 'Development') -----
  Squeakdevpackages
  
  	self name: 'Squeak dev packages'.
+ 	self version: '0.24'.
+ 	self worksIn: #( PackagesSqueak310U )
- 	self version: '0.22'.
  
  	info category: 'Development'.
  	info description: 
  'Abstract package that only depends on other packages. This packages are used to build a squeak distribution for developers.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://damien.cassou.free.fr/'.
  	info squeakMapID: ''.
  	info url: 'nil'.
  	self provides: #().
  
+ 	self dependsOn: #('AST' 'AutomaticMethodCategorizer' 'AutomaticMethodCategorizerOB' 'Installer' 'Nice fonts' 'OB-Enhancements' 'OmniBrowser-Full' 'OmniBrowser-Refactory' 'OmniBrowser-Regex' 'Refactoring Core' 'Rio' 'SUnitGUI-improved' 'ScriptManager' 'Shout' 'ShoutWorkspace' 'SmaCC runtime' 'Universes' 'Universes OmniBrowser' 'eCompletion' 'eCompletion-Traits' 'eCompletionOmniBrowser').
- 	self dependsOn: #('AST' 'AutomaticMethodCategorizer' 'AutomaticMethodCategorizerOB' 'Installer' 'OB-Enhancements' 'OmniBrowser-Full' 'OmniBrowser-Refactory' 'OmniBrowser-Regex' 'Refactoring Core' 'Rio' 'ScriptManager' 'Shout' 'ShoutWorkspace' 'SmaCC runtime' 'Universes' 'Universes OmniBrowser' 'eCompletion' 'eCompletion-Traits' 'eCompletionOmniBrowser').
- 
- 	self load: [
- 	].
  
+ !
- 	self unload: [
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Seaside28JetsamBlueprint (in category 'Web Development') -----
  Seaside28JetsamBlueprint
  
  	self name: 'Seaside28Jetsam-Blueprint'.
  	self version: '0.7.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Lukas'' import of the Blueprint Library'.
  	info maintainer: 'kph'.
  	info homepage: 'http://www.squeaksource.com/Jetsam.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Jetsam/Seaside28Jetsam-Blueprint-kph.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Jetsam/Seaside28Jetsam-Blueprint-kph.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Seaside28Jetsam-Blueprint'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3DMath (in category 'Graphics') -----
  Balloon3DMath
  
  	self name: 'Balloon3D-Math'.
  	self version: '0.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-Math-ar.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-Math-ar.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D-Math'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierOmniBrowser (in category 'Development') -----
  PierOmniBrowser
  
  	self name: 'Pier-OmniBrowser'.
  	self version: '1.0.16.33'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Pier bindings for OmniBrowser.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pier/Pier-OmniBrowser-lr.33.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Magritte-Morph' 'OmniBrowser-Full' 'Pier-Model').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pier/Pier-OmniBrowser-lr.33.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-OmniBrowser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SUnitProgress (in category 'Uncategorized') -----
  SUnitProgress
  
  	self name: 'SUnitProgress'.
  	self version: '0.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Uncategorized'.
  	info description: 
  'Simple extension for SUnit showing a progress-bar while the unit tests are running ...'.
  	info maintainer: ''.
  	info homepage: 'http://www.squeaksource.com/SUnitProgress'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/SUnitProgress/SUnitProgress-SR.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/SUnitProgress/SUnitProgress-SR.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SUnitProgress'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Seaside (in category 'Web Development') -----
  Seaside
  
  	self name: 'Seaside'.
  	self version: '2.8.522'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'A framework for building sophisticated web applications in Squeak. Develop for the web using reusable, embeddable components and unique call/return semantics for moving between pages.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.seaside.st/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Seaside/Seaside2.8a1-lr.522.mcz'.
  	self provides: #().
  
  	self dependsOn: #('KomHttpServer').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Seaside/Seaside2.8a1-lr.522.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Seaside'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OBProtocolBrowser (in category 'Code Browsing') -----
  OBProtocolBrowser
  
  	self name: 'OBProtocolBrowser'.
  	self version: '0.19'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'This is an implementation of the Protocol Browser using the OmniBrowser framework.
  
  Authors: 
  	Duncan Mak <duncanmak at gmail.com>
  	Juraj Kubelka <Juraj.Kubelka at gmail.com>'.
  	info maintainer: 'Duncan Mak <duncanmak at gmail.com>'.
  	info homepage: 'http://www.squeaksource.com/OBProtocolBrowser.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/OBProtocolBrowser/OBProtocolBrowser-DM.19.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser-Standard').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/OBProtocolBrowser/OBProtocolBrowser-DM.19.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OBProtocolBrowser'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Mse (in category 'Development') -----
  Mse
  
  	self name: 'Mse'.
  	self version: '1.0.16.5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'MSE file format to exchange data of meta-metamodels, metamodels and models.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://smallwiki.unibe.ch/fame/mse'.
  	info squeakMapID: ''.
  	info url: 'http://source.lukas-renggli.ch/mse/Mse-lr.5.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.lukas-renggli.ch/mse/Mse-lr.5.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Mse'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MemoryUsage (in category 'Morphs') -----
  MemoryUsage
  
  	self name: 'MemoryUsage'.
  	self version: '0.3'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Morphs'.
  	info description: 
  'A ProgressMorph subclass to display the current VM memory in use.  I wrote
  this because the vm statistics menu item in the help menu is static; it
  doesn''t periodically update.
  
  Plus, it''s cool!!
  
  "MemoryUsage new openInWorld."'.
  	info maintainer: ''.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://web.nilpotent.org/software/smalltalk/MemoryUsage3.st.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://web.nilpotent.org/software/smalltalk/MemoryUsage3.st.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'MemoryUsage'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PierDocuments (in category 'Web Development') -----
  PierDocuments
  
  	self name: 'Pier-Documents'.
  	self version: '1.0.16.6'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Provide additional documents on a praticular structure, for example to add a side-bar. Custom documents can inherit from the parent and/or provide a default document.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/pier'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/pieraddons/Pier-Documents-lr.6.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Pier-Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/pieraddons/Pier-Documents-lr.6.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Pier-Documents'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SqueakPipes (in category 'Games') -----
  SqueakPipes
  
  	self name: 'SqueakPipes'.
  	self version: '20040426'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Games'.
  	info description: 
  'Squeak Pipes Game is a little experiment I did to draw some graphics with Morphic and then use them in a game. It''s using a lot of the framework/ideas from the Electricity Game with some new animation.
  
  See <a href="http://squeak.preeminent.org">http://squeak.preeminent.org</a> for more details and a picture of the game.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SqueakPipe-sbw.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SqueakPipe-sbw.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SqueakPipes'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Folktale (in category 'Network') -----
  Folktale
  
  	self name: 'Folktale'.
  	self version: '0.51'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'Folktale is a useful command shell for headless Swiki user.
  You can log in squeak image through telnet client at localhost port 4919.
  Try
  
  $ squeak -headless squeak.image Folktale.st &
  
  Useful expressions and pseudo variables.
  Jump result object unless your query has dot(.) at end.
  ----
  Basic command is follwed
  help -- This message.
  exit  -- Exit.
  self -- Current object.
  ii -- Inspect self.
  history -- Show history.
  back -- Back.
  
  q -- The agent (me).
  q usefulExpressions -- Show more useful expressions.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Folktale-051.st'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/Folktale-051.st'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Folktale'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MysqlDriver (in category 'Persistence') -----
  MysqlDriver
  
  	self name: 'Mysql Driver'.
  	self version: '1.13'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  '- Compatible with new Mysql 4.1/5x authentication and resultset changes.
  - Should also work with 4.1/5x with old (short) password table.
  - May still work with Mysql 4.0 and below.
  - Fixed float conversion not to use ''+'', eg ''3.041234e+23'' n/g in Squeak 3.8.
  - Added an Integer type used in Mysql 5.x.
  - Test suites upgraded, eg factored connectionSpec 4 ez changing.
  '.
  	info maintainer: 'alan reider <squeakdev at reider.net>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://squeak.reider.net/mysql/Mysql-alnr.12.mcz'.
  	self provides: #('Mysql Driver').
  
  	self dependsOn: #('Cryptography').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://squeak.reider.net/mysql/Mysql-alnr.12.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Mysql Driver'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Logging (in category 'Development') -----
  Logging
  
  	self name: 'Logging'.
  	self version: '3.27'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Logging for squeak, a front end to Toothpick OR SimpleLog (apologies to LogEngine)
  usage:
  
  self log this.
  self log x: 10 y: 20.
  
  and much more...
  '.
  	info maintainer: 'Keith Hodges <keith_hodges at yahoo.co.uk>'.
  	info homepage: 'http://wiki.squeak.org/squeak/3706'.
  	info squeakMapID: '6c1b03cd-6c37-4acf-b971-72ff132c03f0'.
  	info url: 'http://www.squeaksource.com/Logging/Logging-kph.27.mcz'.
  	self provides: #('Logging').
  
  	self dependsOn: #('KernelExt-kph' 'ProcessSpecific').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Logging/Logging-kph.27.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Logging'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>RioKernel (in category 'Model Extension') -----
  RioKernel
  
  	self name: 'Rio-Kernel'.
  	self version: '0.81'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Model Extension'.
  	info description: 
  'A file IO interface inspired by http://rio.rubyforge.org , potentially replaces FileDirectory.
  
  This package contains only the kernel of Rio. See the package Rio to get the full distribution.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://wiki.squeak.org/squeak/5929'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Rio/Rio-Kernel-kph.81.mcz'.
  	self provides: #().
  
  	self dependsOn: #('KernelExt-kph').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Rio/Rio-Kernel-kph.81.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Rio-Kernel'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>UIThemesandStandardWidgets (in category 'User Interface') -----
  UIThemesandStandardWidgets
  
  	self name: 'UI Themes and Standard Widgets'.
  	self version: '0.80'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'User Interface'.
  	info description: 
  'Modifies Morphic to provide for selectable theming of controls and provides a framework and extra Morphs for creating consistent user interfaces. Fixes a few problems too (corner grips, window titlebar sizing wrt fonts...).
  
  Notable changes since last release:
  
  Per-theme optional window corner grip drawing.
  BalloonMorph drawn with antialiasing.
  Reversed order for composite fill styles due to popular demand (Sig).
  Added FillStyleBorder supporting fill styles in addition to plain colours.
  Support for setting custom mouse-over border style on IconicButton.
  Minor fixes.
  Better handling of window activation when minimising/restoring from TaskBar.
  Support for SystemWindows without label area/controls.
  Per-theme support for world main docking bar border style.
  '.
  	info maintainer: 'Gary Chambers'.
  	info homepage: 'http://wiki.squeak.org/squeak/6005'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/UIEnhancements/Pinesoft-Widgets-gvc.324.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/UIEnhancements/Pinesoft-Widgets-gvc.324.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'UI Themes and Standard Widgets'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MiniToDo (in category 'Office') -----
  MiniToDo
  
  	self name: 'MiniToDo'.
  	self version: '1.1'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Office'.
  	info description: 
  'Very simple task administration system.
  Developed mainly as a learning-project. A lot of features must be added.
  Sorry by the "spanglish" mix :)
  Need a PluggableListMorph.
  
  To start the app, evaluate:
  SistemaTareas new initialize openAViewOnMe'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://map.squeak.org/accountbyid/1c274487-4fe7-4e08-ae09-c43a6c4ca73c/files/MiniToDo-gsa.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://map.squeak.org/accountbyid/1c274487-4fe7-4e08-ae09-c43a6c4ca73c/files/MiniToDo-gsa.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'MiniToDo'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Celeste (in category 'Network') -----
  Celeste
  
  	self name: 'Celeste'.
  	self version: '2.21'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'A POP-based email reader.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: 'http://minnow.cc.gatech.edu/squeak/1467'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Celeste/Network-Mail%20Reader-ls.21.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Celeste/Network-Mail%20Reader-ls.21.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Celeste'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SPLPDFLibrary (in category 'Persistence') -----
  SPLPDFLibrary
  
  	self name: 'SPL PDF Library'.
  	self version: '1.0-21a'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'Write PDF files directly from within Squeak using the PDF Library. The latest version has support for text, lines and TIFF images. The library was developed and extended at SPL WorldGroup for specific projects, and does what was needed for those projects. It is expected that the library will contine to be extended over time as feedback is received from the people using it.
  
  The library is available under a very unrestrictive licence, but it is nevertheless a license. Please read the license at: http://wiki.cs.uiuc.edu/VisualWorks/PDF+Library.
  
  Once you have loaded the package, have a look at PDFReportingSelfTest class>>test to get an idea of what the framework can do.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SPDF-1.0-021a.st.gz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/SPDF-1.0-021a.st.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SPL PDF Library'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SqueakSource (in category 'Group Development') -----
  SqueakSource
  
  	self name: 'SqueakSource'.
  	self version: '1.0.6'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'SqueakSource is a web based repository for Monticello.'.
  	info maintainer: 'pmm'.
  	info homepage: 'http://www.squeaksource.com/ss2.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ss2/SqueakSource-pmm.1069.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Announcements' 'Magritte-Seaside' 'Magritte-Tests' 'RSRSS2' 'Seaside' 'TinyWiki' 'YAXO').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ss2/SqueakSource-pmm.1069.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SqueakSource'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>DiffTools (in category 'User Interface') -----
  DiffTools
  
  	self name: 'Diff Tools'.
  	self version: '0.51'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'User Interface'.
  	info description: 
  'Provides side-by-side code comaprison with cross-links indicating changes between lines of text. Highlight "intra-line" changes also.
  Integrated with "compare with current version" of standard versions browser.
  Integrated with Monticello replacing changes and merge browsers.'.
  	info maintainer: 'Gary Chambers'.
  	info homepage: 'http://www.squeaksource.com/UIEnhancements/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/UIEnhancements/Pinesoft-Tools-Diff-gvc.8.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Event Enhancements' 'Geometry Models' 'UI Themes and Standard Widgets').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/UIEnhancements/Pinesoft-Tools-Diff-gvc.8.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Diff Tools'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OSProcessIO (in category 'System') -----
  OSProcessIO
  
  	self name: 'OSProcessIO'.
  	self version: '0.3'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'An intermediate layer between OSProcess and another application.
  
  Used for Smagick and FoPDF to simplify IO-feebacks with the command shell 
  (likely to get enhanced or obsolete in the future)
  
  changes to 0.2:
  - bugfixes'.
  	info maintainer: 'Stefan Reichhart <stefan.reichhart at gmx.ch>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/SqueakAddOns/OSProcessIO-SR.16.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OSProcess').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/SqueakAddOns/OSProcessIO-SR.16.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OSProcessIO'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>YAXO (in category 'Persistence') -----
  YAXO
  
  	self name: 'YAXO'.
  	self version: '9'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'XML toolkit'.
  	info maintainer: ''.
  	info homepage: 'http://www.squeaksource.com/XMLSupport'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/XMLSupport/XML-Parser-mir.9.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/XMLSupport/XML-Parser-mir.9.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'YAXO'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Tamaris (in category 'Development') -----
  Tamaris
  
  	self name: 'Tamaris'.
  	self version: '0.61'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'Tamaris is an object explorer for squeak.'.
  	info maintainer: 'Nicolas Petton'.
  	info homepage: 'http://cassoulet.univ-brest.fr/squeak/Tamaris'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Tamaris/Tamaris-apl.61.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Tamaris/Tamaris-apl.61.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Tamaris'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>NetStrings (in category 'Persistence') -----
  NetStrings
  
  	self name: 'NetStrings'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Persistence'.
  	info description: 
  'This is an implementation of the Netstring protocol as defined here: http://cr.yp.to/proto/netstrings.txt (by D. J. Bernstein, djbpobox.com). It adds the ability to read and write Netstrings onto any byte or character stream. Integer, ByteArray, and String can be converted to or from a Netstring. See the methods added to those classes (instance and class methods). Netstrings are handy for creating network protocols.
  '.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/NetStrings.st'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/NetStrings.st'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'NetStrings'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>FFITests (in category 'System') -----
  FFITests
  
  	self name: 'FFI-Tests'.
  	self version: '3.9'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'Tests for the Squeak foreign function interface.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://source.squeakfoundation.org/FFI/FFI-Tests-ar.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #('FFI').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.squeakfoundation.org/FFI/FFI-Tests-ar.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'FFI-Tests'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Scriptaculous (in category 'Web Development') -----
  Scriptaculous
  
  	self name: 'Scriptaculous'.
  	self version: '2.8.228'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'High-level Javascript bindings for the Seaside web application framework. This package includes PrototypeJS (http://www.prototypejs.org) and script.aculo.us (http://script.aculo.us).'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://scriptaculous.seasidehosting.st/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Seaside/Scriptaculous-lr.228.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Seaside/Scriptaculous-lr.228.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Scriptaculous'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Namespaces (in category 'System') -----
  Namespaces
  
  	self name: 'Namespaces'.
  	self version: '46'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'System'.
  	info description: 
  'You don''t actually want to load this package; you want to load "NamespaceTools" under the Tools category.
  
  This package provides the core infrastructure for hierarchical namespaces in Squeak.
  
  Note that this is an "experimental" package and is intended for use by curious programmers only.'.
  	info maintainer: 'Michael van der Gulik, mikevdg at gulik.co.nz'.
  	info homepage: 'http://www.squeaksource.com/SecureSqueak'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/SecureSqueak/Namespaces-mvdg.46.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/SecureSqueak/Namespaces-mvdg.46.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Namespaces'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ScreenShotMorph (in category 'Morphs') -----
  ScreenShotMorph
  
  	self name: 'Screen Shot Morph'.
  	self version: '0.0.0.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Morphs'.
  	info description: 
  'A morph helping you to make a screenshot. The morph should open
  in the top left corner of the screen. Double click
  will activate the morph. You have 5 seconds before 
  the screen shot is taken.
  
  - Originally written by Lex Spoon
  - Torsten added image, double click behavior
  - the morph now hides itself if the screenshot is taken'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ScreenShotMorph/ScreenShotMorph-tbn.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ScreenShotMorph/ScreenShotMorph-tbn.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Screen Shot Morph'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>AutomaticMethodCategorizer (in category 'Code Browsing') -----
  AutomaticMethodCategorizer
  
  	self name: 'AutomaticMethodCategorizer'.
  	self version: '0.25'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'This package allows you to categorize uncategorized methods based on rules.
  
  For example you can put all uncategorized methods in SomeTest  that begins with "test" under the "tests" category.
  
  See the release notes for details.
  
  Acknowledgments: The idea of method categorization based on rules was taken from a VAST tool created by Maximiliano Contieri.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: ''.
  	info squeakMapID: '58bb4018-276b-4fe9-8f08-228bddb19ca9'.
  	info url: 'http://www.squeaksource.com/autoMethodCat/AutomaticMethodCategorizer-DF.25.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/autoMethodCat/AutomaticMethodCategorizer-DF.25.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'AutomaticMethodCategorizer'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>LogEngine (in category 'Development') -----
  LogEngine
  
  	self name: 'LogEngine'.
  	self version: '2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'A powerful and small LogEngine for Squeak!!
  A Sample usage is
  lc := LogClient getInstance: ''Client''.
  lc debug:''test1''.
  lc info:''test2''.
  
  When you create a LogClient, you must use the getInstance: method, passing a "Category Name"
  used to create a special category log file.
  
  LogClient features:
  + Integrated con Preferences (debug panel)
  + Can output on file and on Transcript on demand
  + Can print the method where the line is called
  + Can disable the debug level (only this for the meantime, sorry).
  + Easy to extend'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/LogEngine2.sar'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/LogEngine2.sar'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'LogEngine'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Squeakdevimage (in category 'Squeak Distributions') -----
  Squeakdevimage
  
  	self name: 'Squeak-dev image'.
+ 	self version: '0.164'.
+ 	self worksIn: #( PackagesSqueak310U )
- 	self version: '0.161'.
  
  	info category: 'Squeak Distributions'.
  	info description: 
  'This package creates a squeak image made for developers. If you update a squeak-dev image, you can execute ''DEVImageCreator default install''.'.
  	info maintainer: 'Damien Cassou <damien.cassou at gmail.com>'.
  	info homepage: 'http://damien.cassou.free.fr/'.
  	info squeakMapID: ''.
+ 	info url: 'http://www.squeaksource.com/ImageForDevelopers/ImageForDevelopers-dc.164.mcz'.
- 	info url: 'http://www.squeaksource.com/ImageForDevelopers/ImageForDevelopers-dc.161.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Squeak dev packages').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ImageForDevelopers/ImageForDevelopers-dc.161.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Squeak-dev image'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Speech (in category 'Uncategorized') -----
  Speech
  
  	self name: 'Speech'.
  	self version: '9'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Uncategorized'.
  	info description: 
  'Speech synthesis and facial animation'.
  	info maintainer: ''.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://source.squeakfoundation.org/39a/Speech-md.9.mcz'.
  	self provides: #('Mathieu Suen <mathieu.suen at yahoo.fr>').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://source.squeakfoundation.org/39a/Speech-md.9.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Speech'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>ToolBuilderTweak (in category 'Tools') -----
  ToolBuilderTweak
  
  	self name: 'ToolBuilder-Tweak'.
  	self version: '23'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Tools'.
  	info description: 
  'This is the Tweak package for ToolBuilder.
  
  Note that Tweak must be installed to use this package.'.
  	info maintainer: ''.
  	info homepage: 'http://www.squeaksource.com/ToolBuilder'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/ToolBuilder/ToolBuilder-Tweak-pe.23.mcz'.
  	self provides: #('ToolBuilder-Implementation').
  
  	self dependsOn: #('ToolBuilder-Kernel').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/ToolBuilder/ToolBuilder-Tweak-pe.23.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'ToolBuilder-Tweak'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>KGraph (in category 'Data Structures') -----
  KGraph
  
  	self name: 'KGraph'.
  	self version: '0.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Data Structures'.
  	info description: 
  'General purpose graph package.  Or it will be if it gets finished ;-)'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/KGraph-Propertied-jcg.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/KGraph-Propertied-jcg.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'KGraph'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>DebugReport (in category 'Development') -----
  DebugReport
  
  	self name: 'DebugReport'.
  	self version: '2.5'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Development'.
  	info description: 
  'You can generate more helpful debug log from Notifier or Debugger.
  Generated HTML document has the same view as Debugger.
  See sample page: <a href="http://squeak.sakura.ne.jp/etc/DebugReportSample/" target="_blank">http://squeak.sakura.ne.jp/etc/DebugReportSample/</a>'.
  	info maintainer: 'ls'.
  	info homepage: 'http://swikis.ddo.jp:9091/DebugReport.html'.
  	info squeakMapID: ''.
  	info url: 'http://squeaksource.blueplane.jp/DebugReport/DebugReport-minami.25.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://squeaksource.blueplane.jp/DebugReport/DebugReport-minami.25.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'DebugReport'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>RFBVNC (in category 'Network') -----
  RFBVNC
  
  	self name: 'RFB-VNC'.
  	self version: '1.0'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Network'.
  	info description: 
  'RFB for 3.9'.
  	info maintainer: 'ikp'.
  	info homepage: 'http://www.squeaksource.com/RFB'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/RFB/RFB-ikp.3.mcz'.
  	self provides: #('Remote Frame Buffer').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/RFB/RFB-ikp.3.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'RFB-VNC'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>PackageInfoBase (in category 'Group Development') -----
  PackageInfoBase
  
  	self name: 'PackageInfo-Base'.
  	self version: '27'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Group Development'.
  	info description: 
  'PackageInfo updated for pre-ambles/postcripts'.
  	info maintainer: 'kph <keith_hodges at yahoo.co.uk>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/mc/PackageInfo-Base-kph.27.mcz'.
  	self provides: #('PackageInfo-Base').
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/mc/PackageInfo-Base-kph.27.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'PackageInfo-Base'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>MagritteSeaside (in category 'Web Development') -----
  MagritteSeaside
  
  	self name: 'Magritte-Seaside'.
  	self version: '1.0.16.261'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development'.
  	info description: 
  'Magritte bindings for Seaside.'.
  	info maintainer: 'Lukas Renggli <renggli at gmail.com>'.
  	info homepage: 'http://www.lukas-renggli.ch/smalltalk/magritte'.
  	info squeakMapID: ''.
  	info url: 'http://mc.lukas-renggli.ch/magritte/Magritte-Seaside-lr.261.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Magritte-Model' 'Scriptaculous' 'Seaside').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://mc.lukas-renggli.ch/magritte/Magritte-Seaside-lr.261.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Magritte-Seaside'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>Balloon3DWonderlandConstants (in category 'Graphics') -----
  Balloon3DWonderlandConstants
  
  	self name: 'Balloon3D-WonderlandConstants'.
  	self version: '0.2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Graphics'.
  	info description: 
  'Balloon3D dependencies'.
  	info maintainer: 'Mathieu Suen <mathieusuen at yahoo.fr>'.
  	info homepage: 'http://www.squeaksource.com/Balloon3D'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Balloon3D/Balloon3D-WonderlandConstants-ar.2.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Balloon3D/Balloon3D-WonderlandConstants-ar.2.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Balloon3D-WonderlandConstants'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>EventInterceptorMorph (in category 'Morphs') -----
  EventInterceptorMorph
  
  	self name: 'EventInterceptorMorph'.
  	self version: '1alpha'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Morphs'.
  	info description: 
  'Have you ever wanted to trace some code which is part of the Morphic UI process, or code triggered by it?  Had trouble trying to trace it in the debugger because interacting with the UI changes what you''re trying to watch?  EventInterceptorMorph may be able to help!!
  
  EventInterceptorMorph is a button which, when pressed, begins listening to the hand''s event stream.  When an even of the appropriate type is encountered, this morph intercepts it and traces the dispatch of the event using MessageSendTree, and opens a SendTreeExplorer on the results.  This is useful for debugging parts of the UI process which are otherwise difficult to trace.
  
  The eventType can be any of the Morphic event types, but #mouseUp, #mouseDown, and #keystroke are by far the most useful because they are the triggers for the majority of actual UI activity.
  
  A methodSelector may be set which identifies a particular method the user is interested in.  All method sends above this method are ignored.  This is useful when the user wishes to study the execution of a known method which is eventually triggered by a UI gesture, but has no interest in the complete event dispatching send tree leading up to it.  See example in changeset preamble.'.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/EventInterceptorMorph-JW.1.cs.gz'.
  	self provides: #().
  
  	self dependsOn: #('SendTreeExplorer').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/EventInterceptorMorph-JW.1.cs.gz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'EventInterceptorMorph'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>SeasideAdaptersCompatibility (in category 'Web Development beta') -----
  SeasideAdaptersCompatibility
  
  	self name: 'SeasideAdaptersCompatibility'.
  	self version: 'pmm.1.mcz'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Web Development beta'.
  	info description: 
  'This compatibility package allows to run Seaside 2.9 server adapters in Seaside 2.8 (and below).'.
  	info maintainer: 'pmm'.
  	info homepage: 'http://www.squeaksource.com/Seaside.html'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/Seaside/SeasideAdaptersCompatibility-pmm.1.mcz'.
  	self provides: #().
  
  	self dependsOn: #().
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/Seaside/SeasideAdaptersCompatibility-pmm.1.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'SeasideAdaptersCompatibility'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>TechoShout (in category 'IDE') -----
  TechoShout
  
  	self name: 'Techo-Shout'.
  	self version: '4'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'IDE'.
  	info description: 
  'Techo is:
  -Multiple workspace stored plain text file
  -Notepad without file name
  -Grep tool(but not real REgexp).
  
  It is very simple tool, but useful to make a memo, to exchange oneliner among Squeak images, and to play a text base Smalltalk programming puzzle.'.
  	info maintainer: ''.
  	info homepage: 'http://map.squeak.org/package/2fa59952-dde7-426c-8823-5d70791cae76'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/DeveloperWorkspace/Techo-Shout-tbn.4.mcz'.
  	self provides: #().
  
  	self dependsOn: #('Shout').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/DeveloperWorkspace/Techo-Shout-tbn.4.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'Techo-Shout'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>OmniBrowserFull (in category 'Code Browsing') -----
  OmniBrowserFull
  
  	self name: 'OmniBrowser-Full'.
  	self version: '0.25'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Code Browsing'.
  	info description: 
  'OmniBrowser is a ground up rewrite of the classical system browsers provided in Smalltalk. It''s designed to be flexible and extensible, so as to encourage experimentation with new types of development tools, language extensions, and runtime environments. In fact it''s a framework to build browsers.
  
  This packages installs OmniBrowser, a rewrite of the system browser using OmniBrowser and fixes to make things work with new Squeak versions.'.
  	info maintainer: 'Damien Cassou'.
  	info homepage: 'http://source.wiresong.ca/ob/'.
  	info squeakMapID: ''.
  	info url: 'http://www.squeaksource.com/OmniBrowserFixes/OmniBrowserFixes-dc.25.mcz'.
  	self provides: #().
  
  	self dependsOn: #('OmniBrowser' 'OmniBrowser-Morphic' 'OmniBrowser-SUnitIntegration' 'OmniBrowser-Standard' 'OmniBrowser-TraitsIntegration').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://www.squeaksource.com/OmniBrowserFixes/OmniBrowserFixes-dc.25.mcz'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'OmniBrowser-Full'.
- 	].!

Item was changed:
  ----- Method: PackagesSqueak310U>>GamesTests (in category 'Games') -----
  GamesTests
  
  	self name: 'GamesTests'.
  	self version: '2003-5-2'.
+ 	self worksIn: #( PackagesSqueak310U )
  
  	info category: 'Games'.
  	info description: 
  ''.
  	info maintainer: 'Lex Spoon <lex at lexspoon.org>'.
  	info homepage: ''.
  	info squeakMapID: ''.
  	info url: 'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/gamesTests-asm.cs'.
  	self provides: #().
  
  	self dependsOn: #('Games').
  
+ !
- 	self load: [
- 		Installer installUrl:'http://universes.dnsalias.net:8888/universes/repositories/stable-3.7/gamesTests-asm.cs'.
- 	].
- 
- 	self unload: [
- 		Installer mc unload: 'GamesTests'.
- 	].!



More information about the Packages mailing list