Hi!
When I compile a bunch of .pillar files, I have the following:
~/Dropbox/Workspace/2014-PillarTest/book-skeleton> ./compile.sh
Generating files for all chapters
At character 913: , expected
What should I do?
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi!
I think I have found a bug in the GTDebugger.
When I inspect a RTView, I have the graphical representation of the view. However, when I cmd-o an RTView, within the GTDebugger, I have the normal inspector. The ‘View’ tab is not selected. I prepared a video to illustrate this:
https://dl.dropboxusercontent.com/u/31543901/TMP/BugInTheDebugger.mov
Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Hi all,
I would like parse a file of that structure:
-=-=-=-
1. Lorem ipsum dolor sit amet, <important
text> Cras sit amet elit euismod,
sodales nulla ac.
1. Lorem ipsum dolor <important text>, consectetur
adipiscing elit. Cras sit amet elit euismod,
2. Lorem ipsum dolor sit amet, consectetur
adipiscing elit. <important text 3> Cras sit
amet elit euismod.
2. Lorem ipsum dolor….
…
-=-=-=-=-
What is the best strategy to implement a parser using PetitParser? I need to identify each list, their nesting, and the <important text>.
I have tried to detect (i) first line of each list (#blank asParser, #number asParser plus, …), (ii) then the other lines and in the “==> [:node |…]” block to compute the indent. But I have failed and I do consider the <important text>.
Thank you for any idea!
Cheers,
Juraj
I tried to load GToolkit in Pharo 3 today and I got this:
* Error: Name not found: CoreExtras*
Loading like this:
Gofer new
url: 'http://www.smalltalkhub.com/mc/Moose/GToolkit/main';
configuration;
load.
#ConfigurationOfGToolkit asClass loadDevelopment.
Ooops, used to work a couple days ago...
Phil
Very nice initiative!
Doru
On Tue, Sep 9, 2014 at 9:43 PM, Alexandre Bergel <alexandre.bergel(a)me.com>
wrote:
> This is excellent!
>
> Just to let you know, if you need to do a demo of Roassal, you have here
> the video a an easy to do demo: https://vimeo.com/94724841
>
> Cheers,
> Alexandre
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
> On Sep 9, 2014, at 12:27 PM, Offray Vladimir Luna Cárdenas <
> offray(a)riseup.net> wrote:
>
> Hi,
>
> This is just a short mail to let you know whats happening here on the
> Pharo/Roassal front. We will be starting our workshops on what we I call
> Visual Data Narratives. Details (in Spanish) here:
>
> http://hackbo.co/hackboweb/eventos/evento/338
>
> Cheers,
>
> Offray
>
> ps: I will show the Moose outliner, in its alpha stage. Hopefully the
> threads where I ask how to solve the problems will move a little more and
> we will be able to integrate this to the workshops memories building.
>
>
>
>
--
www.tudorgirba.com
"Every thing has its own flow"
When one is in Monticello (Pharo 3.0) and asks for "View Past Comments" on
a package, there is a #mnu on GTPlayground class>>openLabel:
Not only there but the FileList (aka FileBrowser) has that "Workspace with
contents" command which is broken in the same way.
There is for sure an interesting equivalent in GTPlayground. Why not name
it as the Workspace thing?
What is asked:
edit: aText label: labelString accept: anAction
"Open an editor on the given string/text"
^(Smalltalk tools workspace openLabel: labelString)
acceptContents: aText;
acceptAction: anAction;
yourself.
What GTPlayground implements:
openContents:
openContents:label:
We can deal with openLabel: and acceptContents but an acceptAction
equivalent is not to be found.
Also, after looking around (see changeset in attachment), it is hard to do
the acceptContents: as we get a self new openOn: page which isn't returning
anything I can work with to chain acceptContents: to.
What to do there?
Also, there is a super annoying thing in the GTPlayground, namely the
disappearance of the top right menu, with all the interesting options that
are in there and that I do use all the time (like open/save, previous
contents, ...). What's the point of a Playground if I can't save my plays?
I think I am missing something here.
I now have to go back to the old Workspace for the default.
It may be good to have a way to have the playground as a specific menu
entry.
I've started using the ZnWorkspace and as it extends the Workspace, its
features aren't picked up in GTPlayground of course.
Now, it may be great to include those Pastebin style things into
GTPlayground so that we can all play together from little urls from Twitter
posts.
All the best,
Phil
I defined a new property:
mode
<MSEProperty: #mode type: #String>
<MSEComment: 'The mode (input/output) for this parameter'>
^ mode
I reinitialized the meta model
I set the property for an entity
but the property is not exported in "model asMSEString" :-(
any suggestion?
nicolas