May I ask: I’m trying to understand how to use RTCalendarBuilder in own, adapted calendar visualization, I read the chapter about builders in the book and started to look at:

exampleMonth

| b |

b := RTCalendarBuilder new.

b dates: (Month current to: Month current next).

b build.

^ b view

Is the month layout finally implemented in RTSVGPath in monthShapePath?

How could one change month visualization and:

-   start weeks on Monday instead of Sunday

-    change color of day figure or background color based on criteria (e.g. weekend …)

Only meant as example. Would I need to change SVGPaths or are there higher level methods?

BR Mike