Re: [Chicken-users] Wiki design

2013-12-18 Thread Daniel Beecham
I love it!

Perhaps .definition-record could have a slightly larger padding to make the
titles more prominent? 0.5 ems instead of 0.3?
Perhaps the title could also be indented just a smidge; .definition {
padding: 0.5em 0.5em 0.5em 1em }; ?

I'm just spawning ideas here, it looks good either way to me. Great work.


On Wed, Dec 18, 2013 at 10:57 AM, Christian Kellermann
ck...@pestilenz.orgwrote:

 * Arthur Maciel arthurmac...@gmail.com [131218 08:43]:
  Dear chickeneers,
 
  I messed up a bit with the wiki design and below is a link to a sketch.
 
  https://dl.dropboxusercontent.com/u/621606/chicken-wiki.tar.gz
 
  The packages should be extracted and new_wiki.html should be opened in
 a
  browser. The file old_wiki.html goes for comparison with the actual
  design.
 
  This involved a good deal of hackery, but my focus was on presentation -
 I
  could fix it if intended to be used. I changed the css, but also the html
  file. So if someone likes it, we would need to change the wiki in order
 to
  produce a little bit different html from its default syntax.
 
  Beyond the design itself I could also redefine numbered lists so now
  sublists start counting from their parents number (ex.: 1, 2, 3, 3.1,
 3.2,
  4, 5, etc.).
 
  The changes were based on the wiki page of an egg I intend to release
 soon.
  I'm not sure if the changes apply to all wiki pages.
 
  I hope you like it. If you don't, please let me know how I could do a
  better job! Thanks in advance!

 I have to say, I like it! Thanks for the suggestion! What do the
 others think?

 In the end I would like to get rid of the reference to googlefonts
 and the googleusercontent stuff. If it is by the chicken project,
 it should be served off the browser. All these newfangled CDN tricks
 these days...


 Kind regards,

 Christian

 --
 In the world, there is nothing more submissive and weak than
 water. Yet for attacking that which is hard and strong, nothing can
 surpass it. --- Lao Tzu

 ___
 Chicken-users mailing list
 Chicken-users@nongnu.org
 https://lists.nongnu.org/mailman/listinfo/chicken-users

___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


[Chicken-users] Error: unbound variable: read-line

2013-12-13 Thread Daniel Beecham
$ cat read.ss
(let ((s (read-line))) (print s))
$ csc read.ss
$ ./read

Error: unbound variable: read-line

Call history:

read.ss:1: read-line--

$ csi read.ss
[...]
; loading read.ss ...
input
input
#;1 C-d

$ chicken --version
[...]
Version 4.8.0.3 (Stability/4.8.0) (rev 091c3d9)
linux-unix-gru-x86-64 [ 64bit manyargs dload ptables ]
compiled 2013-03-13 on aeryn.xorinia.dim (Darwin)
[...]

Any ideas why this might be happening?
___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users


Re: [Chicken-users] Error: unbound variable: read-line

2013-12-13 Thread Daniel Beecham
Ah, sorry.
I searched the mighty Google which indexed this mailing list (I got results
concerning readline, not read-line), but I didn't search the mailing list
specifically.

Thank you for your help.

(Resent to include mailing list. I'm not an experienced mailing list user.)


On Fri, Dec 13, 2013 at 6:44 PM, Kon Lovett konlov...@gmail.com wrote:

 (Wasn't the exact same issue asked  answered Dec 5th?)

 On Dec 13, 2013, at 9:35 AM, Daniel Beecham dan...@lunix.se wrote:

  $ cat read.ss

 (use extras)

  (let ((s (read-line))) (print s))
  $ csc read.ss
  $ ./read
 
  Error: unbound variable: read-line
 
  Call history:
 
  read.ss:1: read-line--
 
  $ csi read.ss
  [...]
  ; loading read.ss ...
  input
  input
  #;1 C-d
 
  $ chicken --version
  [...]
  Version 4.8.0.3 (Stability/4.8.0) (rev 091c3d9)
  linux-unix-gru-x86-64 [ 64bit manyargs dload ptables ]
  compiled 2013-03-13 on aeryn.xorinia.dim (Darwin)
  [...]
 
  Any ideas why this might be happening?

 The interpreter has a number of units/modules exposed by default. Must be
 explicit with the compiler.

 
  ___
  Chicken-users mailing list
  Chicken-users@nongnu.org
  https://lists.nongnu.org/mailman/listinfo/chicken-users


___
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users