Pharo-users
By thread
pharo-users@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
September 2014
- 85 participants
- 695 messages
Re: [Pharo-users] Booting into Pharo!
by Pierce Ng
On Sun, Sep 21, 2014 at 06:56:27PM -0400, David T. Lewis wrote:
> If you are booting directly into the image, you may find it useful to also
> load CommandShell/OSProcess into your image. This will let you open a
> Smalltalk shell window directly within your Squeak/Pharo boot image, so
> that you have access to the operating system with actually opening any
> windows or terminal sessions outside of your image.
>
> http://www.squeaksource.com/CommandShell
> http://www.squeaksource.com/OSProcess
In view of ShellShock, from a PipeableOSProcess example:
| env |
env := OSProcess thisOSProcess environment copy.
env at: #SHOCKED put: '() { :;}; echo ShellShocked;'.
(PipeableOSProcess command: 'echo Nah environment: env) output
This gives the following. (Yes, this is done on an unpatched bash for demo
purposes. Everyone should patch as soon as you can.)
ShellShocked
Nah
I have a webapp that shells out to some OS command line tool. I think I have
written it such that untrustworthy web input does not taint the command line
tool's environment and input. I think. Everyone doing similar may wish to
relook at it.
David, perhaps the code is already there, but can we run OS commands without
invoking the shell?
Pierce
Sept. 25, 2014
Re: [Pharo-users] Ridiculous we are
by Henrik Johansen
On 25 Sep 2014, at 5:00 , Hilaire Fernandes <hilaire(a)drgeo.eu> wrote:
> Le 24/09/2014 18:48, Benjamin Pollack a écrit :
>> On Tue, 23 Sep 2014 08:51:54 -0400, Hilaire <hilaire(a)drgeo.eu> wrote:
>>
>>> Le 23/09/2014 14:09, Damien Cassou a écrit :
>>>> I recently read documents about utf-8 encoding. In all of them, the
>>>> author says that pathnames should be kept as is because you never know
>>>> which encoding the filesystem uses. So, a filename should probably be
>>>> a bytearray.
>>>
>>>
>>> yes, but a #é should be encoded in two bytes.
>>
>> As noted in my previous message, "é" could be represented as either
>> one or two Unicode code points, and these in turn could validly be
>> either two or three bytes in UTF-8. My gut says that $é should be
>> U+00E9, because otherwise you should have to use two Characters ($e
>> and $´), but you could legitimately argue otherwise as well, and at
>> any rate, #é could definitely be either. This is likely the core of
>> the issue you're hitting.
> As I understand it, #é should be encoded on two bytes and only two byte.
> Only ASCII is coded as 1 byte with UTF-8.
> See ref. on Wikipedia
Hilaire: Benjamin is talking about which unicode normalization form é should be represented in, which is orthogonal to the encoding; http://en.wikipedia.org/wiki/Unicode_equivalence#Combining_and_precomposed_… .
So é can indeed be encoded in two different ways in utf8 (as in any other encoding), both as #[c3 a9] (encoding U+E9, "Latin small letter e with acute"), and as #[65 cc 81] (encoding U+65, "Latin small letter e", followed by U+0301, "Combining accute accent")
Benjamin: Since the base path that contains the problematic character originates from a filesystem primitive, we can safely assume it's already in a canonical form*, Pharo does no automatic normalization. (that is, if the path would have been e + ´, the internal string would have two separate characters as well)
Cheers,
Henry
* Only Mac OSX defines a canonical form for its paths anyways, the others don't care
Sept. 25, 2014
FFI on Linux again
by Annick Fron
Hi,
I Have tried the following code on Linux , but the call breaks. Is it because of the X11Window structure missing or else ?
Annick
====
testGetOurWindowLocation
"self new testGetOurWindowLocation"
| display ourWindow aParent anX anY aWidth aHeight aBorderWidth aDepth |
display := X11Display XOpenDisplay: nil.
ourWindow := display ourWindow.
(Alien lookup: 'XGetGeometry' inLibrary: 'X11')
primFFICallResult: nil
withArguments:
{display.
ourWindow.
(aParent := Alien new: 4).
(anX := Alien new: 4).
(anY := Alien new: 4).
(aWidth := Alien new: 4).
(aHeight := Alien new: 4).
(aBorderWidth := Alien new: 4).
(aDepth := Alien new: 4)}.
(anX unsignedLongAt: 1) inspect
Sept. 25, 2014
invoking python from pharo
by Pablo R. Digonzelli
Hi all , I need to invoke python rutines from Pharo. I need some orientation about the best way to do it.
TIA
Ing. Pablo Digonzelli
Software Solutions
IP-Solutiones SRL
Metrotec SRL
25 de Mayo 521
Email: pdigonzelli(a)softsargentina.com
pdigonzelli(a)gmail.com
Cel: 5493815982714
Sept. 25, 2014
Re: [Pharo-users] Ridiculous we are
by Hilaire Fernandes
Le 24/09/2014 18:48, Benjamin Pollack a écrit :
> On Tue, 23 Sep 2014 08:51:54 -0400, Hilaire <hilaire(a)drgeo.eu> wrote:
>
>> Le 23/09/2014 14:09, Damien Cassou a écrit :
>>> I recently read documents about utf-8 encoding. In all of them, the
>>> author says that pathnames should be kept as is because you never know
>>> which encoding the filesystem uses. So, a filename should probably be
>>> a bytearray.
>>
>>
>> yes, but a #é should be encoded in two bytes.
>
> As noted in my previous message, "é" could be represented as either
> one or two Unicode code points, and these in turn could validly be
> either two or three bytes in UTF-8. My gut says that $é should be
> U+00E9, because otherwise you should have to use two Characters ($e
> and $´), but you could legitimately argue otherwise as well, and at
> any rate, #é could definitely be either. This is likely the core of
> the issue you're hitting.
As I understand it, #é should be encoded on two bytes and only two byte.
Only ASCII is coded as 1 byte with UTF-8.
See ref. on Wikipedia
Btw, I tracked the problem and provided a temporary fix.
Hilaire
--
Dr. Geo - http://drgeo.eu
iStoa - http://istoa.drgeo.eu
Sept. 25, 2014
Re: [Pharo-users] Threaded callbacks with FFI
by Annick Fron
OK I try do do that.
Le 25 sept. 2014 à 12:18, phil(a)highoctane.be a écrit :
>
> Le 25 sept. 2014 11:32, "Annick Fron" <list(a)afceurope.com> a écrit :
> >
> > Hi,
> >
> > I am calling C from pharo with a callback, and it seems the callback is called in another thread.
> > I canât wrap the block in a process, because the return will be wrong, how can I do ???
> >
> Can you send us sample code ?
> > Annick
> >
Sept. 25, 2014
Re: [Pharo-users] Loading PetitParser loads a hell of a lot of things... is there a terser version?
by Tudor Girba
Hi,
The dependencies are needed for the UI. If you can live without the UI, you
can load the 'Core' group from the configuration.
Cheers,
Doru
On Thu, Sep 25, 2014 at 2:07 PM, phil(a)highoctane.be <phil(a)highoctane.be>
wrote:
> I am loading PetitParser in my image but it takes a loooong time to load
> and below is what I see in my Jenkins console.
>
> Build for that step starts at 13:48:51 and ends at 14:03:15. Phew!
>
> Also a couple errors in loading examples.
>
> What is recommended to use to not have all of this? I just need the parser
> and tools to browse the grammars.
>
>
> [34m13:48:51 : --> loadPetitParser step starting
>
> Loading 1.6-baseline of ConfigurationOfPetitParser...
> Fetched -> ConfigurationOfGlamour-AndreiChis.158 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Loaded -> ConfigurationOfGlamour-AndreiChis.158 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> /var/lib/jenkins/jobs/CXP Frontend/workspace/package-cache
> Fetched -> PetitParser-JanKurs.247 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Fetched -> PetitTests-JanKurs.59 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Fetched -> PetitAnalyzer-DiegoLont.46 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Fetched -> PetitSmalltalk-JanKurs.71 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Fetched -> PetitCSV-tg.7 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Fetched -> PetitJson-DamienCassou.8 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Fetched -> PetitMSE-AndreHora.21 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Fetched -> PetitManifestMf-tg.9 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Fetched -> PetitRegex-JanKurs.29 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Fetched -> PetitXml-JanKurs.36 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Fetched -> PetitXPath-EstebanLorenzano.7 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Fetched -> PetitIslands-JanKurs.9 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Fetched -> Factorial-Language-lr.6 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Project: Glamour development [2.91-baseline]
> Fetched -> ConfigurationOfGraphET-TudorGirba.8 ---
> http://smalltalkhub.com/mc/ObjectProfile/GraphET/main/ ---
> http://smalltalkhub.com/mc/ObjectProfile/GraphET/main/
> Loaded -> ConfigurationOfGraphET-TudorGirba.8 ---
> http://smalltalkhub.com/mc/ObjectProfile/GraphET/main/ ---
> /var/lib/jenkins/jobs/CXP Frontend/workspace/package-cache
> Fetched -> ConfigurationOfRubric-AndreiChis.7 ---
> http://smalltalkhub.com/mc/AlainPlantec/Rubric/main/ ---
> http://smalltalkhub.com/mc/AlainPlantec/Rubric/main/
> Loaded -> ConfigurationOfRubric-AndreiChis.7 ---
> http://smalltalkhub.com/mc/AlainPlantec/Rubric/main/ ---
> /var/lib/jenkins/jobs/CXP Frontend/workspace/package-cache
> Fetched -> ConfigurationOfRoassal-StephaneDucasse.1195 ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/
> Loaded -> ConfigurationOfRoassal-StephaneDucasse.1195 ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ ---
> /var/lib/jenkins/jobs/CXP Frontend/workspace/package-cache
> Fetched -> Glamour-Announcements-TudorGirba.7 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> Glamour-Helpers-AndreiChis.35 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> Glamour-Core-AndreiChis.277 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> Glamour-Presentations-TudorGirba.157 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> Glamour-Browsers-TudorGirba.104 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> Glamour-Examples-StephanEggermont.284 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Project: Roassal for Glamour development [0.7-baseline]
> Fetched -> Roassal-AlexandreBergel.759 ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/
> Fetched -> RoassalMorphic-AlexandreBergel.175 ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/
> Fetched -> RoassalExtras-AlexandreBergel.61 ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/
> Fetched -> RoassalAthens-VincentBlondeau.20 ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/
> Project: Graph-ET development [0.1-baseline]
> Fetched -> Graph-ET-TudorGirba.125 ---
> http://smalltalkhub.com/mc/ObjectProfile/GraphET/main/ ---
> http://smalltalkhub.com/mc/ObjectProfile/GraphET/main/
> Project: Roassal development [0.7-baseline]
> Project: Magritte3 development [3.1.5]
> Project: Grease release1.1 [1.1.11]
> Project: Seaside3 release3.1 [3.1.3]
> Project: Grease release1.1 [1.1.11]
> Project: Grease Core Tests release1.1 [1.1.11]
> Project: SPort2 2.34
> Fetched -> FileSystem-Legacy-JohanBrichau.2 ---
> http://smalltalkhub.com/mc/PharoExtras/FileSystemLegacy/main/ ---
> http://smalltalkhub.com/mc/PharoExtras/FileSystemLegacy/main/
> Project: Zinc Project stable [2.5.3]
> Project: Grease Slime release1.1 [1.1.11]
> Fetched -> Magritte-Model-StephanEggermont.451 ---
> http://smalltalkhub.com/mc/Magritte/Magritte3/main/ ---
> http://smalltalkhub.com/mc/Magritte/Magritte3/main/
> Fetched -> Magritte-Morph-SeanDeNigris.86 ---
> http://smalltalkhub.com/mc/Magritte/Magritte3/main/ ---
> http://smalltalkhub.com/mc/Magritte/Magritte3/main/
> Fetched -> Magritte-Pharo3-Model-DiegoLont.3 ---
> http://smalltalkhub.com/mc/Magritte/Magritte3/main/ ---
> http://smalltalkhub.com/mc/Magritte/Magritte3/main/
> Project: Rubric 1.1
> Fetched -> Rubric-AndreiChis.134 ---
> http://smalltalkhub.com/mc/AlainPlantec/Rubric/main/ ---
> http://smalltalkhub.com/mc/AlainPlantec/Rubric/main/
> Fetched -> Glamour-Rubric-Presentations-AndreiChis.20 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> Glamour-Morphic-Theme-AndreiChis.180 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> Glamour-Morphic-Widgets-AliakseiSyrel.126 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> Glamour-Morphic-Renderer-AndreiChis.269 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> Glamour-Morphic-Pager-AliakseiSyrel.67 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> CollectionExtensions-TudorGirba.40 ---
> http://smalltalkhub.com/mc/Moose/CollectionExtensions/main/ ---
> http://smalltalkhub.com/mc/Moose/CollectionExtensions/main/
> Fetched -> Glamour-Tools-AndreiChis.78 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> Glamour-GraphET-Presentations-TudorGirba.7 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> Glamour-Examples-Extras-AndreiChis.1 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> Glamour-Roassal-Presentations-AndreiChis.24 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/
> Fetched -> PetitGui-JanKurs.141 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/
> Starting atomic load
> GLMBasicExamples>>browserWithToolbar (GLMUIThemeExtraIcons is Undeclared)
> GLMBasicExamples>>morphIcons (GLMUIThemeExtraIcons is Undeclared)
>
> GLMBasicExamples>>multipleActions (GLMUIThemeExtraIcons is Undeclared)
>
> GLMBasicExamples>>populatePortAction (GLMUIThemeExtraIcons is Undeclared)
>
> GLMBasicExamples>>simplePager (GLMPager is Undeclared)
>
> GLMBasicExamples>>smalltalkCode (GLMUIThemeExtraIcons is Undeclared)
>
> GLMBasicExamples>>smalltalkCode (GLMUIThemeExtraIcons is Undeclared)
>
> GLMBasicExamples>>tableWithIcons (GLMUIThemeExtraIcons is Undeclared)
>
> GLMBasicExamples>>tableWithIcons (GLMUIThemeExtraIcons is Undeclared)
>
> GLMBasicExamples>>tabsWithDifferentActions (GLMUIThemeExtraIcons is
> Undeclared)
>
> GLMBasicExamples>>tabsWithDifferentActions (GLMUIThemeExtraIcons is
> Undeclared)
>
> GLMBasicExamples>>tabsWithDifferentLabels (GLMUIThemeExtraIcons is
> Undeclared)
>
> GLMBasicExamples>>treeWithMenu (GLMUIThemeExtraIcons is Undeclared)
>
> GLMBasicExamples>>updateableBrowser (GLMUIThemeExtraIcons is Undeclared)
>
> GLMBasicExamples>>updateableBrowser (GLMUIThemeExtraIcons is Undeclared)
>
> GLMBasicExamples>>updateableBrowser (GLMItemAdded is Undeclared)
>
> GLMBasicExamples>>updateableBrowser (GLMItemRemoved is Undeclared)
>
> GLMBasicExamples>>validatingPresentation (GLMItemRemoved is Undeclared)
>
> GLMBasicExamples>>validatingPresentation (GLMItemAdded is Undeclared)
>
> GLMBasicExamples>>validatingPresentation (GLMUIThemeExtraIcons is
> Undeclared)
>
> GLMBasicExamples>>validatingPresentation (GLMUIThemeExtraIcons is
> Undeclared)
> PPSmalltalkParser>>buildMethod:(pragma is shadowed)
> JavaParserTest>>createContext:(context is shadowed)
> JavaParserTest>>debug:rule:(context is shadowed)
> JavaParserTest>>parse:rule:(context is shadowed)
> PPMemoizingIslandTest>>testMemo(context is shadowed)
> GLMWizard>>initialize (scriptTransmission is Undeclared)
> GLMExamplesBrowser>>exampleIn: (GLMUIThemeExtraIcons is Undeclared)
> GLMSmalltalkCodePresentation>>defaultSelectionActions
> (GLMUIThemeExtraIcons is Undeclared)
>
> GLMSmalltalkCodePresentation>>defaultSelectionActions
> (GLMUIThemeExtraIcons is Undeclared)
> Loaded -> PetitParser-JanKurs.247 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> PetitTests-JanKurs.59 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> PetitAnalyzer-DiegoLont.46 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> PetitSmalltalk-JanKurs.71 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> PetitCSV-tg.7 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> PetitJson-DamienCassou.8 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> PetitMSE-AndreHora.21 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> PetitManifestMf-tg.9 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> PetitRegex-JanKurs.29 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> PetitXml-JanKurs.36 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> PetitXPath-EstebanLorenzano.7 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> PetitIslands-JanKurs.9 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> Factorial-Language-lr.6 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Loaded -> Glamour-Announcements-TudorGirba.7 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> Glamour-Helpers-AndreiChis.35 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> Glamour-Core-AndreiChis.277 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> Glamour-Presentations-TudorGirba.157 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> Glamour-Browsers-TudorGirba.104 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> Glamour-Examples-StephanEggermont.284 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Finished atomic load
> ROMondrianViewBuilderTest>>testFontSize(node is shadowed)
> ROMondrianViewBuilderTest>>testLabelText(node is shadowed)
> ROMondrianViewBuilderTest>>testRemoveNode(node is shadowed)
> ROTreeMapLayout class>>withWeightBlock:(layout is shadowed)
> Loaded -> Roassal-AlexandreBergel.759 ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ --- cache
> ROView>>bitmapForElements:(elementsToRender is shadowed)
> ROEaselMorphic>>showExamplesOnView: (ROTreeMapBuilderExample is
> Undeclared)
> Loaded -> RoassalMorphic-AlexandreBergel.175 ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ --- cache
> ROCountryMapBuilder>>example1 (GETDiagramBuilder is Undeclared)
> ROTreeMapBuilderExample>>collectionHierarchyTreeMapHighlightsOn:
> (WeakHashSet is Undeclared)
>
> ROTreeMapBuilderExample>>collectionHierarchyTreeMapHighlightsOn:
> (WeakKeyIdentityHashTable is Undeclared)
>
> ROTreeMapBuilderExample>>collectionHierarchyTreeMapHighlightsOn:
> (WeakKeyIdentityHashTable is Undeclared)
> SBSunburstBuilder>>radiusWithDepth:maxDepth:viewSize:(maxDepth is shadowed)
> SBSunburstBuilder>>strokeWithDepth:maxDepth:viewSize:arcRadius:(maxDepth
> is shadowed)
> SimilarityMatrix class>>demo3 (GTUtils is Undeclared)
>
> SimilarityMatrix class>>demo3 (GTUtils is Undeclared)
> Loaded -> RoassalExtras-AlexandreBergel.61 ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ --- cache
> Loaded -> RoassalAthens-VincentBlondeau.20 ---
> http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ --- cache
> Loaded -> Graph-ET-TudorGirba.125 ---
> http://smalltalkhub.com/mc/ObjectProfile/GraphET/main/ --- cache
> Loaded -> FileSystem-Legacy-JohanBrichau.2 ---
> http://smalltalkhub.com/mc/PharoExtras/FileSystemLegacy/main/ ---
> /var/lib/jenkins/jobs/CXP Frontend/workspace/package-cache
> Loaded -> Magritte-Model-StephanEggermont.451 ---
> http://smalltalkhub.com/mc/Magritte/Magritte3/main/ --- cache
> Loaded -> Magritte-Morph-SeanDeNigris.86 ---
> http://smalltalkhub.com/mc/Magritte/Magritte3/main/ --- cache
> Loaded -> Magritte-Pharo3-Model-DiegoLont.3 ---
> http://smalltalkhub.com/mc/Magritte/Magritte3/main/ --- cache
> Starting atomic load
> RubSegmentMorph>>containsPoint: (borderWidth is Undeclared)
> RubSegmentMorph>>filledForm (borderColor is Undeclared)
>
> RubSegmentMorph>>filledForm (borderColor is Undeclared)
>
> RubSegmentMorph>>vertices:color:borderWidth:borderColor: (borderWidth is
> Undeclared)
>
> RubSegmentMorph>>vertices:color:borderWidth:borderColor: (borderColor is
> Undeclared)
> GLMBasicExamples>>updateableIndividualPresentations (GLMItemAdded is
> Undeclared)
>
> GLMBasicExamples>>updateableIndividualPresentations (GLMItemRemoved is
> Undeclared)
>
> GLMBasicExamples>>updateableIndividualPresentations (GLMItemAdded is
> Undeclared)
>
> GLMBasicExamples>>updateableIndividualPresentations (GLMItemRemoved is
> Undeclared)
>
> GLMBasicExamples>>updateableIndividualPresentations (GLMItemAdded is
> Undeclared)
>
> GLMBasicExamples>>updateableIndividualPresentations (GLMItemRemoved is
> Undeclared)
> GLMParameterizableExamplesBrowser>>compose(browser is shadowed)
> GLMMagrittePersonExample class>>sampleData (GLMAnnouncingCollection is
> Undeclared)
> GLMMorphicValidatorPaneRenderer>>buttonRowFrom:(buttons is shadowed)
> GLMMorphicWindowRenderer>>setLabelOf:for:(window is shadowed)
> Loaded -> Rubric-AndreiChis.134 ---
> http://smalltalkhub.com/mc/AlainPlantec/Rubric/main/ --- cache
> Loaded -> Glamour-Rubric-Presentations-AndreiChis.20 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> Glamour-Morphic-Theme-AndreiChis.180 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> Glamour-Morphic-Widgets-AliakseiSyrel.126 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> Glamour-Morphic-Renderer-AndreiChis.269 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> Glamour-Morphic-Pager-AliakseiSyrel.67 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> CollectionExtensions-TudorGirba.40 ---
> http://smalltalkhub.com/mc/Moose/CollectionExtensions/main/ ---
> http://smalltalkhub.com/mc/Moose/CollectionExtensions/main/
> Loaded -> Glamour-Tools-AndreiChis.78 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> Glamour-GraphET-Presentations-TudorGirba.7 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> Glamour-Examples-Extras-AndreiChis.1 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> Glamour-Roassal-Presentations-AndreiChis.24 ---
> http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
> Loaded -> PetitGui-JanKurs.141 ---
> http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
> Finished atomic load
> ...finished 1.6-baseline [34m14:03:15 : --> loadPetitParser step done
>
> Phil
>
--
www.tudorgirba.com
"Every thing has its own flow"
Sept. 25, 2014
Loading PetitParser loads a hell of a lot of things... is there a terser version?
by phil@highoctane.be
I am loading PetitParser in my image but it takes a loooong time to load
and below is what I see in my Jenkins console.
Build for that step starts at 13:48:51 and ends at 14:03:15. Phew!
Also a couple errors in loading examples.
What is recommended to use to not have all of this? I just need the parser
and tools to browse the grammars.
[34m13:48:51 : --> loadPetitParser step starting
Loading 1.6-baseline of ConfigurationOfPetitParser...
Fetched -> ConfigurationOfGlamour-AndreiChis.158 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Loaded -> ConfigurationOfGlamour-AndreiChis.158 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
/var/lib/jenkins/jobs/CXP Frontend/workspace/package-cache
Fetched -> PetitParser-JanKurs.247 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Fetched -> PetitTests-JanKurs.59 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Fetched -> PetitAnalyzer-DiegoLont.46 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Fetched -> PetitSmalltalk-JanKurs.71 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Fetched -> PetitCSV-tg.7 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Fetched -> PetitJson-DamienCassou.8 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Fetched -> PetitMSE-AndreHora.21 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Fetched -> PetitManifestMf-tg.9 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Fetched -> PetitRegex-JanKurs.29 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Fetched -> PetitXml-JanKurs.36 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Fetched -> PetitXPath-EstebanLorenzano.7 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Fetched -> PetitIslands-JanKurs.9 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Fetched -> Factorial-Language-lr.6 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Project: Glamour development [2.91-baseline]
Fetched -> ConfigurationOfGraphET-TudorGirba.8 ---
http://smalltalkhub.com/mc/ObjectProfile/GraphET/main/ ---
http://smalltalkhub.com/mc/ObjectProfile/GraphET/main/
Loaded -> ConfigurationOfGraphET-TudorGirba.8 ---
http://smalltalkhub.com/mc/ObjectProfile/GraphET/main/ ---
/var/lib/jenkins/jobs/CXP Frontend/workspace/package-cache
Fetched -> ConfigurationOfRubric-AndreiChis.7 ---
http://smalltalkhub.com/mc/AlainPlantec/Rubric/main/ ---
http://smalltalkhub.com/mc/AlainPlantec/Rubric/main/
Loaded -> ConfigurationOfRubric-AndreiChis.7 ---
http://smalltalkhub.com/mc/AlainPlantec/Rubric/main/ ---
/var/lib/jenkins/jobs/CXP Frontend/workspace/package-cache
Fetched -> ConfigurationOfRoassal-StephaneDucasse.1195 ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/
Loaded -> ConfigurationOfRoassal-StephaneDucasse.1195 ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ ---
/var/lib/jenkins/jobs/CXP Frontend/workspace/package-cache
Fetched -> Glamour-Announcements-TudorGirba.7 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> Glamour-Helpers-AndreiChis.35 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> Glamour-Core-AndreiChis.277 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> Glamour-Presentations-TudorGirba.157 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> Glamour-Browsers-TudorGirba.104 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> Glamour-Examples-StephanEggermont.284 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Project: Roassal for Glamour development [0.7-baseline]
Fetched -> Roassal-AlexandreBergel.759 ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/
Fetched -> RoassalMorphic-AlexandreBergel.175 ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/
Fetched -> RoassalExtras-AlexandreBergel.61 ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/
Fetched -> RoassalAthens-VincentBlondeau.20 ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/
Project: Graph-ET development [0.1-baseline]
Fetched -> Graph-ET-TudorGirba.125 ---
http://smalltalkhub.com/mc/ObjectProfile/GraphET/main/ ---
http://smalltalkhub.com/mc/ObjectProfile/GraphET/main/
Project: Roassal development [0.7-baseline]
Project: Magritte3 development [3.1.5]
Project: Grease release1.1 [1.1.11]
Project: Seaside3 release3.1 [3.1.3]
Project: Grease release1.1 [1.1.11]
Project: Grease Core Tests release1.1 [1.1.11]
Project: SPort2 2.34
Fetched -> FileSystem-Legacy-JohanBrichau.2 ---
http://smalltalkhub.com/mc/PharoExtras/FileSystemLegacy/main/ ---
http://smalltalkhub.com/mc/PharoExtras/FileSystemLegacy/main/
Project: Zinc Project stable [2.5.3]
Project: Grease Slime release1.1 [1.1.11]
Fetched -> Magritte-Model-StephanEggermont.451 ---
http://smalltalkhub.com/mc/Magritte/Magritte3/main/ ---
http://smalltalkhub.com/mc/Magritte/Magritte3/main/
Fetched -> Magritte-Morph-SeanDeNigris.86 ---
http://smalltalkhub.com/mc/Magritte/Magritte3/main/ ---
http://smalltalkhub.com/mc/Magritte/Magritte3/main/
Fetched -> Magritte-Pharo3-Model-DiegoLont.3 ---
http://smalltalkhub.com/mc/Magritte/Magritte3/main/ ---
http://smalltalkhub.com/mc/Magritte/Magritte3/main/
Project: Rubric 1.1
Fetched -> Rubric-AndreiChis.134 ---
http://smalltalkhub.com/mc/AlainPlantec/Rubric/main/ ---
http://smalltalkhub.com/mc/AlainPlantec/Rubric/main/
Fetched -> Glamour-Rubric-Presentations-AndreiChis.20 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> Glamour-Morphic-Theme-AndreiChis.180 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> Glamour-Morphic-Widgets-AliakseiSyrel.126 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> Glamour-Morphic-Renderer-AndreiChis.269 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> Glamour-Morphic-Pager-AliakseiSyrel.67 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> CollectionExtensions-TudorGirba.40 ---
http://smalltalkhub.com/mc/Moose/CollectionExtensions/main/ ---
http://smalltalkhub.com/mc/Moose/CollectionExtensions/main/
Fetched -> Glamour-Tools-AndreiChis.78 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> Glamour-GraphET-Presentations-TudorGirba.7 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> Glamour-Examples-Extras-AndreiChis.1 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> Glamour-Roassal-Presentations-AndreiChis.24 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ ---
http://smalltalkhub.com/mc/Moose/Glamour/main/
Fetched -> PetitGui-JanKurs.141 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/
Starting atomic load
GLMBasicExamples>>browserWithToolbar (GLMUIThemeExtraIcons is Undeclared)
GLMBasicExamples>>morphIcons (GLMUIThemeExtraIcons is Undeclared)
GLMBasicExamples>>multipleActions (GLMUIThemeExtraIcons is Undeclared)
GLMBasicExamples>>populatePortAction (GLMUIThemeExtraIcons is Undeclared)
GLMBasicExamples>>simplePager (GLMPager is Undeclared)
GLMBasicExamples>>smalltalkCode (GLMUIThemeExtraIcons is Undeclared)
GLMBasicExamples>>smalltalkCode (GLMUIThemeExtraIcons is Undeclared)
GLMBasicExamples>>tableWithIcons (GLMUIThemeExtraIcons is Undeclared)
GLMBasicExamples>>tableWithIcons (GLMUIThemeExtraIcons is Undeclared)
GLMBasicExamples>>tabsWithDifferentActions (GLMUIThemeExtraIcons is
Undeclared)
GLMBasicExamples>>tabsWithDifferentActions (GLMUIThemeExtraIcons is
Undeclared)
GLMBasicExamples>>tabsWithDifferentLabels (GLMUIThemeExtraIcons is
Undeclared)
GLMBasicExamples>>treeWithMenu (GLMUIThemeExtraIcons is Undeclared)
GLMBasicExamples>>updateableBrowser (GLMUIThemeExtraIcons is Undeclared)
GLMBasicExamples>>updateableBrowser (GLMUIThemeExtraIcons is Undeclared)
GLMBasicExamples>>updateableBrowser (GLMItemAdded is Undeclared)
GLMBasicExamples>>updateableBrowser (GLMItemRemoved is Undeclared)
GLMBasicExamples>>validatingPresentation (GLMItemRemoved is Undeclared)
GLMBasicExamples>>validatingPresentation (GLMItemAdded is Undeclared)
GLMBasicExamples>>validatingPresentation (GLMUIThemeExtraIcons is
Undeclared)
GLMBasicExamples>>validatingPresentation (GLMUIThemeExtraIcons is
Undeclared)
PPSmalltalkParser>>buildMethod:(pragma is shadowed)
JavaParserTest>>createContext:(context is shadowed)
JavaParserTest>>debug:rule:(context is shadowed)
JavaParserTest>>parse:rule:(context is shadowed)
PPMemoizingIslandTest>>testMemo(context is shadowed)
GLMWizard>>initialize (scriptTransmission is Undeclared)
GLMExamplesBrowser>>exampleIn: (GLMUIThemeExtraIcons is Undeclared)
GLMSmalltalkCodePresentation>>defaultSelectionActions (GLMUIThemeExtraIcons
is Undeclared)
GLMSmalltalkCodePresentation>>defaultSelectionActions (GLMUIThemeExtraIcons
is Undeclared)
Loaded -> PetitParser-JanKurs.247 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> PetitTests-JanKurs.59 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> PetitAnalyzer-DiegoLont.46 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> PetitSmalltalk-JanKurs.71 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> PetitCSV-tg.7 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> PetitJson-DamienCassou.8 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> PetitMSE-AndreHora.21 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> PetitManifestMf-tg.9 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> PetitRegex-JanKurs.29 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> PetitXml-JanKurs.36 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> PetitXPath-EstebanLorenzano.7 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> PetitIslands-JanKurs.9 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> Factorial-Language-lr.6 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Loaded -> Glamour-Announcements-TudorGirba.7 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> Glamour-Helpers-AndreiChis.35 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> Glamour-Core-AndreiChis.277 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> Glamour-Presentations-TudorGirba.157 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> Glamour-Browsers-TudorGirba.104 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> Glamour-Examples-StephanEggermont.284 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Finished atomic load
ROMondrianViewBuilderTest>>testFontSize(node is shadowed)
ROMondrianViewBuilderTest>>testLabelText(node is shadowed)
ROMondrianViewBuilderTest>>testRemoveNode(node is shadowed)
ROTreeMapLayout class>>withWeightBlock:(layout is shadowed)
Loaded -> Roassal-AlexandreBergel.759 ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ --- cache
ROView>>bitmapForElements:(elementsToRender is shadowed)
ROEaselMorphic>>showExamplesOnView: (ROTreeMapBuilderExample is Undeclared)
Loaded -> RoassalMorphic-AlexandreBergel.175 ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ --- cache
ROCountryMapBuilder>>example1 (GETDiagramBuilder is Undeclared)
ROTreeMapBuilderExample>>collectionHierarchyTreeMapHighlightsOn:
(WeakHashSet is Undeclared)
ROTreeMapBuilderExample>>collectionHierarchyTreeMapHighlightsOn:
(WeakKeyIdentityHashTable is Undeclared)
ROTreeMapBuilderExample>>collectionHierarchyTreeMapHighlightsOn:
(WeakKeyIdentityHashTable is Undeclared)
SBSunburstBuilder>>radiusWithDepth:maxDepth:viewSize:(maxDepth is shadowed)
SBSunburstBuilder>>strokeWithDepth:maxDepth:viewSize:arcRadius:(maxDepth is
shadowed)
SimilarityMatrix class>>demo3 (GTUtils is Undeclared)
SimilarityMatrix class>>demo3 (GTUtils is Undeclared)
Loaded -> RoassalExtras-AlexandreBergel.61 ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ --- cache
Loaded -> RoassalAthens-VincentBlondeau.20 ---
http://smalltalkhub.com/mc/ObjectProfile/Roassal/main/ --- cache
Loaded -> Graph-ET-TudorGirba.125 ---
http://smalltalkhub.com/mc/ObjectProfile/GraphET/main/ --- cache
Loaded -> FileSystem-Legacy-JohanBrichau.2 ---
http://smalltalkhub.com/mc/PharoExtras/FileSystemLegacy/main/ ---
/var/lib/jenkins/jobs/CXP Frontend/workspace/package-cache
Loaded -> Magritte-Model-StephanEggermont.451 ---
http://smalltalkhub.com/mc/Magritte/Magritte3/main/ --- cache
Loaded -> Magritte-Morph-SeanDeNigris.86 ---
http://smalltalkhub.com/mc/Magritte/Magritte3/main/ --- cache
Loaded -> Magritte-Pharo3-Model-DiegoLont.3 ---
http://smalltalkhub.com/mc/Magritte/Magritte3/main/ --- cache
Starting atomic load
RubSegmentMorph>>containsPoint: (borderWidth is Undeclared)
RubSegmentMorph>>filledForm (borderColor is Undeclared)
RubSegmentMorph>>filledForm (borderColor is Undeclared)
RubSegmentMorph>>vertices:color:borderWidth:borderColor: (borderWidth is
Undeclared)
RubSegmentMorph>>vertices:color:borderWidth:borderColor: (borderColor is
Undeclared)
GLMBasicExamples>>updateableIndividualPresentations (GLMItemAdded is
Undeclared)
GLMBasicExamples>>updateableIndividualPresentations (GLMItemRemoved is
Undeclared)
GLMBasicExamples>>updateableIndividualPresentations (GLMItemAdded is
Undeclared)
GLMBasicExamples>>updateableIndividualPresentations (GLMItemRemoved is
Undeclared)
GLMBasicExamples>>updateableIndividualPresentations (GLMItemAdded is
Undeclared)
GLMBasicExamples>>updateableIndividualPresentations (GLMItemRemoved is
Undeclared)
GLMParameterizableExamplesBrowser>>compose(browser is shadowed)
GLMMagrittePersonExample class>>sampleData (GLMAnnouncingCollection is
Undeclared)
GLMMorphicValidatorPaneRenderer>>buttonRowFrom:(buttons is shadowed)
GLMMorphicWindowRenderer>>setLabelOf:for:(window is shadowed)
Loaded -> Rubric-AndreiChis.134 ---
http://smalltalkhub.com/mc/AlainPlantec/Rubric/main/ --- cache
Loaded -> Glamour-Rubric-Presentations-AndreiChis.20 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> Glamour-Morphic-Theme-AndreiChis.180 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> Glamour-Morphic-Widgets-AliakseiSyrel.126 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> Glamour-Morphic-Renderer-AndreiChis.269 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> Glamour-Morphic-Pager-AliakseiSyrel.67 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> CollectionExtensions-TudorGirba.40 ---
http://smalltalkhub.com/mc/Moose/CollectionExtensions/main/ ---
http://smalltalkhub.com/mc/Moose/CollectionExtensions/main/
Loaded -> Glamour-Tools-AndreiChis.78 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> Glamour-GraphET-Presentations-TudorGirba.7 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> Glamour-Examples-Extras-AndreiChis.1 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> Glamour-Roassal-Presentations-AndreiChis.24 ---
http://smalltalkhub.com/mc/Moose/Glamour/main/ --- cache
Loaded -> PetitGui-JanKurs.141 ---
http://smalltalkhub.com/mc/Moose/PetitParser/main/ --- cache
Finished atomic load
...finished 1.6-baseline [34m14:03:15 : --> loadPetitParser step done
Phil
Sept. 25, 2014
Re: [Pharo-users] Threaded callbacks with FFI
by phil@highoctane.be
Le 25 sept. 2014 11:32, "Annick Fron" <list(a)afceurope.com> a écrit :
>
> Hi,
>
> I am calling C from pharo with a callback, and it seems the callback is
called in another thread.
> I canât wrap the block in a process, because the return will be wrong,
how can I do ???
>
Can you send us sample code ?
> Annick
>
Sept. 25, 2014
Machine learning in Pharo?
by Martin Dias
Hi all,
I'm playing with weka [1] for classifying data using data mining/machine
learning. I'm really new on this field so I want to give you a concrete
example of my use case to make it clear:
I have elements that can be classified as true or false. In a training
phase, I set up a bayesian network with elements that I manually
classified. Then, I can use such network for predicting the classification
of new elements.
---> my question is:
Do we have a package for replacing weka-in-my-use-case in Pharo? It doesn't
need to be exactly a bayesian network, it could be simpler.
I looked a bit in Moose-Algos and in BioSmalltalk but I think they don't
have what I need.
I would appreciate any help. Cheers.
MartÃn
[1]: http://www.cs.waikato.ac.nz/ml/weka/
Sept. 25, 2014