at the end of the fifth page
"
The widgets have now been defined and configured, but their placement in
the UI has not yet been specified. This is the role of the class side method
defaultSpec .
"
CustomerSatisfaction class >> defaultSpec
^ SpecLayout composed
newRow: [ :row |
row add: #buttonHapp
I had already defined & accepted defaultSpec , as per page 6.
Attached is my CustomerSatisfaction.st file : I assume Pharo will suck
it back in !
On 21/03/18 17:55, Alistair Grant wrote:
On 21 March 2018 at 03:12, dragoncity wrote:
Hello, I'm just getting into Pharo, and am trying to
do
Hello
I have a question regarding UML modelling of Pharo extension method. If I
have a class ClassA in package PackageA, and I have a package PackageB which
contains extension method of ClassA (so there is a new method in ClassA with
protocol "*PackageB"), how exactly to model this situation in UM
On 21 March 2018 at 08:37, dragoncity wrote:
> I had already defined & accepted defaultSpec , as per page 6.
>
> Attached is my CustomerSatisfaction.st file : I assume Pharo will suck it
> back in !
You've defined this as an instance method, not a class method.
If what I've said doesn't make s
I'll fix smalltalk CI code for Pharo 7 to use the new class. That will
solve the problems in travis builds.
@Andrew, about the directories issue, can you provide me a full stack trace
and even better a way to reproduce it?
@Cédrik, kind of the same, if you provide a proper issue (or even a test
c
On Wed, Mar 21, 2018 at 9:51 AM, Guillermo Polito wrote:
> I'll fix smalltalk CI code for Pharo 7 to use the new class. That will
> solve the problems in travis builds.
>
Aaand, fix in here, awaiting for integration:
https://github.com/hpi-swa/smalltalkCI/pull/361
>
> @Andrew, about the direc
Hi all,
Don't forget also that this are the low level bricks used in Pharo. Utterly
required by the bootstrap and the minimal image, thus keeping dependencies
small and controlled is a big +.
Magic and automatic stuff can be added on top. Nothing prevents to add a
little layer on top as a separat
You've defined this as an instance method, not a class method
Thanks for that observation! On closer read indeed I had missed the
'class' word in the defaultSpec text on page 6, it
took a little fiddling to get a Class method defined.
Its 'almost' working :-)
When I run the
|ui | ... etc..
Hi Steffen,
2017-06-06 7:44 GMT-03:00 Steffen Märcker :
> I assumed so. I used file-outs only to get something working quickly. =)
> Properly published code will follow as soon as I am more familiar with code
> management in Pharo.
I'm coming back to this. What was the choosen tool? I tried
FileO
dragoncity-2 wrote
> When I run the
>
> |ui | ... etc from a Playground, I don't get a working UI Form, but
> I get a correctly defined static image layout of the form under 'Morph' IN
> the Playground.
>
> I expected the CustomerSatisfaction UI form to appear as a independent
> item on the
I think I used FileOut30 and encodings were part of the adhoc fixing before
loading into Pharo (using iconv certainly, but I don't recall)
On 21 March 2018 at 14:29, Esteban A. Maringolo
wrote:
> Hi Steffen,
>
> 2017-06-06 7:44 GMT-03:00 Steffen Märcker :
> > I assumed so. I used file-outs only
BTW, Sean (or anyone else), if you still find this docker useful, should
I add you as contributor in dockerhub and write access in git so you
could make builds for 70 (I do not use 70, so not knowing when is it the
good point to make new build). Or is there some ETA to official one
built from P
Have you left in that ui close statement that was in your first post? I tried
you code and it worked fine - but if you issue a close you'll have nothing
to see!
--
Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html
On Fri, Jun 2, 2017, 17:05 Steffen Märcker wrote:
> Dear all,
>
> thanks for the many suggestions. I didn't had time to test all
> import/export ways yet. But for now, I can report on two:
>
> 1) NGFileOuter
> Unfortunately It raised several MNUs in my image. I'll investigate them
> later.
>
> 2)
Hi esteban
It was to manage namespace (from memory).
Stef
On Wed, Mar 21, 2018 at 2:29 PM, Esteban A. Maringolo
wrote:
> Hi Steffen,
>
> 2017-06-06 7:44 GMT-03:00 Steffen Märcker :
>> I assumed so. I used file-outs only to get something working quickly. =)
>> Properly published code will follow
I would package extension in the package doing them and use a
stereotype to capture this
because UML does not have this concept.
Stef
On Wed, Mar 21, 2018 at 9:00 AM, Jan Blizničenko wrote:
> Hello
>
> I have a question regarding UML modelling of Pharo extension method. If I
> have a class Clas
> On 21 Mar 2018, at 10:07 , Alistair Grant wrote:
>
> But to help track down your issue, maybe temporarily replace the code with:
>
> errorCode >
>errorCode ifNotNil: [self halt: errorCode asString].
>^ #badDirectoryPath
>
>
> That should allow you to track down the issue a bit m
Hi Esteban,
after I got Amber running separately, I set up Tide according to
https://github.com/tide-framework/tide readme.md
Everything went fine so far, but after the page loaded, Helios did not
pop. Blank page.
So I looked into the page source and, suspiciously, at line 18 I
found
***
hi,
no idea :)
as I said this is more a matter for Amber list than Pharo.
but amber maintainer (Herbert) hangs here so he will probably reply if he sees
this :P
Esteban
> On 21 Mar 2018, at 21:42, in_pharo_us...@nym.hush.com wrote:
>
> Hi Esteban,
>
> after I got Amber running separately,
Thanks for the news!
If you can provide a little example of WAVParser it will help.
On Tue, Mar 20, 2018 at 4:50 PM, Mariano Badoglio
wrote:
> Perfect! I have loaded the Merwan WAVParser project, that uses the
> OpenAL library and it worked fine.
>
> Best regards!
> Mariano
>
>
> El 19/03/18 a
In newer version of Amber the loading code changed significantly, as
promises are used (best way to migrate old code is to actually created
new project using `amber init` and only move the needed pieces (src/*.st
files, .amd.json files, lists of packages in deploy.js / testing.js /
devel.js / G
> On 20 Mar 2018, at 23:01 , Guillermo Polito wrote:
>
> @Andrew, about the directories issue, can you provide me a full stack trace
> and even better a way to reproduce it?
I sent a lengthy message in this thread explaining the circumstances. Is that
enough? If not I can try opening a file
Hi Esteban, hi Herbert,
so, formally, it is a Tide integration issue now, IMHO.
As I understand it now:
Tide's setup procedure generates a file system out of a Monticello
archive
and puts Tide related extensions for Amber in it. Then the user is
directed to that fs's root
to install Amber. (T
On March 21, 2018 11:18:42 PM GMT+01:00, in_pharo_us...@nym.hush.com wrote:
>Hi Esteban, hi Herbert,
>
>so, formally, it is a Tide integration issue now, IMHO.
>
>As I understand it now:
>
>Tide's setup procedure generates a file system out of a Monticello
>archive
>and puts Tide related extens
Thank you -- of course ! I had that "ui close" in my code !!! , I'd expected
the
form to take control until I exited the form itself and had not considered
the code would 'fall straight through' to the 'ui close'
The example form now displays on Pharo's World and is active as expected.
>From m
25 matches
Mail list logo