Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
SqueakLightII Unofficial 3.11
Last updated at 9:09 am UTC on 6 March 2017

2010


I decide to start from 3.9 and do all again only with .cs
The Packages that have been removed are:

Removed in 3.10

More removed Packages

Friday, 27 June 2008, 11:59:47 am, squeak
Put here any relevant feedback for this experiment could end in a 3.11 , more modular and small as 3.10 was, more easy to work for newbies.
I think is a small step all need for learn to how deal with modular images and go towards MinimalMorphic, Kernel, Spoon , Morphic 3.0.

Or for have the best of all ideas in one "SqueakForAll"

Monday, 30 June 2008, 1:30:18 am, squeak
No SUnit Tests? -wiz

Tuesday, 1 July 2008, 11:44:47 am, squeak
Yes, but external to the image.
At the moment the how to is
| loader |
    loader _ CodeLoader new.
    loader baseURL: 'http://www.squeaksource.com/Ladrillos/'.
    loader loadSourceFiles: #('SUnit-edc.1.mcz' 'SUnitGUI-edc.1.mcz'
'Tests-edc.36.mcz' 'Tests-Utilities-edc.1' 'KernelTests-edc.1.mcz'
'GraphicsTests-edc.1.mcz' 'CollectionsTests-edc.75.mcz'
'Tests-edc.1.mcz' 'SystemChangeNotification-Tests-edc.36.mcz'
'MorphicTests-edc.1.mcz');installSourceFiles.

When the load ends , run the test.
Today I have 1500 plus green and I send the info to all who care about

Wednesday, 2 July 2008, 10:58 am, squeak
Miss having mp3 as you have in earlier full Squeak ?
No more !!
I put a quick Project here for you have again, as I playing my tango and you don't have the file, raise one error.
MP3Again.pr
Close and look for your stuff.
And if you like exchange your music for my old 33 1/3 vynil tangos converted to mp3, send mail to me.

Wednesday, 2 July 2008, 11:54:18 am, squeak
How to have the IRC tool
| loader |
	loader _ CodeLoader new.
	loader baseURL: 'http://www.squeaksource.com/Ladrillos/'.
	loader loadSourceFiles: #('FFI-Kernel-ar.7.mcz' 'Network-IRC-fc.10.7.6.mcz');installSourceFiles.


Thursday, 3 July 2008, 10:40:57 am, squeak
You like have MorphicWrappers and MathMorphs ?
In a Workspace, 

    
    | loader |
    loader _ CodeLoader new.
    loader baseURL: 'http://www.squeaksource.com/MathMorphsRevival/'.
    loader loadSourceFiles: #('MorphicWrappers-edc.3.mcz' 'Functions-mz.1.mcz');installSourceFiles.
    loader baseURL: 'http://wiki.squeak.org/squeak/uploads/6050/'.
     loader loadSegments: #('LinearAlgebraI.morph' 'ModularIntegers.morph').
        loader installSegments.


Friday, 4 July 2008, 9:46:39 am, squeak
> Where, by the way, can I get that from? I miss the animated mouse head! Do I
> have to go get an old image and find the class?
>
> Rob

You ask , I solve
	|sourceFile loader |
	loader _ CodeLoader new.
	loader baseURL: 'http://www.squeaksource.com/Ladrillos/'	.
		loader loadSourceFiles: #('Flash-edc.6.mcz');installSourceFiles.
sourceFile := HTTPLoader default retrieveContentsFor: 'http://wiki.squeak.org/squeak/uploads/5988/SqueakLogoFor3dot10.sar'.
sourceFile := RWBinaryOrTextStream with: (sourceFile content).
SARInstaller new fileInFrom: sourceFile


Sunday, 6 July 2008, 7:10:53 pm, squeak
Aida / Scribo installation
| loader |
	loader _ CodeLoader new.
	loader baseURL: 'http://www.squeaksource.com/SPort/'.
	 loader loadSourceFiles: #('Sport-2.031.mcz');installSourceFiles.
	loader baseURL: 'http://mc.bioskop.fr/Swazoo/'.
	 loader loadSourceFiles: #('Swazoo-np.7.mcz');installSourceFiles.
	loader baseURL:'http://mc.bioskop.fr/Aida/'.
		 loader loadSourceFiles: #('Aida5.6-np.55.mcz');installSourceFiles.
		loader baseURL:'http://scribo.bioskop.fr/repository/'.
		 loader loadSourceFiles: #('scribo-mu.105.mcz');installSourceFiles.
		
		SwazooAida demoStart.
(AIDASite named: 'aidademo') styleClass: #ScriboStyle; blog; wiki; siteContent

		Then go to your internet broser, point the url:
                http://localhost:8080/, login with user: admin and password: password
	


Wednesday, 9 July 2008, 7:30:42 pm, squeak
For Loading EToys projects
| loader |
	loader _ CodeLoader new.
	loader baseURL: 'http://www.squeaksource.com/Ladrillos/'.
	loader loadSourceFiles: #('EToys-edc.30.mcz'
'FlexibleVocabularies-al.5.mcz');installSourceFiles.
	UCodeLoader solveMissing: #('ZoomAndScrollControllerMorph'
'ScriptEditorMorph' 'TwoWayScrollPane''Etoys-Player.1').


Then drag and drop your previous .pr.
Close the first Debugger window and many projects could work , but not all.

For very old code with Debugger saying some about scroll, download and install this

GlueForOldFriends.cs


Thursday, 10 July 2008, 6:37:17 pm, squeak
Loading complex things like having Seaside + Pier + Magritte
| thisPack |
#('Magritte-Model-lr.300' 'OmniBrowser-cwp.393' 'DynamicBindings-gc.7'
'OB-Morphic-tween.40' 'Magritte-Morph-tg.39' 'Magritte-Tests-lr.131'
'KomServices-gc.12' 'Pier-Model-lr.191' 'OB-Standard-dc.310'
'KomHttpServer-gc.30'  'Pier-Tests-lr.84'
'OB-SUnitIntegration-dc.9' 'OmniBrowserFixes-dc.25'
'Seaside2.8a1-lr.522' 'Scriptaculous-lr.228' 'Pier-OmniBrowser-lr.31'
'RSRSS2-pmm.9' 'Magritte-Seaside-lr.248' 'Pier-Seaside-lr.231'
'Pier-Documents-lr.3' 'Pier-Blog-tg.66' 'Pier-EditorEnh-lr.9'
'Pier-Security-lr.102') do: [:ea| thisPack := UCodeLoader foundMe:
ea,'.mcz'.
UGlobalInstaller new planToInstallPackage: thisPack]


I warn all about this image don't have Traits and all Traits code should be avoided or hit proceed in the Debugger

Saturday, 12 July 2008, 1:59:48 pm, squeak
For having Baby-SRE
I advice to load Connectors first.
Find the UCodeLoader lookFor in the Welcome window, press and answer the questions.
Then do
| loader |
	loader _ CodeLoader new.
	loader baseURL: 'http://www.squeaksource.com/Ladrillos/'.
	loader loadSourceFiles: #('BabySRE-edc.40.mcz' );installSourceFiles.




Wednesday, 16 July 2008, 10:15:23 am, squeak
For having VMMaker

| loader |
	loader _ CodeLoader new.
	loader baseURL: 'http://www.squeaksource.com/Ladrillos/'.
	loader loadSourceFiles: #('FFI-Kernel-ar.7.mcz''Speech-Klatt-edc.1.mcz' 'VMMaker-tpr.14.mcz');installSourceFiles

Under #7228 the previous code raises an error: Error: FFIConstants is not on server

I fix in VMMaker-edc.16.mcz, you could load this one only and the prerequisites is loaded, very thanks

Wednesday, 23 July 2008, 9:48:16 am, squeak
How to read some from Internet
Very crude is included , like HTTPSocket httpShowPage: 'http://wiki.squeak.org/squeak/6056'
More polished ? Use the UCodeLoader lookFor , type Net and select Network-HTML-md.4 from the menu and load my old
HTMLScrollableField.cs
Miss Scamper ?

|loader |
	loader _ CodeLoader new.
	loader baseURL: 'http://www.squeaksource.com/Ladrillos/'.
	loader loadSourceFiles: #('Scamper-edc.13.mcz' );installSourceFiles.


Wednesday, 23 July 2008, 8:20:54 pm, squeak
Al que que quiera Celeste que le cueste

Install first
CelesteGlue.cs
And then
| loader |
	loader _ CodeLoader new.
	loader baseURL:'http://www.squeaksource.com/Ladrillos/'.
	loader loadSourceFiles: #('Network-Mail Reader-edc.1.mcz' );installSourceFiles.

Evaluating the previous code leads to an error: Error: I need a valid Mail DB to process: Please setup Celeste before opening CelesteAddressBook


Do MailDB openOn: 'EMAIL', seems a initialization error, send mil to Giovanni as he is the owner of Celeste.
I do a interim Network-Mail Reader-edc.2.mcz until he made some new


And you have last Giovanni Giorgi made , suited to SLII

Friday, 25 July 2008, 12:56:27 pm, squeak
The beloved old 3.6 Games , plus my Puzzle and Jerome amazing fills
SLGames.sar



Having a small server
Below is the version 4 , with newer I could find of Comanche and HttpView2, load this and you are in web bussiness, enough for many needs
LightWeb.sar

Development tools I use
The following list

Ma base additions-cmm.1.cs
Tracing Messages Browser-cmm.19.1.cs
DebugReport-minami.25.mcz
Network-IRC-fc.10.7.6.mcz
Scheduler-jrp.20.mcz
Toothpick-tbn.1.mcz
Shout.3.15-tween.69.mcz
FileMan-mu.99.mcz
InstanceEncoder-jrp.9.mcz
Network-HTML-md.4.mcz
KeymappingInstaller-8.sa
SendTreeExplorer-JW.1.cs
Refactory-edc.3812.mcz

is into the version 9 below
SqueakRosDev3dot10.sar

Tools , new versions I advice to you, suited to base SqueakLightII
KeymappingInstaller_10.sar

I found this Traits reloads, still not enough , but good starting point to study
http://www.squeaksource.com/Ladrillos/Traits.bootstrap-al.1.mcz