Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am wondering, which type and version of JavaScript/CSS engines is Gnome 3 aka Gnome Shell using?

Is there any information about current version, etc?

share|improve this question
4  
Nice reputation 6_6 – Shaz Apr 26 '11 at 21:49

3 Answers

up vote 15 down vote accepted

For JavaScipt the engine GJS (based on SpiderMonkey). For theming, it is used a sort of superset of CSS2. You might be interested in reading the documentation of GtkCssProvider and the migration information.

On the other hand, there are some CSS3-like operations available, such as radial and linear gradients. You might want to take a look the article Styling GTK+ with CSS to get some ideas. The article was written by the developer who wrote GtkCssProvider.

share|improve this answer
Nice to see you around :) – gforcada Sep 22 '11 at 11:55
2  
Note that GNOME Shell uses mx to draw widgets. See more on live.gnome.org/GnomeShell/Development – gforcada Sep 22 '11 at 11:57

The JavaScript engine is GJS. The CSS is, I believe, internal - in GTK 3, all theming is done using CSS.

share|improve this answer
Thanks for the answer. I know that CSS is used for theming. However there is no information if it is CSS2/CSS3 or CSS10. – hsz Apr 27 '11 at 8:30
It is a superset of CCs2 – fpmurphy May 17 '11 at 3:08

GtkCssProvider allows this:

@define-color bg_color #f9a039;

which is not valid CSS3, meaning GtkCssProvider does not provide a "subset" of CSS3. It also lacks quite a few properties that are in the CSS 2.1 and 3 specs, meaning it's not a "superset" either.

GtkCssProvider is simply "based upon" CSS3 (not 2).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.