Custom Query (1630 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (61 - 63 of 1630)

Ticket Resolution Summary Owner Reporter
#911 worksforme ,m still mixes up namespaces and renamings Christian Kellermann
Description

Hi,

due to a discussion on IRC I have noticed that the ,m command still does not work as desired. For example, I would expect this to work:

CHICKEN
(c)2008-2011 The Chicken Team
(c)2000-2007 Felix L. Winkelmann
Version 4.7.5 (rev e061038)
linux-unix-gnu-x86-64 [ 64bit manyargs dload ptables ]
compiled 2012-08-31 on devpool08 (Linux)

; loading /home/ckellerm/.csirc ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/parley.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/chicken.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/data-structures.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/extras.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/ports.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/posix.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/srfi-1.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/srfi-13.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/srfi-18.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/stty.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/srfi-69.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/foreign.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/foreigners.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/parley.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/stty.so ...
#;1> (use irc)
; loading /home/ckellerm/chickens/master/lib/chicken/6/irc.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/matchable.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/tcp.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/regex.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/irregex.import.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/irc.so ...
; loading /home/ckellerm/chickens/master/lib/chicken/6/regex.so ...
#;2> ,m irc
; switching current module to `irc'
#;irc:2> default-port ; not exported constant in the irc egg

Error: unbound variable: irc#default-port
#;irc:2> make-irc:connection ; not exported constructor of the connection record

Error: unbound variable: irc#make-irc:connection
#;irc:2> 

#1195 fixed ,q in csi gives an error sjamaan sjamaan
Description

$ csi

CHICKEN
(c) 2008-2015, The CHICKEN Team
(c) 2000-2007, Felix L. Winkelmann
Version 4.9.1 (rev 1ae3dc1)
linux-unix-gnu-x86-64 [ 64bit manyargs dload ptables ]
compiled 2015-06-13 on yves.more-magic.net (Linux)

#;1> (##sys#quit-hook)

Error: bad argument count - received 0 but expected 1: #<procedure (f_10510 result2568)>

        Call history:

        csi.scm:416: ##sys#call-with-values       
        csi.scm:416: eval         
        <syntax>          (##sys#quit-hook)
        <eval>    (##sys#quit-hook)     <--
#;1> 

This seems to have something to do with the set! call on line 1098: it is overriding ##sys#quit-hook with a procedure that has an incompatible signature. However, this is not the most important part: the important part is that this override is not picked up at the call site.

Maybe this'll get fixed with #1131

#1041 fixed -d0 causes different application behavior Mario Domenech Goulart
Description

When compiled with -d0, awful-picman fails to serve some files. It works fine when compiled with -d1.

I'll try to provide a shorter test case, but for now the steps to reproduce are:

  1. Clone the awful-picman repo (https://github.com/mario-goulart/awful-picman)
  1. cd awful-picman
  1. git checkout e810ddc78da725051eb76e9b205358a5c23b7912
  1. chicken-install
  1. mkdir foo
  1. cd foo
  1. awful-picman --init &
  1. curl http://localhost:8080/css/awful-picman.css
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE html
      PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
             "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xml:lang="en" lang="en">
      <head>
        <title>404 - Not Found</title>
      </head>
      <body>
        <h1>404 - Not Found</h1>
        <p>The resource you requested could not be found</p>
      </body>
    </html>
    

If I change the build option from -d0 to -d1 in the .setup file (line 11) and repeat steps from 4 to 8, it works:

$ curl http://localhost:8080/css/awful-picman.css | head
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  1172  100  1172    0     0   368k      0 --:--:-- --:--:-- --:--:--  572k
body {
    padding-top: 80px;
}

.breadcrumb {
    top: 40px;
    position: fixed;
}

.dir {

Tested with:

$ chicken -version
(c) 2008-2013, The Chicken Team
(c) 2000-2007, Felix L. Winkelmann
Version 4.8.0.3 (stability/4.8.0) (rev 091c3d9)
linux-unix-gnu-x86-64 [ 64bit manyargs dload ptables ]
compiled 2013-03-12 on aeryn.xorinia.dim (Darwin)
$ gcc --version
gcc (Debian 4.7.2-5) 4.7.2
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Note: See TracQuery for help on using queries.