Wiki
Download
Manual
Eggs
API
Tests
Bugs
show
edit
history
You can edit this page using
wiki syntax
for markup.
Article contents:
== Outdated egg! This is an egg for CHICKEN 4, the unsupported old release. You're almost certainly looking for [[/eggref/5/scss|the CHICKEN 5 version of this egg]], if it exists. If it does not exist, there may be equivalent functionality provided by another egg; have a look at the [[https://wiki.call-cc.org/chicken-projects/egg-index-5.html|egg index]]. Otherwise, please consider porting this egg to the current version of CHICKEN. [[tags: egg]] == scss [[toc:]] === Description An implementation of the s-expression based CSS notation SCSS. It slightly modifies and extends the original implementation of the [[http://celtic.benderweb.net/webit/|WebIt!]] (site seems defunct) framework. === Author [[/users/moritz-heidkamp|Moritz Heidkamp]] === Documentation Only the emitter side is implemented at the moment. ==== Syntax stylesheet ::= (css <import-clause>* <rule>+) import-clause ::= (import <string>) rule ::= (<complex-selector> <declaration>+) complex-selector ::= <single-selector> | <grouping-selector> simple-selector ::= <symbol> | (= class <symbol>) | (= class <simple-selector> <symbol>) | (= pclass <symbol>) | (= pclass <simple-selector> <symbol>) | (= id <symbol>) | (= id <simple-selector> <symbol>) path-selector ::= (<combinator> <single-selector>+) combinator ::= // | + | > single-selector ::= <simple-selector> | <path-selector> grouping-selector ::= (<single-selector>+) declaration ::= (<symbol> <scheme-expression>) | (! (<symbol> <scheme-expression>)) Alternatively the following extended syntax dubbed ''SCSS Plus'' is available: stylesheet ::= (css+ <import-clause>* <rule>+) import-clause ::= (import <string>) rule ::= (<complex-selector> [<declaration> | <nested-rule>]+) nested-rule ::= (<path-selector> [<declaration> | <nested-rule>]+) complex-selector ::= <single-selector> | <grouping-selector> simple-selector ::= <symbol> | (= class <symbol>) | (= class <simple-selector> <symbol>) | (= pclass <symbol>) | (= pclass <simple-selector> <symbol>) | (= id <symbol>) | (= id <simple-selector> <symbol>) path-selector ::= (<combinator> <single-selector>+) combinator ::= // | + | > | & single-selector ::= <simple-selector> | <path-selector> grouping-selector ::= (<single-selector>+) declaration ::= (<symbol> <scheme-expression>) | (! (<symbol> <scheme-expression>)) The two differences are that you can nest rules which results in much more compact stylesheets as well as use the {{&}} combinator which will concatenate nested selectors. ==== Emitter <procedure>(write-css scss [port])</procedure> Write the CSS translation of {{scss}} (which is a list following the syntax described under [[#syntax|Syntax]]) to {{port}}. <procedure>(css->scss scss)</procedure> Like {{write-css}} but returns the CSS translation as a string instead of writing it to a port. ==== scss2css {{scss2css}} is a program that is installed with this egg. It takes a file name argument which should contain an SCSS document. If no file name is given it will read from standard input instead. The document will be {{read}} and {{eval}}ed. The result of that is passed to {{scss->css}} which in turn writes the resulting CSS to standard output. When the {{-n}} option is passed the document won't be {{eval}}ed. === Examples ==== Basic <enscript language="scheme"> (write-css '(css (p (text-align center)))) </enscript> => <enscript language="css"> p { text-align: center } </enscript> ==== More Complex <enscript language="scheme"> (write-css '(css (((= class p note) (+ p p)) (font-style italic) (background-color "#ccc")) (|#content| (width 100em)))) </enscript> => <enscript language="css"> p.note, p + p { font-style: italic; background-color: #ccc } #content { width: 100em } </enscript> ==== SCSS Plus <enscript language="scheme"> (write-css '(css+ ((= id main) (display block) ((// p) (font-size 1em) ((& .error) (! (color red))))))) </enscript> => <enscript language="css"> #main { display: block } #main p { font-size: 1em } #main p.error { color: red !important } </enscript> === History ; 4 : First version to be compatible with CHICKEN 5. ; 3 : Failed attempt at CHICKEN 5 compatibiltity. ; 2 : Failed attempt at CHICKEN 5 compatibiltity. ; 1 : Failed attempt at CHICKEN 5 compatibiltity. ; 0.5.0 : Re-implemented from scratch, fixing various corner cases. The undocumented {{scss-plus}} module that was installed by previous versions does not exist anymore. {{scss->css}} returns a string instead of writing to a port. Instead, {{write-css}} can be used to write to a port now. === License Copyright (c) 2010-2018, Moritz Heidkamp All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Description of your changes:
I would like to authenticate
Authentication
Username:
Password:
Spam control
What do you get when you subtract 13 from 3?