Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
Swiki 2020 restyling
Last updated at 1:13 am UTC on 23 November 2019
wiki.squeak was invented when the Web was totally different, Flash ruling the planet and Java Applets where still a cool thing. Nowadays HTML pages eastetics is controlled by CSS and their dynamics by Javascript. Java Applets and Flash are gone.

I will do my best to implement a clean and light style for this web site. The administrator will see if to use it or not on a global scale for all pages.

UPDATE [nov-2019] Since I first started writing this notes I realized there is something more important than asthetics to solve in the Swiki: improve the search.

TODO LIST

First level of code transform



In this case we just add a `div` to the code block, to style them.
ATTENTION. Extra spaces are harmful. The transofrmation must be as the code below.
NOTE. The transformation will be made by JS.

(Color blue) rgbTriplet. "=> #(0.0 0.0 1.0) "
(Color blue) rgbTriplet. " #(0.0 0.0 1.0)"
(Color blue) darker rgbTriplet. " #(0.0 0.0 0.92)"
(Color blue) darker darker rgbTriplet. " #(0.0 0.0 0.84)"

(Color blue) rgbTriplet. "=> #(0.0 0.0 1.0) "
(Color blue) rgbTriplet. " #(0.0 0.0 1.0)"
(Color blue) darker rgbTriplet. " #(0.0 0.0 0.92)"
(Color blue) darker darker rgbTriplet. " #(0.0 0.0 0.84)"


Second level of code transform



I would really like the code to be highlighted as in Squeak. Implementing a parser in JS is too much work. I will try to offload the code make-up to an external website. TODO.

(Color blue) rgbTriplet. "=> #(0.0 0.0 1.0) "
(Color blue) rgbTriplet. " #(0.0 0.0 1.0)"
(Color blue) darker rgbTriplet. " #(0.0 0.0 0.92)"
(Color blue) darker darker rgbTriplet. " #(0.0 0.0 0.84)"




Nicola Mingotti