Hello Martin,

2018-06-05 15:49 GMT-03:00 Martin Dias <[email protected]>:
> On Tue, Jun 5, 2018 at 3:30 PM Hernán Morales Durand
> <[email protected]> wrote:
>> What are Ombu and Hiedra?
>
> Hello Hernán, this is how I described them:
>
> Ombu:
> "Epicea has a small subproject, named Ombu, which provides simple
> persistence. By default, Ombu uses STON to write the events when they
> are announced in the system."
> ------- from http://smalltalkhub.com/#!/~MartinDias/Epicea
>

Ok, so this could be used by any application to log events? Like a
lite version of Beacon logger?
I am trying to get what would be the typical use case for a "common" app.

> Hiedra:
> "It is a small Pharo project to visually connect items in a
> history-like graph. It uses Athens, and provides support for Morphic
> and Spec."
> ------- from https://github.com/tinchodias/hiedra which is a repo that
> I might close or should say in readme that it's not the official repo
>
> But not sure if I described correctly... in concrete, Hiedra is what's
> used from Epicea Spec UI in a TableModel to draw the links between
> epicea logs in the left panel.

Nice!
I am trying again to make re-use of your work if possible :)
I found a reference in EpLogNodeGraphModel. But could
HiRulerController be used off the Epicea case?
Maybe could you provide a stand-alone example?

About the documentation use case:

Class {
        #name : #HiedraExampleModel,
        #superclass : #ComposableModel,
        #instVars : [
                'treeModel rulerController'
        ],
        #category : #HiedraExample
}

{ #category : #initialization }
HiedraExampleModel >> initializePresenter [

        super initializePresenter.

        rulerController := HiRulerController new.

        rulerController treeModel: treeModel.
        treeModel whenRootsChanged: [
                rulerController updateFromTree ].

]


How do you evaluate that code inside Pharo?

Thank you,

Hernán




>
> Cheers, Martín
>
>>
>> Couldn't find any description in the link.
>>
>> Cheers,
>>
>> Hernán
>>
>

Reply via email to