Pharo-dev
By thread
pharo-dev@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
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
May 2014
- 1104 messages
Re: [Pharo-dev] DBXTalk continued
by Mariano Martinez Peck
Norbert, did you finally fix this or is it still not working?
On Wed, Apr 9, 2014 at 6:07 AM, Norbert Hartl <norbert(a)hartl.name> wrote:
> Small correction. It is an ubuntu 14.04 running in virtualbox.
>
> Norbert
>
> Am 09.04.2014 um 10:45 schrieb Norbert Hartl <norbert(a)hartl.name>:
>
> > There were some success reports using DBXTalk in pharo 3.0. Sadly Iâm
> not that lucky to get it running properly.
> >
> > I loaded the latest version from smalltalkhub. I exchanged the version
> reference for TalkFFI to 1.4 (tested 1.5 as well no difference). I loaded
> bleddingEdge and did afterwards
> >
> > NBPharoOpenDBX installAsCurrent
> >
> > Running the tests I 118 run, 50 passes, 68 errors
> >
> > but the number changes when running the suite more often. There is a
> sporadic error âLost connection during queryâ which occurrs randomly thus
> the changing number in error fails. And the tests are trying to test more
> backends. I can see errors on the console saying that libraries cannot be
> found. I donât know yet if this influences the tests as well.
> >
> > The described scenario is running on an ubuntu 13.04 in virtualbox with
> a fresh 3.0 image. I was trying to install it on my Mac laptop but had too
> much problems convincing homebrew to build opendbx as 32 bit lib. So I
> thought it would be less pain to do it on linux which will be the
> deployment platform anyway.
> >
> > Has anybody seen similar problems. Or can any linux user tell me what
> library versions are used in the success case?
> >
> > thanks,
> >
> > Norbert
> >
> >
>
>
>
--
Mariano
http://marianopeck.wordpress.com
May 7, 2014
Re: [Pharo-dev] Making screenshots programmatically for book
by Damien Cassou
On Fri, May 2, 2014 at 12:07 PM, Laurent Laffont <laurent.laffont(a)gmail.com>
wrote:
> Why not putting Smalltalk code that will take the screenshot and save it
in the documentation ? Makes good functionnal tests too à la Python.
FYI, it is possible to include Smalltalk code in Pillar files that will be
executed when the Pillar file is compiled. This Smalltalk code can write to
a stream in order to generate dynamic content. I use it to generate a part
of Pillar documentation (
https://github.com/DamienCassou/pillar-documentation#42--configuration-para…)
:
[[[language=Smalltalk|eval=true
| writeConfigurationParameter |
writeConfigurationParameter := [: pragma | | methodWithDefaultValue
methodComment |
methodComment := [ :aMethod |
aMethod comment
ifNil: [ 'uncommented' ]
ifNotNil: [ :comment | comment trimBoth: [ :c | c = $" ] ] ].
methodWithDefaultValue := pragma methodClass >> (#default , pragma selector
capitalized) asSymbol.
stream
nextPutAll: '!!!! ' , pragma selector;
lf;
nextPutAll: '@sec:confParam:', pragma selector;
lf;
nextPutAll: (methodComment value: pragma method);
lf;
lf;
nextPutAll: ';Default value';
lf;
nextPutAll: ':';
nextPutAll:
(methodWithDefaultValue comment
ifNotNil: [ methodComment value: methodWithDefaultValue
]
ifNil: [
methodWithDefaultValue isQuick
ifTrue: [ '==', methodWithDefaultValue ast
statements first value formattedCode, '==' ]
ifFalse: [ 'uncommented' ] ]);
lf;
lf
].
((Pragma allNamed: #pillarConfigurationParameter in: PRExportConfiguration)
sort: [ :p1 :p2 | p1 selector < p2 selector ])
do: [ :pragma | writeConfigurationParameter value: pragma ]
]]]
--
Damien Cassou
http://damiencassou.seasidehosting.st
"Success is the ability to go from one failure to another without losing
enthusiasm."
Winston Churchill
May 7, 2014
Re: [Pharo-dev] Improving Pharo By Example
by Damien Cassou
On Tue, May 6, 2014 at 10:49 PM, kilon alios <kilon.alios(a)gmail.com> wrote:
> just for your information emacs pillar mode gives me errors on make && make
> install
in Emacs, you don't have to execute make at all. Just do M-x
package-install and select Pillar. If Pillar is not in the list, you
need to read http://melpa.milkbox.net/#/getting-started
--
Damien Cassou
http://damiencassou.seasidehosting.st
"Success is the ability to go from one failure to another without
losing enthusiasm."
Winston Churchill
May 7, 2014
Re: [Pharo-dev] Improving Pharo By Example
by Damien Cassou
On Wed, May 7, 2014 at 12:48 AM, kilon alios <kilon.alios(a)gmail.com> wrote:
> By the way is your link the pdf or the html version ? Cause I was talking
> about html version.
that's just a CSS thing then. I guess each author has to choose
whether they want justification or not. By default, Pillar uses
bootstrap to format the HTML document.
--
Damien Cassou
http://damiencassou.seasidehosting.st
"Success is the ability to go from one failure to another without
losing enthusiasm."
Winston Churchill
May 7, 2014
Re: [Pharo-dev] gui testing
by Pablo R. Digonzelli
Yes, thanks.i will playing with tests and spec..
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
----- Mensaje original -----
De: "Sven Van Caekenberghe" <sven(a)stfx.eu>
Para: "Pharo Development List" <pharo-dev(a)lists.pharo.org>
Enviados: Martes, 6 de Mayo 2014 17:52:21
Asunto: Re: [Pharo-dev] gui testing
Actually, Spec UIs are quite easy to script since your Spec model has accessors for each element, you can ask for a button and send it #performAction, ask for a text input and send it #text or #text: and so on. It can get quite complex quickly, but it is possible.
On 06 May 2014, at 20:40, Sean P. DeNigris <sean(a)clipperadams.com> wrote:
> Pablo R. Digonzelli wrote
>> is there some framework for testing gui in pharo?.
>
> Check out the SUnit-UITesting package pre-installed in Pharo 3.0
>
>
>
> -----
> Cheers,
> Sean
> --
> View this message in context: http://forum.world.st/gui-testing-tp4757811p4758078.html
> Sent from the Pharo Smalltalk Developers mailing list archive at Nabble.com.
>
May 7, 2014
Re: [Pharo-dev] Improving Pharo By Example
by Yuriy Tymchuk
On 07 May 2014, at 00:48, kilon alios <kilon.alios(a)gmail.com> wrote:
> By the way is your link the pdf or the html version ? Cause I was talking about html version.
>
True. Will put on ToDo list.
> What the .....
> This is wrapped. Weird it displays it unwraped to me. Oh well as long as the final verson from inria is wraped its fine.
>
> ΣÏÎ¹Ï 7 ÎÎ±Ï 2014 1:39 Ï.μ., ο ÏÏήÏÏÎ·Ï "Yuriy Tymchuk" <yuriy.tymchuk(a)me.com> ÎγÏαÏε:
> For me it is like that: https://space.zeo.net/g/d639
>
>
> On 07 May 2014, at 00:32, kilon alios <kilon.alios(a)gmail.com> wrote:
>
>> Wraping text is basically aligning text to the edges of the window. Text remains aligned even when the window gets resized.If you look at PBE pdf you will see its wraped. It definetly makes text look better. Wraped text is also known as justified text.
>>
>> ΣÏÎ¹Ï 7 ÎÎ±Ï 2014 1:24 Ï.μ., ο ÏÏήÏÏÎ·Ï "Yuriy Tymchuk" <yuriy.tymchuk(a)me.com> ÎγÏαÏε:
>>
>> On 06 May 2014, at 23:45, kilon alios <kilon.alios(a)gmail.com> wrote:
>>
>>> ok I made my first commit just now
>>>
>>> I added the Preface chapter, looks ok. Just the first page.
>>>
>>> It asked me to merge my commit, dont know why, I hope I did not mess anything up, I am not very experienced with git so bare with me.
>>
>> Everything is fine. Iâve made some big changes, thatâs why it asked for merge.
>>
>>>
>>> I have 2 questions
>>>
>>> a) The page I am porting from PBE has a footnote, does Pier have a syntax for footnotes ?
>>
>> As far as I know, for now itâs not supported.
>>
>>>
>>> b) Why Pier does not wrap text ?
>>
>> What do you mean by this?
>>
>> Uko
>>
>>>
>>>
>>>
>>>
>>> On Tue, May 6, 2014 at 11:49 PM, kilon alios <kilon.alios(a)gmail.com> wrote:
>>> Thanks for the help Uko
>>>
>>> just for your information emacs pillar mode gives me errors on make && make install
>>>
>>> "In end of data:
>>> package-build.el:1197:1:Warning: the following functions are not known to be
>>>
>>> defined: package-desc-extras, package-desc-name, package-desc-summary,
>>>
>>> package-desc-version
>>>
>>> Wrote /Users/kilon/.emacs.d/.cask/24.3.1/bootstrap/package-build-20140427.357/package-build.elc
>>>
>>> Done (Total of 3 files compiled, 1 skipped)
>>>
>>> Cannot open load file: subst-ksc
>>>
>>> make: *** [pillar.elc] Error 255"
>>>
>>> I opened a pillar file it says its opened on Git-master (LaTex W)
>>>
>>>
>>>
>>> On Tue, May 6, 2014 at 11:30 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com> wrote:
>>>
>>> On 06 May 2014, at 21:26, Damien Cassou <damien.cassou(a)gmail.com> wrote:
>>>
>>> > Yuriy, maybe the script could check if pdflatex is present and if not,
>>> > ignore the pdf generation? The pdf will be generated by the build
>>> > server so we don't really care. Moreover, one of the goals doing
>>> > pillar was to avoid asking everyone to install LaTeX which is quite
>>> > large. What do you think?
>>>
>>> I completely agree. Iâll try to take a look as soon as I have some time.
>>>
>>> Uko
>>>
>>> >
>>> >
>>> > On Sat, May 3, 2014 at 10:53 AM, kilon alios <kilon.alios(a)gmail.com> wrote:
>>> >> Ok Nicolas I followed its advice and it looks like you are correct.Wget get
>>> >> error on make but make install seemed to worked.
>>> >>
>>> >> But
>>> >>
>>> >> I am getting an error connecting to the servers is Inria servers down today
>>> >> ?
>>> >>
>>> >> this is the error
>>> >>
>>> >> kilon-imac:UpdatedPharoByExample kilon$ ./download.sh
>>> >>
>>> >> --2014-05-03 11:49:15--
>>> >> https://ci.inria.fr/pharo-contribution/job/Pier3BookOnPharo20/lastSuccessfu…
>>> >>
>>> >> Resolving ci.inria.fr... 193.51.193.223
>>> >>
>>> >> Connecting to ci.inria.fr|193.51.193.223|:443... connected.
>>> >>
>>> >> HTTP request sent, awaiting response... 404 Not Found
>>> >>
>>> >> 2014-05-03 11:49:16 ERROR 404: Not Found.
>>> >>
>>> >>
>>> >> Yuriy thanks for the advice I have command line tools because I am building
>>> >> Blender the 3d open source app on my iMac. I tried before installing wget
>>> >> with homebrew it failed too.
>>> >>
>>> >>
>>> >>
>>> >> On Fri, May 2, 2014 at 3:25 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com> wrote:
>>> >>>
>>> >>> There is some black magic with wget. I think you have to install command
>>> >>> line tools which get uninstalled on every update. Also if I remember
>>> >>> correctly, I've installed it with home-brew.
>>> >>>
>>> >>> Uko
>>> >>>
>>> >>> On 02 May 2014, at 13:15, kilon alios <kilon.alios(a)gmail.com> wrote:
>>> >>>
>>> >>> Thank you Yuriy
>>> >>>
>>> >>> I have tried to follow the installation instructions before on my iMAC but
>>> >>> I was not successful installing wget. I tried building wget myself and it
>>> >>> failed with errors, I tried using a binary of wget that I found online that
>>> >>> failed too.
>>> >>>
>>> >>> But I will give it another try today when I get home where my macs are and
>>> >>> share with you the exact errors I am experiencing.
>>> >>>
>>> >>>
>>> >>> On Fri, May 2, 2014 at 1:29 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com>
>>> >>> wrote:
>>> >>>>
>>> >>>> Hi.
>>> >>>>
>>> >>>> Here is a repo for updated version of Pharo by example
>>> >>>> https://github.com/SquareBracketAssociates/UpdatedPharoByExample and it
>>> >>>> should be done in Pillar.
>>> >>>>
>>> >>>> I've added you to the team, so feel free to contribute.
>>> >>>>
>>> >>>> Uko
>>> >>>>
>>> >>>>
>>> >>>> On 02 May 2014, at 12:22, kilon alios <kilon.alios(a)gmail.com> wrote:
>>> >>>>
>>> >>>>> How I can help improve Pharo by Example , add chapters and update
>>> >>>>> current ones for Pharo 3 ?
>>> >>>>>
>>> >>>>> What is the process ?
>>> >>>>
>>> >>>>
>>> >>>
>>> >>>
>>> >>
>>> >
>>> >
>>> >
>>> > --
>>> > Damien Cassou
>>> > http://damiencassou.seasidehosting.st
>>> >
>>> > "Success is the ability to go from one failure to another without
>>> > losing enthusiasm."
>>> > Winston Churchill
>>> >
>>>
>>>
>>>
>>>
>>
>
May 6, 2014
Re: [Pharo-dev] Improving Pharo By Example
by kilon alios
By the way is your link the pdf or the html version ? Cause I was talking
about html version.
What the .....
This is wrapped. Weird it displays it unwraped to me. Oh well as long as
the final verson from inria is wraped its fine.
ΣÏÎ¹Ï 7 ÎÎ±Ï 2014 1:39 Ï.μ., ο ÏÏήÏÏÎ·Ï "Yuriy Tymchuk" <yuriy.tymchuk(a)me.com>
ÎγÏαÏε:
> For me it is like that: https://space.zeo.net/g/d639
>
>
> On 07 May 2014, at 00:32, kilon alios <kilon.alios(a)gmail.com> wrote:
>
> Wraping text is basically aligning text to the edges of the window. Text
> remains aligned even when the window gets resized.If you look at PBE pdf
> you will see its wraped. It definetly makes text look better. Wraped text
> is also known as justified text.
> ΣÏÎ¹Ï 7 ÎÎ±Ï 2014 1:24 Ï.μ., ο ÏÏήÏÏÎ·Ï "Yuriy Tymchuk" <yuriy.tymchuk(a)me.com>
> ÎγÏαÏε:
>
>>
>> On 06 May 2014, at 23:45, kilon alios <kilon.alios(a)gmail.com> wrote:
>>
>> ok I made my first commit just now
>>
>> I added the Preface chapter, looks ok. Just the first page.
>>
>> It asked me to merge my commit, dont know why, I hope I did not mess
>> anything up, I am not very experienced with git so bare with me.
>>
>>
>> Everything is fine. Iâve made some big changes, thatâs why it asked for
>> merge.
>>
>>
>> I have 2 questions
>>
>> a) The page I am porting from PBE has a footnote, does Pier have a
>> syntax for footnotes ?
>>
>>
>> As far as I know, for now itâs not supported.
>>
>>
>> b) Why Pier does not wrap text ?
>>
>>
>> What do you mean by this?
>>
>> Uko
>>
>>
>>
>>
>>
>> On Tue, May 6, 2014 at 11:49 PM, kilon alios <kilon.alios(a)gmail.com>wrote:
>>
>>> Thanks for the help Uko
>>>
>>> just for your information emacs pillar mode gives me errors on make &&
>>> make install
>>>
>>> "In end of data:
>>>
>>> package-build.el:1197:1:Warning: the following functions are not known
>>> to be
>>>
>>> defined: package-desc-extras, package-desc-name,
>>> package-desc-summary,
>>>
>>> package-desc-version
>>>
>>> Wrote
>>> /Users/kilon/.emacs.d/.cask/24.3.1/bootstrap/package-build-20140427.357/package-build.elc
>>>
>>> Done (Total of 3 files compiled, 1 skipped)
>>>
>>> Cannot open load file: subst-ksc
>>>
>>> make: *** [pillar.elc] Error 255"
>>>
>>> I opened a pillar file it says its opened on Git-master (LaTex W)
>>>
>>>
>>> On Tue, May 6, 2014 at 11:30 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com>wrote:
>>>
>>>>
>>>> On 06 May 2014, at 21:26, Damien Cassou <damien.cassou(a)gmail.com>
>>>> wrote:
>>>>
>>>> > Yuriy, maybe the script could check if pdflatex is present and if not,
>>>> > ignore the pdf generation? The pdf will be generated by the build
>>>> > server so we don't really care. Moreover, one of the goals doing
>>>> > pillar was to avoid asking everyone to install LaTeX which is quite
>>>> > large. What do you think?
>>>>
>>>> I completely agree. Iâll try to take a look as soon as I have some time.
>>>>
>>>> Uko
>>>>
>>>> >
>>>> >
>>>> > On Sat, May 3, 2014 at 10:53 AM, kilon alios <kilon.alios(a)gmail.com>
>>>> wrote:
>>>> >> Ok Nicolas I followed its advice and it looks like you are
>>>> correct.Wget get
>>>> >> error on make but make install seemed to worked.
>>>> >>
>>>> >> But
>>>> >>
>>>> >> I am getting an error connecting to the servers is Inria servers
>>>> down today
>>>> >> ?
>>>> >>
>>>> >> this is the error
>>>> >>
>>>> >> kilon-imac:UpdatedPharoByExample kilon$ ./download.sh
>>>> >>
>>>> >> --2014-05-03 11:49:15--
>>>> >>
>>>> https://ci.inria.fr/pharo-contribution/job/Pier3BookOnPharo20/lastSuccessfu…
>>>> >>
>>>> >> Resolving ci.inria.fr... 193.51.193.223
>>>> >>
>>>> >> Connecting to ci.inria.fr|193.51.193.223|:443... connected.
>>>> >>
>>>> >> HTTP request sent, awaiting response... 404 Not Found
>>>> >>
>>>> >> 2014-05-03 11:49:16 ERROR 404: Not Found.
>>>> >>
>>>> >>
>>>> >> Yuriy thanks for the advice I have command line tools because I am
>>>> building
>>>> >> Blender the 3d open source app on my iMac. I tried before installing
>>>> wget
>>>> >> with homebrew it failed too.
>>>> >>
>>>> >>
>>>> >>
>>>> >> On Fri, May 2, 2014 at 3:25 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com>
>>>> wrote:
>>>> >>>
>>>> >>> There is some black magic with wget. I think you have to install
>>>> command
>>>> >>> line tools which get uninstalled on every update. Also if I remember
>>>> >>> correctly, I've installed it with home-brew.
>>>> >>>
>>>> >>> Uko
>>>> >>>
>>>> >>> On 02 May 2014, at 13:15, kilon alios <kilon.alios(a)gmail.com>
>>>> wrote:
>>>> >>>
>>>> >>> Thank you Yuriy
>>>> >>>
>>>> >>> I have tried to follow the installation instructions before on my
>>>> iMAC but
>>>> >>> I was not successful installing wget. I tried building wget myself
>>>> and it
>>>> >>> failed with errors, I tried using a binary of wget that I found
>>>> online that
>>>> >>> failed too.
>>>> >>>
>>>> >>> But I will give it another try today when I get home where my macs
>>>> are and
>>>> >>> share with you the exact errors I am experiencing.
>>>> >>>
>>>> >>>
>>>> >>> On Fri, May 2, 2014 at 1:29 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com
>>>> >
>>>> >>> wrote:
>>>> >>>>
>>>> >>>> Hi.
>>>> >>>>
>>>> >>>> Here is a repo for updated version of Pharo by example
>>>> >>>> https://github.com/SquareBracketAssociates/UpdatedPharoByExampleand it
>>>> >>>> should be done in Pillar.
>>>> >>>>
>>>> >>>> I've added you to the team, so feel free to contribute.
>>>> >>>>
>>>> >>>> Uko
>>>> >>>>
>>>> >>>>
>>>> >>>> On 02 May 2014, at 12:22, kilon alios <kilon.alios(a)gmail.com>
>>>> wrote:
>>>> >>>>
>>>> >>>>> How I can help improve Pharo by Example , add chapters and update
>>>> >>>>> current ones for Pharo 3 ?
>>>> >>>>>
>>>> >>>>> What is the process ?
>>>> >>>>
>>>> >>>>
>>>> >>>
>>>> >>>
>>>> >>
>>>> >
>>>> >
>>>> >
>>>> > --
>>>> > Damien Cassou
>>>> > http://damiencassou.seasidehosting.st
>>>> >
>>>> > "Success is the ability to go from one failure to another without
>>>> > losing enthusiasm."
>>>> > Winston Churchill
>>>> >
>>>>
>>>>
>>>>
>>>
>>
>>
>
May 6, 2014
Re: [Pharo-dev] Improving Pharo By Example
by kilon alios
What the .....
This is wrapped. Weird it displays it unwraped to me. Oh well as long as
the final verson from inria is wraped its fine.
ΣÏÎ¹Ï 7 ÎÎ±Ï 2014 1:39 Ï.μ., ο ÏÏήÏÏÎ·Ï "Yuriy Tymchuk" <yuriy.tymchuk(a)me.com>
ÎγÏαÏε:
> For me it is like that: https://space.zeo.net/g/d639
>
>
> On 07 May 2014, at 00:32, kilon alios <kilon.alios(a)gmail.com> wrote:
>
> Wraping text is basically aligning text to the edges of the window. Text
> remains aligned even when the window gets resized.If you look at PBE pdf
> you will see its wraped. It definetly makes text look better. Wraped text
> is also known as justified text.
> ΣÏÎ¹Ï 7 ÎÎ±Ï 2014 1:24 Ï.μ., ο ÏÏήÏÏÎ·Ï "Yuriy Tymchuk" <yuriy.tymchuk(a)me.com>
> ÎγÏαÏε:
>
>>
>> On 06 May 2014, at 23:45, kilon alios <kilon.alios(a)gmail.com> wrote:
>>
>> ok I made my first commit just now
>>
>> I added the Preface chapter, looks ok. Just the first page.
>>
>> It asked me to merge my commit, dont know why, I hope I did not mess
>> anything up, I am not very experienced with git so bare with me.
>>
>>
>> Everything is fine. Iâve made some big changes, thatâs why it asked for
>> merge.
>>
>>
>> I have 2 questions
>>
>> a) The page I am porting from PBE has a footnote, does Pier have a
>> syntax for footnotes ?
>>
>>
>> As far as I know, for now itâs not supported.
>>
>>
>> b) Why Pier does not wrap text ?
>>
>>
>> What do you mean by this?
>>
>> Uko
>>
>>
>>
>>
>>
>> On Tue, May 6, 2014 at 11:49 PM, kilon alios <kilon.alios(a)gmail.com>wrote:
>>
>>> Thanks for the help Uko
>>>
>>> just for your information emacs pillar mode gives me errors on make &&
>>> make install
>>>
>>> "In end of data:
>>>
>>> package-build.el:1197:1:Warning: the following functions are not known
>>> to be
>>>
>>> defined: package-desc-extras, package-desc-name,
>>> package-desc-summary,
>>>
>>> package-desc-version
>>>
>>> Wrote
>>> /Users/kilon/.emacs.d/.cask/24.3.1/bootstrap/package-build-20140427.357/package-build.elc
>>>
>>> Done (Total of 3 files compiled, 1 skipped)
>>>
>>> Cannot open load file: subst-ksc
>>>
>>> make: *** [pillar.elc] Error 255"
>>>
>>> I opened a pillar file it says its opened on Git-master (LaTex W)
>>>
>>>
>>> On Tue, May 6, 2014 at 11:30 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com>wrote:
>>>
>>>>
>>>> On 06 May 2014, at 21:26, Damien Cassou <damien.cassou(a)gmail.com>
>>>> wrote:
>>>>
>>>> > Yuriy, maybe the script could check if pdflatex is present and if not,
>>>> > ignore the pdf generation? The pdf will be generated by the build
>>>> > server so we don't really care. Moreover, one of the goals doing
>>>> > pillar was to avoid asking everyone to install LaTeX which is quite
>>>> > large. What do you think?
>>>>
>>>> I completely agree. Iâll try to take a look as soon as I have some time.
>>>>
>>>> Uko
>>>>
>>>> >
>>>> >
>>>> > On Sat, May 3, 2014 at 10:53 AM, kilon alios <kilon.alios(a)gmail.com>
>>>> wrote:
>>>> >> Ok Nicolas I followed its advice and it looks like you are
>>>> correct.Wget get
>>>> >> error on make but make install seemed to worked.
>>>> >>
>>>> >> But
>>>> >>
>>>> >> I am getting an error connecting to the servers is Inria servers
>>>> down today
>>>> >> ?
>>>> >>
>>>> >> this is the error
>>>> >>
>>>> >> kilon-imac:UpdatedPharoByExample kilon$ ./download.sh
>>>> >>
>>>> >> --2014-05-03 11:49:15--
>>>> >>
>>>> https://ci.inria.fr/pharo-contribution/job/Pier3BookOnPharo20/lastSuccessfu…
>>>> >>
>>>> >> Resolving ci.inria.fr... 193.51.193.223
>>>> >>
>>>> >> Connecting to ci.inria.fr|193.51.193.223|:443... connected.
>>>> >>
>>>> >> HTTP request sent, awaiting response... 404 Not Found
>>>> >>
>>>> >> 2014-05-03 11:49:16 ERROR 404: Not Found.
>>>> >>
>>>> >>
>>>> >> Yuriy thanks for the advice I have command line tools because I am
>>>> building
>>>> >> Blender the 3d open source app on my iMac. I tried before installing
>>>> wget
>>>> >> with homebrew it failed too.
>>>> >>
>>>> >>
>>>> >>
>>>> >> On Fri, May 2, 2014 at 3:25 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com>
>>>> wrote:
>>>> >>>
>>>> >>> There is some black magic with wget. I think you have to install
>>>> command
>>>> >>> line tools which get uninstalled on every update. Also if I remember
>>>> >>> correctly, I've installed it with home-brew.
>>>> >>>
>>>> >>> Uko
>>>> >>>
>>>> >>> On 02 May 2014, at 13:15, kilon alios <kilon.alios(a)gmail.com>
>>>> wrote:
>>>> >>>
>>>> >>> Thank you Yuriy
>>>> >>>
>>>> >>> I have tried to follow the installation instructions before on my
>>>> iMAC but
>>>> >>> I was not successful installing wget. I tried building wget myself
>>>> and it
>>>> >>> failed with errors, I tried using a binary of wget that I found
>>>> online that
>>>> >>> failed too.
>>>> >>>
>>>> >>> But I will give it another try today when I get home where my macs
>>>> are and
>>>> >>> share with you the exact errors I am experiencing.
>>>> >>>
>>>> >>>
>>>> >>> On Fri, May 2, 2014 at 1:29 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com
>>>> >
>>>> >>> wrote:
>>>> >>>>
>>>> >>>> Hi.
>>>> >>>>
>>>> >>>> Here is a repo for updated version of Pharo by example
>>>> >>>> https://github.com/SquareBracketAssociates/UpdatedPharoByExampleand it
>>>> >>>> should be done in Pillar.
>>>> >>>>
>>>> >>>> I've added you to the team, so feel free to contribute.
>>>> >>>>
>>>> >>>> Uko
>>>> >>>>
>>>> >>>>
>>>> >>>> On 02 May 2014, at 12:22, kilon alios <kilon.alios(a)gmail.com>
>>>> wrote:
>>>> >>>>
>>>> >>>>> How I can help improve Pharo by Example , add chapters and update
>>>> >>>>> current ones for Pharo 3 ?
>>>> >>>>>
>>>> >>>>> What is the process ?
>>>> >>>>
>>>> >>>>
>>>> >>>
>>>> >>>
>>>> >>
>>>> >
>>>> >
>>>> >
>>>> > --
>>>> > Damien Cassou
>>>> > http://damiencassou.seasidehosting.st
>>>> >
>>>> > "Success is the ability to go from one failure to another without
>>>> > losing enthusiasm."
>>>> > Winston Churchill
>>>> >
>>>>
>>>>
>>>>
>>>
>>
>>
>
May 6, 2014
Re: [Pharo-dev] Improving Pharo By Example
by Yuriy Tymchuk
For me it is like that: https://space.zeo.net/g/d639
On 07 May 2014, at 00:32, kilon alios <kilon.alios(a)gmail.com> wrote:
> Wraping text is basically aligning text to the edges of the window. Text remains aligned even when the window gets resized.If you look at PBE pdf you will see its wraped. It definetly makes text look better. Wraped text is also known as justified text.
>
> ΣÏÎ¹Ï 7 ÎÎ±Ï 2014 1:24 Ï.μ., ο ÏÏήÏÏÎ·Ï "Yuriy Tymchuk" <yuriy.tymchuk(a)me.com> ÎγÏαÏε:
>
> On 06 May 2014, at 23:45, kilon alios <kilon.alios(a)gmail.com> wrote:
>
>> ok I made my first commit just now
>>
>> I added the Preface chapter, looks ok. Just the first page.
>>
>> It asked me to merge my commit, dont know why, I hope I did not mess anything up, I am not very experienced with git so bare with me.
>
> Everything is fine. Iâve made some big changes, thatâs why it asked for merge.
>
>>
>> I have 2 questions
>>
>> a) The page I am porting from PBE has a footnote, does Pier have a syntax for footnotes ?
>
> As far as I know, for now itâs not supported.
>
>>
>> b) Why Pier does not wrap text ?
>
> What do you mean by this?
>
> Uko
>
>>
>>
>>
>>
>> On Tue, May 6, 2014 at 11:49 PM, kilon alios <kilon.alios(a)gmail.com> wrote:
>> Thanks for the help Uko
>>
>> just for your information emacs pillar mode gives me errors on make && make install
>>
>> "In end of data:
>> package-build.el:1197:1:Warning: the following functions are not known to be
>>
>> defined: package-desc-extras, package-desc-name, package-desc-summary,
>>
>> package-desc-version
>>
>> Wrote /Users/kilon/.emacs.d/.cask/24.3.1/bootstrap/package-build-20140427.357/package-build.elc
>>
>> Done (Total of 3 files compiled, 1 skipped)
>>
>> Cannot open load file: subst-ksc
>>
>> make: *** [pillar.elc] Error 255"
>>
>> I opened a pillar file it says its opened on Git-master (LaTex W)
>>
>>
>>
>> On Tue, May 6, 2014 at 11:30 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com> wrote:
>>
>> On 06 May 2014, at 21:26, Damien Cassou <damien.cassou(a)gmail.com> wrote:
>>
>> > Yuriy, maybe the script could check if pdflatex is present and if not,
>> > ignore the pdf generation? The pdf will be generated by the build
>> > server so we don't really care. Moreover, one of the goals doing
>> > pillar was to avoid asking everyone to install LaTeX which is quite
>> > large. What do you think?
>>
>> I completely agree. Iâll try to take a look as soon as I have some time.
>>
>> Uko
>>
>> >
>> >
>> > On Sat, May 3, 2014 at 10:53 AM, kilon alios <kilon.alios(a)gmail.com> wrote:
>> >> Ok Nicolas I followed its advice and it looks like you are correct.Wget get
>> >> error on make but make install seemed to worked.
>> >>
>> >> But
>> >>
>> >> I am getting an error connecting to the servers is Inria servers down today
>> >> ?
>> >>
>> >> this is the error
>> >>
>> >> kilon-imac:UpdatedPharoByExample kilon$ ./download.sh
>> >>
>> >> --2014-05-03 11:49:15--
>> >> https://ci.inria.fr/pharo-contribution/job/Pier3BookOnPharo20/lastSuccessfu…
>> >>
>> >> Resolving ci.inria.fr... 193.51.193.223
>> >>
>> >> Connecting to ci.inria.fr|193.51.193.223|:443... connected.
>> >>
>> >> HTTP request sent, awaiting response... 404 Not Found
>> >>
>> >> 2014-05-03 11:49:16 ERROR 404: Not Found.
>> >>
>> >>
>> >> Yuriy thanks for the advice I have command line tools because I am building
>> >> Blender the 3d open source app on my iMac. I tried before installing wget
>> >> with homebrew it failed too.
>> >>
>> >>
>> >>
>> >> On Fri, May 2, 2014 at 3:25 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com> wrote:
>> >>>
>> >>> There is some black magic with wget. I think you have to install command
>> >>> line tools which get uninstalled on every update. Also if I remember
>> >>> correctly, I've installed it with home-brew.
>> >>>
>> >>> Uko
>> >>>
>> >>> On 02 May 2014, at 13:15, kilon alios <kilon.alios(a)gmail.com> wrote:
>> >>>
>> >>> Thank you Yuriy
>> >>>
>> >>> I have tried to follow the installation instructions before on my iMAC but
>> >>> I was not successful installing wget. I tried building wget myself and it
>> >>> failed with errors, I tried using a binary of wget that I found online that
>> >>> failed too.
>> >>>
>> >>> But I will give it another try today when I get home where my macs are and
>> >>> share with you the exact errors I am experiencing.
>> >>>
>> >>>
>> >>> On Fri, May 2, 2014 at 1:29 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com>
>> >>> wrote:
>> >>>>
>> >>>> Hi.
>> >>>>
>> >>>> Here is a repo for updated version of Pharo by example
>> >>>> https://github.com/SquareBracketAssociates/UpdatedPharoByExample and it
>> >>>> should be done in Pillar.
>> >>>>
>> >>>> I've added you to the team, so feel free to contribute.
>> >>>>
>> >>>> Uko
>> >>>>
>> >>>>
>> >>>> On 02 May 2014, at 12:22, kilon alios <kilon.alios(a)gmail.com> wrote:
>> >>>>
>> >>>>> How I can help improve Pharo by Example , add chapters and update
>> >>>>> current ones for Pharo 3 ?
>> >>>>>
>> >>>>> What is the process ?
>> >>>>
>> >>>>
>> >>>
>> >>>
>> >>
>> >
>> >
>> >
>> > --
>> > Damien Cassou
>> > http://damiencassou.seasidehosting.st
>> >
>> > "Success is the ability to go from one failure to another without
>> > losing enthusiasm."
>> > Winston Churchill
>> >
>>
>>
>>
>>
>
May 6, 2014
Re: [Pharo-dev] Improving Pharo By Example
by kilon alios
Wraping text is basically aligning text to the edges of the window. Text
remains aligned even when the window gets resized.If you look at PBE pdf
you will see its wraped. It definetly makes text look better. Wraped text
is also known as justified text.
ΣÏÎ¹Ï 7 ÎÎ±Ï 2014 1:24 Ï.μ., ο ÏÏήÏÏÎ·Ï "Yuriy Tymchuk" <yuriy.tymchuk(a)me.com>
ÎγÏαÏε:
>
> On 06 May 2014, at 23:45, kilon alios <kilon.alios(a)gmail.com> wrote:
>
> ok I made my first commit just now
>
> I added the Preface chapter, looks ok. Just the first page.
>
> It asked me to merge my commit, dont know why, I hope I did not mess
> anything up, I am not very experienced with git so bare with me.
>
>
> Everything is fine. Iâve made some big changes, thatâs why it asked for
> merge.
>
>
> I have 2 questions
>
> a) The page I am porting from PBE has a footnote, does Pier have a syntax
> for footnotes ?
>
>
> As far as I know, for now itâs not supported.
>
>
> b) Why Pier does not wrap text ?
>
>
> What do you mean by this?
>
> Uko
>
>
>
>
>
> On Tue, May 6, 2014 at 11:49 PM, kilon alios <kilon.alios(a)gmail.com>wrote:
>
>> Thanks for the help Uko
>>
>> just for your information emacs pillar mode gives me errors on make &&
>> make install
>>
>> "In end of data:
>>
>> package-build.el:1197:1:Warning: the following functions are not known to
>> be
>>
>> defined: package-desc-extras, package-desc-name, package-desc-summary,
>>
>> package-desc-version
>>
>> Wrote
>> /Users/kilon/.emacs.d/.cask/24.3.1/bootstrap/package-build-20140427.357/package-build.elc
>>
>> Done (Total of 3 files compiled, 1 skipped)
>>
>> Cannot open load file: subst-ksc
>>
>> make: *** [pillar.elc] Error 255"
>>
>> I opened a pillar file it says its opened on Git-master (LaTex W)
>>
>>
>> On Tue, May 6, 2014 at 11:30 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com>wrote:
>>
>>>
>>> On 06 May 2014, at 21:26, Damien Cassou <damien.cassou(a)gmail.com> wrote:
>>>
>>> > Yuriy, maybe the script could check if pdflatex is present and if not,
>>> > ignore the pdf generation? The pdf will be generated by the build
>>> > server so we don't really care. Moreover, one of the goals doing
>>> > pillar was to avoid asking everyone to install LaTeX which is quite
>>> > large. What do you think?
>>>
>>> I completely agree. Iâll try to take a look as soon as I have some time.
>>>
>>> Uko
>>>
>>> >
>>> >
>>> > On Sat, May 3, 2014 at 10:53 AM, kilon alios <kilon.alios(a)gmail.com>
>>> wrote:
>>> >> Ok Nicolas I followed its advice and it looks like you are
>>> correct.Wget get
>>> >> error on make but make install seemed to worked.
>>> >>
>>> >> But
>>> >>
>>> >> I am getting an error connecting to the servers is Inria servers down
>>> today
>>> >> ?
>>> >>
>>> >> this is the error
>>> >>
>>> >> kilon-imac:UpdatedPharoByExample kilon$ ./download.sh
>>> >>
>>> >> --2014-05-03 11:49:15--
>>> >>
>>> https://ci.inria.fr/pharo-contribution/job/Pier3BookOnPharo20/lastSuccessfu…
>>> >>
>>> >> Resolving ci.inria.fr... 193.51.193.223
>>> >>
>>> >> Connecting to ci.inria.fr|193.51.193.223|:443... connected.
>>> >>
>>> >> HTTP request sent, awaiting response... 404 Not Found
>>> >>
>>> >> 2014-05-03 11:49:16 ERROR 404: Not Found.
>>> >>
>>> >>
>>> >> Yuriy thanks for the advice I have command line tools because I am
>>> building
>>> >> Blender the 3d open source app on my iMac. I tried before installing
>>> wget
>>> >> with homebrew it failed too.
>>> >>
>>> >>
>>> >>
>>> >> On Fri, May 2, 2014 at 3:25 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com>
>>> wrote:
>>> >>>
>>> >>> There is some black magic with wget. I think you have to install
>>> command
>>> >>> line tools which get uninstalled on every update. Also if I remember
>>> >>> correctly, I've installed it with home-brew.
>>> >>>
>>> >>> Uko
>>> >>>
>>> >>> On 02 May 2014, at 13:15, kilon alios <kilon.alios(a)gmail.com> wrote:
>>> >>>
>>> >>> Thank you Yuriy
>>> >>>
>>> >>> I have tried to follow the installation instructions before on my
>>> iMAC but
>>> >>> I was not successful installing wget. I tried building wget myself
>>> and it
>>> >>> failed with errors, I tried using a binary of wget that I found
>>> online that
>>> >>> failed too.
>>> >>>
>>> >>> But I will give it another try today when I get home where my macs
>>> are and
>>> >>> share with you the exact errors I am experiencing.
>>> >>>
>>> >>>
>>> >>> On Fri, May 2, 2014 at 1:29 PM, Yuriy Tymchuk <yuriy.tymchuk(a)me.com>
>>> >>> wrote:
>>> >>>>
>>> >>>> Hi.
>>> >>>>
>>> >>>> Here is a repo for updated version of Pharo by example
>>> >>>> https://github.com/SquareBracketAssociates/UpdatedPharoByExampleand it
>>> >>>> should be done in Pillar.
>>> >>>>
>>> >>>> I've added you to the team, so feel free to contribute.
>>> >>>>
>>> >>>> Uko
>>> >>>>
>>> >>>>
>>> >>>> On 02 May 2014, at 12:22, kilon alios <kilon.alios(a)gmail.com>
>>> wrote:
>>> >>>>
>>> >>>>> How I can help improve Pharo by Example , add chapters and update
>>> >>>>> current ones for Pharo 3 ?
>>> >>>>>
>>> >>>>> What is the process ?
>>> >>>>
>>> >>>>
>>> >>>
>>> >>>
>>> >>
>>> >
>>> >
>>> >
>>> > --
>>> > Damien Cassou
>>> > http://damiencassou.seasidehosting.st
>>> >
>>> > "Success is the ability to go from one failure to another without
>>> > losing enthusiasm."
>>> > Winston Churchill
>>> >
>>>
>>>
>>>
>>
>
>
May 6, 2014